我的应用程序因为添加了播放服务库而停止安装

时间:2017-05-10 18:03:38

标签: android google-play-services

我的应用效果很好。我决定添加播放服务(仅用于位置,因为这可以为用户提供更好的体验)。所以我添加了播放服务。 (花了太多时间建造:D)。之后,当我尝试安装我的应用程序时,它说它无法安装(没有别的,只写“无法安装应用程序”)。我是否必须将播放服务升级到上一版本?或者我做错了什么? (我明天肯定会回答,而不是之前。抱歉给您带来不便)

编辑: 这是我的build.gradle:app模块文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "21.1.0"

    defaultConfig {
        applicationId "fr.zwedge.becomerich"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:23.4.0'
    compile 'com.android.support:preference-v7:23.4.0'
    compile 'com.android.support:recyclerview-v7:23.4.0'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.android.support:cardview-v7:23.4.0'
    compile 'com.google.android.gms:play-services-gcm:10.2.1'
    compile 'com.google.android.gms:play-services-location:10.2.1'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.orhanobut:dialogplus:1.11@aar'
    compile 'com.rarepebble:colorpicker:1.7.0'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.pavelsikun:material-seekbar-preference:2.2.0'
    compile 'me.angrybyte.picker:picker:1.2.0'
    compile 'com.mikepenz:materialdrawer:5.3.0'
//  compile 'com.github.jrvansuita:PickImage:2.1.2'
    compile 'com.github.nisrulz:screenshott:1.1.3'
    compile 'com.jraska:falcon:1.0.4'
    compile 'jp.wasabeef:takt:1.0.4'
}

编辑2: 这是每次我尝试安装应用程序时出现的内容(翻译:“应用程序未安装”  Screenshot

2 个答案:

答案 0 :(得分:0)

不要使用编译'com.google.android.gms:play-services:9.6.1'

使用compile 'com.google.android.gms:play-services-location:9.6.1'

用于定位/替换您的版本,如10:0:1

答案 1 :(得分:0)

确定。所以我刚刚开始了一个新项目,复制了我的src目录和我的build.gradle ...并且它有效。我不知道为什么。如果有人有回应可以解释这个问题,那可能会很棒。但感谢所有^^

编辑:得到了解决方案!我的手机不支持Play服务(让我想知道为什么Play商店和其他PlayServicesBilling / Ads应用程序可以使用它:/)