2016-07-21 3 views
2

私はGoogleのプレイサービスを更新しましたが、今やたくさんのクラスが欠落しているようです:Google Playサービスを8.4.0から9.2.1に更新すると、com.google.android.gms.location.placesに関連する一連のコードが壊れます

私がリリースを見てきました
com.google.android.gms.location.places.AutocompleteFilter 
com.google.android.gms.location.places.AutocompletePrediction 
com.google.android.gms.location.places.AutocompletePredictionBuffer 
com.google.android.gms.location.places.Places 
com.google.android.gms.location.places.Place 
com.google.android.gms.location.places.PlaceBuffer 
com.google.android.gms.location.places.PlaceLikelihood 
com.google.android.gms.location.places.PlaceLikelihoodBuffer 

https://developers.google.com/android/guides/releasesとAPIリファレンスをノートhttps://developers.google.com/android/reference/com/google/android/gms/location/places/package-summaryが、これらのクラスが交換されているという兆候はありません。

どうしたらいいのですか?

おかげで、

Rizの

編集:ここで私は数日前に同じような問題に遭遇してきたのGradleビルドファイル

apply plugin: 'com.android.application' 
apply plugin: 'io.fabric' 

repositories { 
    mavenCentral() 
    maven { url "https://oss.sonatype.org/content/repositories/snapshots" } 
    maven { url 'https://maven.fabric.io/public' } 
} 

configurations { 
    compile.exclude group: 'com.google.guava' 
    compile.exclude module: 'guava:19.0-rc2' 

    all*.exclude group: 'commons-logging', module: 'commons-logging' 

    androidTestCompile.exclude group: 'com.google.code.findbugs' 
    androidTestCompile.exclude module: 'jsr305:2.0.1' 
} 

dependencies { 
    //project 
    compile project(':MyGeneralLibrary') 

    compile fileTree(dir: '../libs', include: '*.jar') 

    compile 'com.google.android.gms:play-services-maps:9.2.1' 
    compile 'com.google.android.gms:play-services-location:9.2.1' 
    compile 'com.google.android.gms:play-services-auth:9.2.1' 
    compile 'com.google.android.gms:play-services-plus:9.2.1' 

    compile 'com.android.support:support-annotations:24.1.0' 
    compile 'org.twitter4j:twitter4j-core:4.0.2' 
    compile 'com.facebook.android:facebook-android-sdk:4.10.0' 
    compile 'com.github.scribejava:scribejava-apis:2.2.2' 
    compile('com.twitter.sdk.android:twitter:[email protected]') { 
     transitive = true; 
    } 
    compile 'com.google.code.findbugs:jsr305:1.3.9' 
    compile 'com.firebase:firebase-client-android:2.5.2' 

    //unit tests 
    testCompile project(':TestUtils') 
    testCompile 'org.hamcrest:hamcrest-library:1.3' 
    testCompile 'junit:junit:4.12' 
    testCompile 'org.mockito:mockito-core:1.10.19' 
    testCompile 'com.android.support:support-annotations:24.1.0' 

    //instrumentation tests 
    androidTestCompile 'org.hamcrest:hamcrest-library:1.3' 
    androidTestCompile 'junit:junit:4.12' 
    androidTestCompile 'com.android.support.test:rules:0.4.1' 
    androidTestCompile 'com.android.support:support-annotations:24.1.0' 
    androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1' 
    androidTestCompile 'com.google.code.findbugs:jsr305:1.3.9' 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.1') { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    } 
    androidTestCompile('com.android.support.test:runner:0.4.1') { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    } 
} 

apply plugin: 'com.google.gms.google-services' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.3" 

    defaultConfig { 
     minSdkVersion 15 
     targetSdkVersion 23 
     versionCode 1 
     versionName "0.01" 
     applicationId "com.chdryra.android.reviewer" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 

sourceSets { 
    main { 
     res.srcDirs = ['src/main/res', 'src/androidTest/res'] 
    } 
} 

packagingOptions { 
    exclude 'META-INF/LICENSE.txt' 
    exclude 'META-INF/LICENSE-FIREBASE.txt' 
    exclude 'META-INF/NOTICE.txt' 
} 

dexOptions { 
    javaMaxHeapSize "2g" 
} 
} 

答えて

0

です。他のライブラリがGoogle Playサービスを使用している場合は、そのバージョンを確認する必要があります。インポートが他のライブラリのインポートよりも高い/低い場合は、アプリケーションが中断されます。上位のGoogle Playサービスを実装している他のライブラリのアップデートがあるかどうかを確認します。

競合するライブラリを更新することで解決しました。

+0

おかげ場所パッケージを分離!他のライブラリをチェックして古いバージョンのプレイサービスで返信するかどうかを確認するにはどうすればよいですか? – chdryra

+0

グーグルで試してみてください。最も良い方法は、スタックトレース を正しく読み込み、エラーの原因となっているライブラリを絞り込むことです。使用するライブラリによって異なります。それらのほとんどはgithub上にあります。もしあなたが上位バージョンへのアップデートがあればそれをチェックすることができますし、グラブルビルドファイルをチェックすることもできます。 – parohy

+0

これはコンパイル時エラーです。スタックトレースを使用しません。 – chdryra

1

それでも上記の問題を持っている場合、2次の行を含めるためにGradleのビルドファイルを変更してください:

compile 'com.google.android.gms:play-services-places:9.2.1' 
compile 'com.google.android.gms:play-services-location:9.2.1' 

グーグル...個々のAPIに迅速な応答を

+0

上記の問題は修正されましたが、新しい問題が修正されました:http://stackoverflow.com/posts/38464876/revisions – chdryra