降级Google Play服务后调整依赖关系

时间:2016-06-25 17:04:51

标签: java android google-maps

我应该编译什么而不是:

source $HOME/.bashrc
downgraded Google Play Services from 9.0.83 to 8.1.18 manuallycompile '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文件配置正确。)

enter image description here

我正在尝试使用以下build.gradle进行清理:

build.gradle (Module:app)

编译工作。但是,当我转到我的路线追踪活动时,我的应用要求我更新Google Play服务。我也看不到地图了。

enter image description here

我降级后更新了Google Play服务并登陆here

1 个答案:

答案 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"
}