2015年11月1日日曜日

AndroidでDropboxを使う

AndroidでDropboxを使う

AndroidアプリからDropboxへのアクセスするための準備を調べたので備忘録としてまとめて置きます。

1.以下にアクセスして画面右側にあるenter image description hereをクリックする。

https://www.dropbox.com/developers/apps

2.アプリを登録するとApp keyとApp secretが取得できるのメモっておく。

enter image description here

3.以下にアクセスしAndroid版のDropbox SDKをダウンロードし、解凍する。
https://www.dropbox.com/developers-v1/core/sdks/android

4.解凍したフォルダのlibフォルダの下にある以下の2つを自分のアプリの\app\libsフォルダにコピーする。
 dropbox-android-sdk-1.6.3.jar
 json_simple-1.1.jar

5.コピーしたライブラリをプロジェクトに読み込ませるために
Android Studioのenter image description hereボタンを押す。

6.MainActivity.javaに以下を記述し、先ほど取得したkeyとsecretを入れる。

 private static final String APP_KEY = "app key";
 private static final String APP_SECRET = "app secret";

7.AndroidManifest.xmlに以下を追加する。

<activity
  android:name="com.dropbox.client2.android.AuthActivity"
  android:launchMode="singleTask" >
  <intent-filter>
    <data android:scheme="db-APP_KEY" />
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</activity>

[参考]
http://www.theappguruz.com/blog/10-steps-integrate-dropbox-api-android
http://qiita.com/mizofumi0411/items/fed5c43fc36c5a945a7b
https://www.dropbox.com/developers-v1/datastore/sdks/android

0 件のコメント :

コメントを投稿