我现在开发的应用有问题。
当我构建已签名的APK(使用V1& V2)时,我只能在自己的手机上安装它(Android 5.0.1)。其他人(拥有不同(更高)Android版本的朋友)无法安装该应用程序。
我发现可能有助于找到解决方案的要点:
更多信息:
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'
谢谢!