Finish v1.18.6(236)

This commit is contained in:
Giuseppe Scorrano 2021-10-07 10:53:32 +02:00
commit 1645fba77c
5 changed files with 12 additions and 4 deletions

View File

@ -6,8 +6,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 235
def appVersionName = '1.18.5'
def appVersionCode = 236
def appVersionName = '1.18.6'
signingConfigs {
release {

View File

@ -56,6 +56,7 @@ public class MainContext {
}
public void logout(Runnable onLoggedOut) {
menuService.invalidateCache();
UtilityThread.executeParallel(() -> {
SettingsManager.i().setUser(null);
SettingsManager.i().setUserSession(null);

View File

@ -73,4 +73,9 @@ public class MenuService {
}
}
public void invalidateCache() {
this.mInternalCachedMenu = null;
this.mInternalCachedFlatMenu = null;
}
}

View File

@ -521,7 +521,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/tot_qty"
android:inputType="numberDecimal"
android:digits="0123456789"
android:inputType="number"
app:binding="@{view.currentQtaTot}" />
</com.google.android.material.textfield.TextInputLayout>

View File

@ -515,7 +515,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/tot_qty"
android:inputType="numberDecimal"
android:digits="0123456789"
android:inputType="number"
app:binding="@{view.currentQtaTot}" />
</com.google.android.material.textfield.TextInputLayout>