调试Android应用程序:安装apk给出“app not installed”

时间:2018-05-30 18:46:06

标签: android firebase kotlin

我在我的项目中使用androidx包。今天,我在设备上安装应用程序时突然遇到问题。

我使用以下内容:

classpath 'com.android.tools.build:gradle:3.2.0-alpha16'

在app gradle中:

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.0-alpha1'
implementation 'com.google.android.material:material:1.0.0-alpha1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-alpha1'
implementation 'com.google.code.gson:gson:2.8.2'
testImplementation 'junit:junit:4.12'
implementation 'com.google.android.gms:play-services-ads:15.0.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha3', {
    exclude group: 'com.android.support', module: 'support-annotations'
}
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.0.0'
implementation 'com.firebase:firebase-jobdispatcher:0.8.5'
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

implementation 'androidx.core:core-ktx:1.0.0-alpha1'
implementation 'com.google.firebase:firebase-storage:16.0.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'androidx.multidex:multidex-instrumentation:2.0.0'

现在,当我在设备上创建构建并运行时,它的工作完全正常!

当我从Build bundle / apk创建构建并在移动设备中复制该APK并安装它时,它会给出错误“ App not installed ”。 注意:

  • 设备上没有任何已安装的应用程序。
  • 设备上没有多个用户案例。
  • 这个错误不会出现在签名的apk上,但它也在 调试apk 上。
  • 这个项目是基于风味的,每个风味的包名都不同。

0 个答案:

没有答案