将compileSdkVersion更改为android-P后,Apk无法正常工作

时间:2018-06-15 11:07:28

标签: android

真的很奇怪,我创建了一个新的空项目,然后我将文件设置compileSdkVersion从27.1 Oreo更改为android-P,然后我将应用程序重构为AndroidX,如果我运行它的工作正常它在模拟器上或通过adb连接到我的设备。但是,当我尝试构建apk并将其安装在手机上时,会出现问题 - ' App未安装'。但在我更改compileSdkVersion apk之前安装得很好。

清单:

debian/control

Gradle:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ru.scapegoats.myapplicationmmmm">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".main"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        </application>

</manifest>

1 个答案:

答案 0 :(得分:1)

您无法在较旧的操作系统上安装compileSdkVersion 'android-P'预览版的应用。

由于Android P的测试版已经发布,因此将compileSdkVersion更改为28:

compileSdkVersion 28

注意:确保您已连接互联网,以便下载正确的SDK更新。