I want to change value of app_name string and other string for paid version of our app,to change app name and widget name for paid version of our app. But it not works for me. Help me please,how i can correct modify string resource value of @string/app_name and other string for paid version of our app. Thanks everybody very much for any help.
flavorDimensions 'orthodoxCalendar'
productFlavors {
orthodoxcalendarfree {
dimension 'orthodoxCalendar'
applicationId "oleksandr.kotyuk.orthodoxcalendarfree"
versionCode defaultConfig.versionCode
versionName defaultConfig.versionName
}
orthodoxCalendarpaid {
dimension 'orthodoxCalendar'
applicationId "oleksandr.kotyuk.orthodoxcalendarpaid"
versionCode defaultConfig.versionCode
versionName defaultConfig.versionName
//we want write in app_name string value of app_name_paid string. All strings defined in strings.xml file in values folder. The same we do for other string
resValue "string", "app_name", "@string/app_name_paid"
resValue "string", "app_name_fz", "@string/app_name_paid_fz"
}
}
}