GoogleモバイルサービスのGoogle Playサービス(クラウドストレージ)を使用するアンドロイドアプリを構築しています。 私はちょうどMicrosoft紺碧のライブラリを使用するときに私は問題に直面することはありませんが、私は次のエラーを私に与えるGoogleの再生ライブラリを追加します。NoClassDefFoundError:com.google.gson.GsonBuilderマイクロソフトの紺碧でgoogle playサービスを使用する場合
エラー
FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: com.google.gson.GsonBuilder
at com.microsoft.windowsazure.mobileservices.MobileServiceClient.createMobileServiceGsonBuilder(MobileServiceClient.java:192)
at com.microsoft.windowsazure.mobileservices.MobileServiceClient.<init>(MobileServiceClient.java:179)
at com.microsoft.windowsazure.mobileservices.MobileServiceClient.<init>(MobileServiceClient.java:158)
at com.example.jino.navigationplacepicker.ReviewPage.onCreate(ReviewPage.java:27)
これが私のGradle
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.google.code.gson:gson:2.4'
compile files('libs/azuresdk-android-2.0.3/mobileservices/guava-17.0.jar')
compile files('libs/azuresdk-android-2.0.3/mobileservices/mobileservices-2.0.3.jar')
compile files('libs/azuresdk-android-2.0.3/mobileservices/mobileservices-2.0.3-javadoc.jar')
compile files('libs/azuresdk-android-2.0.3/mobileservices/mobileservices-2.0.3-sources.jar')
compile 'com.google.android.gms:play-services:8.4.0'
}
からライブラリ依存構造では、あなたが私を助けることができます願っています。前もって感謝します。
ありがとうございます@ティム!私は問題に取り組むことができました。私は必要なジャーだけを選んだ。 –