【发布时间】:2019-11-20 20:25:08
【问题描述】:
我在我的应用程序中使用谷歌地图,在我的手机 (android 8) 上它工作正常,但在我的旧平板电脑 (5.02) 上我收到了这个错误消息。 我想这与依赖关系有关,但我无法弄清楚是什么。这是我的毕业典礼:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//maps
implementation name: 'maps-sdk-3.0.0-beta', ext: 'aar'
//needed for maps
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.gms:play-services-basement:17.0.0'
implementation 'com.google.android.gms:play-services-base:17.0.0'
implementation 'com.google.android.gms:play-services-gcm:17.0.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'
//tablayout
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.multidex:multidex:2.0.1'
//retrofit
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
}
有什么想法吗?
【问题讨论】:
标签: android google-maps