blob: 89c17992e033b73ae4283258e09b42831dcd5a82 [file] [log] [blame]
plugins {
id 'com.android.application'
}
android {
namespace 'com.example.migrateresvalues.app'
compileSdk = 33
defaultConfig {
applicationId = 'com.example.migrateresvalues.app'
minSdk = 24
targetSdk = 33
versionCode = 1
versionName = '1.0'
resValue("string", "res_name", "SomeResValue")
}
buildTypes {
debug {
resValue("string", "res_name", "SomeResValue")
}
release {
resValue("string", "res_name", "SomeResValue")
}
}
}