Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app_pojavlauncher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ android {
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.customDebug
resValue "string", "app_name", "Amethyst (Debug)"
resValue "string", "app_short_name", "Amethyst (Debug)"
resValue 'string', 'application_package', 'org.angelauramc.amethyst.debug'
resValue 'string', 'storageProviderAuthorities', 'org.angelauramc.amethyst.scoped.gamefolder.debug'
resValue 'string', 'shareProviderAuthority', 'org.angelauramc.amethyst.scoped.controlfolder.debug'
Expand All @@ -154,6 +156,8 @@ android {
// defaultConfig already set
// multiDexEnabled = true
// debuggable = true
resValue "string", "app_name", "Amethyst"
resValue "string", "app_short_name", "Amethyst (Debug)"
resValue 'string', 'storageProviderAuthorities', 'org.angelauramc.amethyst.scoped.gamefolder'
resValue 'string', 'application_package', 'org.angelauramc.amethyst'
}
Expand Down
4 changes: 2 additions & 2 deletions app_pojavlauncher/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<!-- App name part -->
<string name="app_name">Amethyst</string>
<string name="app_name" translatable="false">Amethyst</string>

<!-- Action bar part -->

Expand Down Expand Up @@ -456,7 +456,7 @@
<string name="mg_renderer_summary_computeShaderext">May help with shaderpack glitches. Disable if not needed, can cause crashes.</string>
<string name="mg_renderer_title_multidrawCompute">Use Compute Multidraw Emulation</string>
<string name="mg_renderer_summary_multidrawCompute">Uses compute shaders for multidraw emulation</string>
<string name="app_short_name">Amethyst</string>
<string name="app_short_name" translatable="false">Amethyst</string>
<string name="demo_versions_supported">Only Vanilla 1.3.1 and above are supported on demo accounts</string>
<string name="demo_unsupported">Demo Profile not supported</string>
<string name="change_account">Please change accounts to use this function</string>
Expand Down
Loading