mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-22 14:09:29 +02:00
Merge pull request #1906 from mintsoft/debug-build
Allow installation of the debug build
This commit is contained in:
@@ -81,6 +81,10 @@ android {
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
debug {
|
||||
applicationIdSuffix = ".debug"
|
||||
versionNameSuffix = "-debug"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
4
android/app/src/debug/res/values/string.xml
Normal file
4
android/app/src/debug/res/values/string.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="label">Obtainium Debug</string>
|
||||
</resources>
|
@@ -2,7 +2,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="dev.imranr.obtainium">
|
||||
<application
|
||||
android:label="Obtainium"
|
||||
android:label="@string/label"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
|
4
android/app/src/main/res/values/string.xml
Normal file
4
android/app/src/main/res/values/string.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="label">Obtainium</string>
|
||||
</resources>
|
Reference in New Issue
Block a user