Merge pull request #1906 from mintsoft/debug-build

Allow installation of the debug build
This commit is contained in:
Imran
2024-10-20 12:29:37 -04:00
committed by GitHub
4 changed files with 13 additions and 1 deletions

View File

@@ -81,6 +81,10 @@ android {
release { release {
signingConfig signingConfigs.release signingConfig signingConfigs.release
} }
debug {
applicationIdSuffix = ".debug"
versionNameSuffix = "-debug"
}
} }
} }

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="label">Obtainium Debug</string>
</resources>

View File

@@ -2,7 +2,7 @@
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="dev.imranr.obtainium"> package="dev.imranr.obtainium">
<application <application
android:label="Obtainium" android:label="@string/label"
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="label">Obtainium</string>
</resources>