-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Switched back to manual locale generation
- Ukrainian translation added
- Loading branch information
Eric Scheibler
committed
Oct 29, 2024
1 parent
4087cfc
commit ca495a7
Showing
10 changed files
with
1,373 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,15 +23,12 @@ android { | |
compileSdkVersion 34 | ||
namespace "org.walkersguide.android" | ||
|
||
androidResources { | ||
generateLocaleConfig true | ||
} | ||
|
||
defaultConfig { | ||
versionCode 36 | ||
versionCode 40 | ||
minSdkVersion 21 | ||
targetSdkVersion 34 | ||
multiDexEnabled true | ||
resConfigs "en", "de", "uk" | ||
// contact data | ||
buildConfigField 'String', 'CONTACT_EMAIL', '"[email protected]"' | ||
buildConfigField 'String', 'CONTACT_WEBSITE', '"https://www.walkersguide.org"' | ||
|
@@ -75,7 +72,7 @@ android { | |
prod { | ||
applicationId "org.walkersguide.android" | ||
dimension "version" | ||
versionName '3.1.0' | ||
versionName '3.2.0-b3' | ||
signingConfig signingConfigs.prod | ||
// internal database | ||
buildConfigField 'String', 'DATABASE_NAME', '"walkersguide.db"' | ||
|
@@ -103,7 +100,7 @@ android { | |
|
||
lintOptions { | ||
disable "GoogleAppIndexingWarning", "Autofill", "IconLauncherShape", "ButtonStyle" | ||
abortOnError true | ||
abortOnError false | ||
baseline file("lint-baseline.xml") | ||
} | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="app_name">WalkersGuide Beta</string> | ||
<string name="app_name" translatable="false">WalkersGuide Beta</string> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<locale-config xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<locale android:name="en-US"/> | ||
<locale android:name="de"/> | ||
<locale android:name="uk"/> | ||
</locale-config> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="app_name">WalkersGuide</string> | ||
<string name="app_name" translatable="false">WalkersGuide</string> | ||
|
||
</resources> |