安装时出现“未安装应用” apk

时间:2019-08-29 10:56:57

标签: android apk

我已经为我的应用程序生成了一个已签名的APK

这是build.gradle

android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.example.test_drivers"
            minSdkVersion 19
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    }

我已经检查了V1和V2。该应用程序在版本8中完美安装,但在版本9中没有完美安装。

任何想法如何解决这个问题?

0 个答案:

没有答案