Android Studio
中指定了productFlavors
如下:
1 2 3 4 5 6 7 8 9 10 11 |
productFlavors { /*日常*/ Daily { } /*线上*/ Online { } /*预发*/ Advance { } } |
整个的build.gradle
里面的内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.my.myapplication" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } productFlavors { /*日常*/ Daily { } /*线上*/ Online { } /*预发*/ Advance { } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.2.1' } |
但是这个时候我们点击Android Studio
的调试按钮的时候,不知道究竟是使用哪个Flavors
来编译,比如在Android Studio 1.5
的时候,是按照从上到下的顺序处理的,默认是使用排在第一个的Daily
,而到了Android Studio 2.1 Preview 5
版本,却变成了按照字母排序,结果变成了默认编译Advance
。
网上搜索了一下,找到如下解决方法:
选择"Build Variant
",然后在出现的窗口中选择其中一个选项作为默认的编译,运行选项即可。