Update to 8.5.4

This commit is contained in:
xaxtix 2022-02-16 03:22:36 +03:00
parent b5694a1ca6
commit 3708e9847a
4 changed files with 6 additions and 7 deletions

View File

@ -300,7 +300,7 @@ android {
} }
} }
defaultConfig.versionCode = 2565 defaultConfig.versionCode = 2566
applicationVariants.all { variant -> applicationVariants.all { variant ->
variant.outputs.all { output -> variant.outputs.all { output ->
@ -319,7 +319,7 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 30 targetSdkVersion 30
versionName "8.5.3" versionName "8.5.4"
vectorDrawables.generatedDensities = ['mdpi', 'hdpi', 'xhdpi', 'xxhdpi'] vectorDrawables.generatedDensities = ['mdpi', 'hdpi', 'xhdpi', 'xxhdpi']

View File

@ -2290,7 +2290,7 @@ public class AndroidUtilities {
} }
public static void appCenterLog(Throwable e) { public static void appCenterLog(Throwable e) {
} }
public static void addToClipboard(CharSequence str) { public static void addToClipboard(CharSequence str) {

View File

@ -20,8 +20,8 @@ public class BuildVars {
public static boolean USE_CLOUD_STRINGS = true; public static boolean USE_CLOUD_STRINGS = true;
public static boolean CHECK_UPDATES = true; public static boolean CHECK_UPDATES = true;
public static boolean NO_SCOPED_STORAGE = Build.VERSION.SDK_INT <= 29; public static boolean NO_SCOPED_STORAGE = Build.VERSION.SDK_INT <= 29;
public static int BUILD_VERSION = 2565; public static int BUILD_VERSION = 2566;
public static String BUILD_VERSION_STRING = "8.5.3"; public static String BUILD_VERSION_STRING = "8.5.4";
public static int APP_ID = 4; public static int APP_ID = 4;
public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103"; public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103";

View File

@ -62,7 +62,6 @@ import android.text.TextUtils;
import android.text.style.CharacterStyle; import android.text.style.CharacterStyle;
import android.text.style.ForegroundColorSpan; import android.text.style.ForegroundColorSpan;
import android.text.style.URLSpan; import android.text.style.URLSpan;
import android.util.Log;
import android.util.Property; import android.util.Property;
import android.util.SparseArray; import android.util.SparseArray;
import android.util.SparseIntArray; import android.util.SparseIntArray;
@ -20591,7 +20590,7 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not
AlertsCreator.createDeleteMessagesAlert(this, currentUser, currentChat, currentEncryptedChat, chatInfo, mergeDialogId, finalSelectedObject, selectedMessagesIds, finalSelectedGroup, chatMode == MODE_SCHEDULED, loadParticipant, () -> { AlertsCreator.createDeleteMessagesAlert(this, currentUser, currentChat, currentEncryptedChat, chatInfo, mergeDialogId, finalSelectedObject, selectedMessagesIds, finalSelectedGroup, chatMode == MODE_SCHEDULED, loadParticipant, () -> {
hideActionMode(); hideActionMode();
updatePinnedMessageView(true); updatePinnedMessageView(true);
}, null, themeDelegate); }, () -> dimBehindView(false), themeDelegate);
} }
private void hideActionMode() { private void hideActionMode() {