最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Amazon Appstore upload failed due to minSDK (ANDROID) Gradle error - Stack Overflow

programmeradmin0浏览0评论

I have previously uploaded my app with config in (Build.Gradle) like

android {
    namespace '----------------------------------'
    compileSdk 35

    defaultConfig {
        applicationId '------------------------------'
        minSdk 26
        targetSdk 35
        versionCode 2
        versionName "1.2"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

Now I have optimized the code and realize that the minSDK can be reduce to 23

android {
    namespace '----------------------------------'
    compileSdk 35

    defaultConfig {
        applicationId '------------------------------'
        minSdk 23
        targetSdk 35
        versionCode 3
        versionName "1.2.1"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

now i got error for from Amazon Appstore

i try to reduce the version code which is obesely not worked as expected and now i don't know what to do next..

NOTE: I am uploading new version (Not a new app)

Why i want to do this :- To increase the scoop of devices my app can run on...

I am new in publishing the apps for first time, can someone guide me.. i can't find this error anywhere else..

发布评论

评论列表(0)

  1. 暂无评论