Set debuggable flag in Gradle debug build

So the debug build of the app can be debugged.
This commit is contained in:
Robert Müller 2024-08-24 13:44:30 +02:00
parent e46d2375ba
commit 24356bd029

View file

@ -43,6 +43,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
minifyEnabled false
shrinkResources false
}