Android Apk安装无法正常工作

时间:2018-01-06 13:57:02

标签: android build installation apk

我现在开发的应用有问题。

当我构建已签名的APK(使用V1& V2)时,我只能在自己的手机上安装它(Android 5.0.1)。其他人(拥有不同(更高)Android版本的朋友)无法安装该应用程序。

我发现可能有助于找到解决方案的要点:

  • 我重命名了应用
  • 当其他人想要安装应用时,它表示不需要特殊权限,但实际上,该应用需要一些。当我安装应用程序时,它会正确询问。
  • 2000x2000 png icon

更多信息:

  

minSdkVersion 21,targetSdkVersion 25

依赖关系:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile group: 'commons-io', name: 'commons-io', version: '2.5'
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.google.android.gms:play-services:11.0.4'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.code.gson:gson:2.8.2'
    compile 'com.wang.avi:library:2.1.3'
    compile 'com.android.support:support-v4:25.3.1'
    testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

谢谢!

0 个答案:

没有答案