mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 11:33:06 +00:00
Different app label for debug builds (#545)
* Different app label for debug builds * Remove underscores from app labels
This commit is contained in:
parent
e697ed72db
commit
d2d0ed65d6
7
app/src/debug/res/values/strings.xml
Normal file
7
app/src/debug/res/values/strings.xml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<string name="app_label" translatable="false">Moonlight (Debug)</string>
|
||||||
|
<string name="app_label_root" translatable="false">Moonlight (Root Debug)</string>
|
||||||
|
|
||||||
|
</resources>
|
@ -1,5 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
|
<string name="app_label" translatable="false">Moonlight</string>
|
||||||
|
<string name="app_label_root" translatable="false">Moonlight (Root)</string>
|
||||||
|
|
||||||
<!-- Shortcut strings -->
|
<!-- Shortcut strings -->
|
||||||
<string name="scut_deleted_pc">PC deleted</string>
|
<string name="scut_deleted_pc">PC deleted</string>
|
||||||
<string name="scut_not_paired">PC not paired</string>
|
<string name="scut_not_paired">PC not paired</string>
|
||||||
|
@ -3,5 +3,5 @@
|
|||||||
|
|
||||||
<!-- Non-root application name -->
|
<!-- Non-root application name -->
|
||||||
<!-- FIXME: We should set extractNativeLibs=false but this breaks installation on the Fire TV 3 -->
|
<!-- FIXME: We should set extractNativeLibs=false but this breaks installation on the Fire TV 3 -->
|
||||||
<application android:label="Moonlight" />
|
<application android:label="@string/app_label" />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -5,6 +5,6 @@
|
|||||||
<!-- Ensure native libraries are always extracted for root builds,
|
<!-- Ensure native libraries are always extracted for root builds,
|
||||||
since we must invoke the evdev_reader binary ourselves -->
|
since we must invoke the evdev_reader binary ourselves -->
|
||||||
<application
|
<application
|
||||||
android:label="Moonlight (Root)"
|
android:label="@string/app_label_root"
|
||||||
android:extractNativeLibs="true" />
|
android:extractNativeLibs="true" />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user