我使用Android studio开发我的应用程序,并将其作为调试安装在我的模拟器和智能手机上。它工作,但如果我想手动安装发布apk,它不起作用。我收到错误:app未安装。 如果我取消调试版本,然后安装发行版apk,它就可以了。
我使用Instant Run。这是我的傻瓜:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "it.mypackage.test"
minSdkVersion 16
targetSdkVersion 27
versionCode 6
versionName "0.0.6"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
dexOptions {
//incremental true
javaMaxHeapSize "4g"
}
/*lintOptions {
checkReleaseBuilds false
abortOnError false
}*/
}
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
implementation 'com.heinrichreimersoftware:material-intro:1.6.2' //entry
implementation 'com.melnykov:floatingactionbutton:1.3.0' //fab DEPRECATED
implementation 'com.github.florent37:arclayout:1.0.2' //arc layout
implementation 'com.flaviofaria:kenburnsview:1.0.7' //animated imageview
implementation 'me.grantland:autofittextview:0.2.1' //fit textview
implementation 'com.github.QuadFlask:colorpicker:0.0.13' //color picker
implementation 'com.github.zagum:Android-SwitchIcon:1.3.5' //switch icon
implementation 'com.github.GrenderG:Toasty:1.2.5' //custom toast
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.4.1' //zoom image view
}
答案 0 :(得分:0)
可能原因
1)手机可能没有磁盘空间。
2)安装后的应用可能会使手机无法使用。
3)如果没有这样做,需要为所有用户卸载应用程序;在大多数Android API 27中都可以观察到它,即Oreo 8.0设备或虚拟机。