android 应用程序上传至载玻片-未设置有效目标SdkVersion错误

jchrr9hc  于 2023-01-07  发布在  Android
关注(0)|答案(3)|浏览(128)

我正在尝试将我的第一个应用程序上传到Slideme,但遇到以下错误:您的应用程序必须设置有效的targetSdkVersion。要解决此问题,您需要编辑AndroidManifest.xml文件并再次上载.apk文件。
因此,我将targetSdkVersion添加到清单文件中,并将其从Gradle文件中删除,但仍然没有成功。我还尝试了一次,但仍在Gradle文件中设置targetSdkVersion,但也没有成功。我尝试了相当长的时间,但总是得到相同的错误。我多次重置android studio,并尝试关闭和重新打开slideme上传网页,但没有任何变化。
下面是我的manifest.xml文件:

<?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.cards.doublerun">

        <uses-sdk android:targetSdkVersion="29" />

        <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=".GameActivity"/>
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

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

这是我的Gradle文件:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.cards.doublerun"
        minSdkVersion 15
        //targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

我看过这个问题:Why does AndroidManifest.xml have invalid targetSdkVersion?和这个问题:有效的sdkVersion为slideme.org,但在这两个提供的建议是不是为我工作。任何帮助将不胜感激。

weylhg0b

weylhg0b1#

您是否尝试过在Gradle文件中添加更新的SDK版本:

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.stackoverflowpratice"
        minSdkVersion 23
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
 buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

这会有用的。

tkclm6bt

tkclm6bt2#

将其粘贴到清单文件中

<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="29"/>
wfauudbj

wfauudbj3#

如果有人还需要解决这个问题,我在这里回复。如果你正在使用Unity,在其他设置中将目标API级别设置为一个特定的API,而不是自动enter image description here

相关问题