bin^2

bin^2

discord server
twitter

Android Tips 2023-03-28

#Android #Dev #Tip
#构建 #配置 #优化

统一配置所有 module 的 android compileSdk minSdk

Usage#

  1. 修改 settings.gradle 文件
plugins {
    id("com.android.settings").version("7.4.2")
}
android {
    compileSdk 33
    minSdk 23
}
  1. 移除所有 module 的 compileSdk 和 minSdk 配置

Ref#

https://developer.android.com/reference/tools/gradle-api/7.4/com/android/build/api/dsl/SettingsExtension

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.