好吧,当我的应用程序立即运行时运行的问题,应用程序在我的智能手机上运行完美。但是,我无法通过APK安装相同的应用程序。
使用Android Studio 3.2.0.0
注意:生成的APK没有错误,但同时可以安装:应用程序未安装。
这是我的build.grad(app):
apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-P'
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.xxx.xxxxxx"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
buildTypes {
release {
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
api 'com.android.support:appcompat-v7:28.0.0-alpha1'
api 'com.android.support.constraint:constraint-layout:1.1.0'
api 'com.android.support:design:28.0.0'
api 'com.android.support:support-v4:28.0.0-alpha1'
api 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
api 'com.google.android.material:material:1.0.0-alpha1'
api 'com.android.support:design:28.0.0-alpha1'
testImplementation 'junit:junit:4.12'
}
}