Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Hart
72a2ef275c Bump version to 5.29.7 2022-01-25 10:26:22 -04:00
Alex Hart
318f3589d6 Remove clear-cache call from database migration. 2022-01-25 10:25:27 -04:00
2 changed files with 6 additions and 8 deletions

View File

@@ -63,14 +63,14 @@ ktlint {
}
def canonicalVersionCode = 990
def canonicalVersionName = "5.29.6"
def canonicalVersionName = "5.29.7"
def postFixSize = 100
def abiPostFix = ['universal' : 0,
'armeabi-v7a' : 1,
'arm64-v8a' : 2,
'x86' : 3,
'x86_64' : 4]
def abiPostFix = ['universal' : 5,
'armeabi-v7a' : 6,
'arm64-v8a' : 7,
'x86' : 8,
'x86_64' : 9]
def keystores = [ 'debug' : loadKeystoreProperties('keystore.debug.properties') ]

View File

@@ -10,7 +10,6 @@ import android.os.SystemClock
import android.preference.PreferenceManager
import android.text.TextUtils
import com.annimon.stream.Stream
import com.bumptech.glide.Glide
import com.google.protobuf.InvalidProtocolBufferException
import net.zetetic.database.sqlcipher.SQLiteDatabase
import org.signal.core.util.logging.Log
@@ -699,7 +698,6 @@ object SignalDatabaseMigrations {
if (oldVersion < ATTACHMENT_CLEAR_HASHES_2) {
db.execSQL("UPDATE part SET data_hash = null")
Glide.get(context).clearDiskCache()
}
if (oldVersion < UUIDS) {