1
0
Fork 0

removed the git hash from 'versionName' and also made the git version tag stricter, not to fail with random tags

This commit is contained in:
Dimo Karaivanov 2022-11-30 13:41:27 +02:00
parent bd73918f6a
commit 6a2e1806d1
2 changed files with 31 additions and 15 deletions

View file

@ -102,7 +102,7 @@ public class PreferencesFragment extends PreferenceFragmentCompat {
private void createAboutSection() {
Preference vi = findPreference("version_info");
if (vi != null) {
vi.setSummary(BuildConfig.VERSION_NAME);
vi.setSummary(BuildConfig.VERSION_FULL);
}
}
}