Enable BuildConfig through buildFeatures, not gradle.properties.
This commit is contained in:
parent
df83611b55
commit
f7efe28bb7
4 changed files with 6 additions and 1 deletions
|
@ -163,6 +163,7 @@ android {
|
|||
}
|
||||
|
||||
buildFeatures {
|
||||
buildConfig = true
|
||||
viewBinding = true
|
||||
compose = true
|
||||
}
|
||||
|
|
|
@ -46,6 +46,7 @@ android {
|
|||
}
|
||||
|
||||
buildFeatures {
|
||||
buildConfig = true
|
||||
compose = true
|
||||
}
|
||||
|
||||
|
|
|
@ -5,6 +5,10 @@ plugins {
|
|||
|
||||
android {
|
||||
namespace = "org.signal.donations"
|
||||
|
||||
buildFeatures {
|
||||
buildConfig = true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
org.gradle.jvmargs=-Xmx6g -Xms256m -XX:MaxMetaspaceSize=1g
|
||||
android.useAndroidX=true
|
||||
android.experimental.androidTest.numManagedDeviceShards=4
|
||||
android.defaults.buildfeatures.buildconfig=true
|
||||
android.nonTransitiveRClass=false
|
||||
android.nonFinalResIds=false
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue