Finish v1.16.28(210)

This commit is contained in:
Giuseppe Scorrano 2021-04-16 18:33:53 +02:00
commit ac446d953c
2 changed files with 4 additions and 2 deletions

View File

@ -6,8 +6,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 209
def appVersionName = '1.16.27'
def appVersionCode = 210
def appVersionName = '1.16.28'
signingConfigs {
release {

View File

@ -312,6 +312,8 @@ public class SettingsManager {
return clazz.cast(value.getValue());
} else if(clazz == Boolean.class) {
return clazz.cast("S".equalsIgnoreCase(value.getValue()));
} else if(clazz == Integer.class) {
return clazz.cast(Integer.parseInt(value.getValue()));
} else return null;
}