Unable to Upload Updated APK to Google Play Store

后端 未结 7 2122
孤独总比滥情好
孤独总比滥情好 2021-01-11 10:25

The same issue was posted here but the answer given didn\'t work for me. I\'ve uploaded to the store before and now I can\'t update my app to include some bug fixes. Wheneve

7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-11 10:40

    It seems you now have to explicitly set android:debuggable=false. (At least with the Android Studio 0.3.6.)

    Debuggable is a property of the application tag. (Not the manifest tag.)

    If you've added this attribute properly and Google Play still rejects your APK, try modifying build.gradle to set your own key for debug

    signingConfigs {
        debug {
            storeFile file("my-keystore-file.jks")
            storePassword "my-password"
            keyAlias "my-alias"
            keyPassword "my-password"
        }
    }
    

提交回复
热议问题