bump to 6.17.485

This commit is contained in:
Yuriy Liskov
2020-04-05 22:05:49 +03:00
parent 01cd1ac0b6
commit 1dfdd7c273
5 changed files with 14 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ android {
applicationId "org.liskovsoft.leankeykeyboard.pro"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 144
versionName "5.2.44"
versionCode 145
versionName "5.2.45"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

View File

@@ -41,7 +41,8 @@ public class AboutFragment extends GuidedStepSupportFragment {
String appName = AppInfoHelpers.getApplicationName(getActivity());
String appVersion = AppInfoHelpers.getAppVersionName(getActivity());
appendInfoAction(appName + " " + appVersion, actions);
String flavorName = getString(R.string.flavor_name);
appendInfoAction(appName + " " + appVersion + " " + flavorName, actions);
}
private void appendInfoAction(String textLine, List<GuidedAction> actions) {

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="flavor_name" translatable="false">origin</string>
</resources>

View File

@@ -36,7 +36,8 @@ public class AboutFragment extends GuidedStepSupportFragment {
public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
String appName = AppInfoHelpers.getApplicationName(getActivity());
String appVersion = AppInfoHelpers.getAppVersionName(getActivity());
appendInfoAction(appName + " " + appVersion, actions);
String flavorName = getString(R.string.flavor_name);
appendInfoAction(appName + " " + appVersion + " " + flavorName, actions);
}
private void appendInfoAction(String textLine, List<GuidedAction> actions) {

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="flavor_name" translatable="false">playstore</string>
</resources>