Fix modal after login #177

Merged
s416204 merged 1 commits from fix-modal-after-login into develop 2019-01-23 21:23:59 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ android {
applicationId "com.uam.wmi.findmytutor"
minSdkVersion 22
targetSdkVersion 27
versionCode 80
versionCode 81
versionName "1.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true

View File

@ -244,7 +244,7 @@ public class PrefUtils {
}
public static Boolean shouldBatteryExclusionBeShown(Context context) {
return getSharedPreferences(context).getBoolean("show_battery_exclusion", false);
return getSharedPreferences(context).getBoolean("show_battery_exclusion", true);
}
public static void setBatteryExlusionInfoStatus(Context context, Boolean flag) {