这是我的 build.gradle (Module: app) 文件的片段:
defaultConfig {
applicationId "com.shikhar_mainalee.iownallbitcoin"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
如果您的计算机上安装了最新版本的 Android,该build.gradle
文件似乎会自动targetSdkVersion
为您设置为最新版本。目前,Android 版本 28 (Android P) 是 Android OS 的最新版本。目前,Google Play 商店要求您的 Android 版本至少为 Android 版本 26 (Android O)。当 Android 29 版(可能是 Android Q)出来时,会发生什么?build.gradle
插件是否会自动更新targetSdkVersion
最小值增加到 27(当版本 31 从现在开始发布时,我是否需要重新访问此应用程序)?插件会build.gradle
自动更改targetSdkVersion
为版本 29,还是我需要自己手动重新配置?