我应该编译什么而不是:
source $HOME/.bashrc
我downgraded Google Play Services from 9.0.83 to 8.1.18 manually时compile 'com.google.android.gms:play-services:9.0.2'
compile 'com.google.android.gms:play-services-maps:9.0.2'
compile 'com.google.android.gms:play-services-location:9.0.2'
compile 'com.google.android.gms:play-services-base:9.0.2'
compile 'com.android.support:multidex:1.0.0'
dependencies
中的?我的目的是避免这个日志错误:
06-24 18:50:24.488 7128-7759 / com.noureddine_ouertani.www.wocelli50 E / DynamiteModule:无法加载模块描述符类:未找到 类 “com.google.android.gms.dynamite.descriptors.com.google.android.gms.googlecertificates.ModuleDescriptor” 在路径上:DexPathList [[zip文件 “/data/app/com.noureddine_ouertani.www.wocelli50-2/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /系统/ lib64下]]
@Er。 Arjun saini:我收到了这个错误。 (我的Manifest文件配置正确。)
我正在尝试使用以下build.gradle进行清理:
build.gradle (Module:app)
编译工作。但是,当我转到我的路线追踪活动时,我的应用要求我更新Google Play服务。我也看不到地图了。
我降级后更新了Google Play服务并登陆here。
答案 0 :(得分:1)
通过此更新代码尝试我的答案
首先使用
编译构建compile' com.android.support:multidex:1.0.1'
编译com.google.android.gms:播放服务:+' //删除其他人而不是
在 AndroidManifest.xml 中添加以下行 android:name
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:name="android.support.multidex.MultiDexApplication"
>
在 build.gradle 中也添加
dexOptions {
//incremental = true;
preDexLibraries = false
javaMaxHeapSize "4g"
}