Добавить новые ароматы в проект Android - PullRequest
0 голосов
/ 14 января 2019

Я никогда не использовал productFlavors в файле gradle. Я искал и нашел пример в github

https://github.com/ptyagicodecamp/android-recipes/tree/develop/Flavors

Вот структура проекта

enter image description here

Я хочу добавить новый аромат самостоятельно. Я пытался добавить вот так

enter image description here

Вот код файла gradle

android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
    applicationId "org.pcc.flavors"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

flavorDimensions "version"

productFlavors {
    freeVersion {
        //select the dimension of flavor
        dimension "version"
        //configure applicationId for app published to Play store
        applicationId "com.pcc.flavors.free"
        //Configure this flavor specific app name published in Play Store
        resValue "string", "flavored_app_name", "Free Great App"
    }
    paidVersion {
        dimension "version"
        applicationId "com.pcc.flavors.paid"
        resValue "string", "flavored_app_name", "Paid Great App"
    }
    betaflovers {
        dimension "version"
        applicationId "com.pcc.flavors.betaflovers"
        resValue "string", "flavored_app_name", "Paid Great App"
    }
  }
 }

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso- 
 core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:26.0.0-beta2'
testImplementation 'junit:junit:4.12'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
}

Как вы можете видеть, я пытаюсь добавить бета-фловеры в свой проект, но это происходит неправильно, потому что бета-фловеры и версии freeVersion не совпадают. Как я могу добавить новые ароматы, такие как freeVersion и paidVersions? Спасибо

...