我有一个在Play商店中的应用程序,每个人都可以安装到Android的第6版。但是android版本7的用户无法安装。
Can not install app - error code -504
我的build.gradle(模块:app)是:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "net.ayurvedese.ayurvedese"
minSdkVersion 19
targetSdkVersion 19
versionCode 7
versionName "1.5"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile files('libs/ksoap2-android-assembly-3.5.0-jar-with-dependencies.jar')
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:design:25.0.0'
compile 'com.github.PhilJay:MPAndroidChart:v2.1.6'
compile 'com.google.android.gms:play-services:10.2.0'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:support-v4:25.0.0'
testCompile 'junit:junit:4.12'
}
有人能告诉我可能会发生什么吗?