gradle 变量配置传递,类似于 maven的 property属性

xiaoxiao2021-02-27  390

在builde.gradle里 defaultConfig { minSdkVersion 14 targetSdkVersion Integer.parseInt(System.properties['compileSdkVersion']) versionCode Integer.parseInt(System.properties['versionCode']) versionName System.properties['versionName'] // Enabling multidex support. multiDexEnabled true } 在整个项目的gradle.properties systemProp.versionName=5.1 systemProp.versionCode=21 systemProp.compileSdkVersion=19  systemProp.buildToolsVersion=20.0.0  systemProp.androidGradlePluginVersion=1.0.0 解决gradle 打包方法数过多的问题 :https://developer.android.com/tools/building/multidex.html
转载请注明原文地址: https://www.6miu.com/read-3157.html

最新回复(0)