내 앱에 두 가지 빌드 변형이 있습니다. 하나는 표준 앱 버전이고 두 번째는 맞춤 설정 앱입니다. 나는 새로운 기능을 구현해야하지만, 단지 사용자 정의를 위해, 그래서 그 새로운 기능은 표준 버전에없는 사용할 수 있습니다 사용자 정의에 대한 다른 빌드 변형에 다른 코드
productFlavors {
customConfig {
minSdkVersion 14
applicationId 'es.com.custom'
targetSdkVersion 22
versionCode 3
versionName '3.0.0'
}
standard {
minSdkVersion 14
applicationId 'es.com.standard'
targetSdkVersion 22
versionCode 3
versionName '3.0.0'
}
. 내가 뭘해야하는지 잘 모르겠다.
if (getPackageName()==customConfig)
// do the custom things
else
//do the standard things