我正在尝试将我的第一个应用程序上传到Slideme,并且遇到以下错误: 您的应用程序必须具有有效的targetSdkVersion集。要解决此问题,您需要编辑AndroidManifest.xml文件,然后再次上传.apk文件。
因此,我将targetSdkVersion添加到清单文件中,并将其从gradle文件中删除,仍然没有运气。我还再次尝试了一下,仍然在gradle文件中设置了targetSdkVersion,但也没有运气。我玩了很长时间,但是我仍然遇到同样的错误。我已经多次重置了android studio,并且尝试关闭并重新打开幻灯片上传网页,而未做任何更改。
这是我的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? 还有这个问题:Valid sdkVersion for slideme.org 但两者中提供的建议对我都无效。任何帮助将不胜感激。
答案 0 :(得分:0)
您是否尝试过在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'
}
这将起作用。
答案 1 :(得分:0)
将其粘贴到您的清单文件中
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="29"/>
答案 2 :(得分:0)
如果还有人需要解决这个问题,我在这里回复。 如果您使用 Unity,请将其他设置中的目标 API 级别设置为一个特定的 API 而不是自动 enter image description here