Panagiotis Triantafyllou

db revert versions

...@@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true ...@@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true
5 5
6 ext { 6 ext {
7 PUBLISH_GROUP_ID = 'ly.warp' 7 PUBLISH_GROUP_ID = 'ly.warp'
8 - PUBLISH_VERSION = '4.5.5.4p11' 8 + PUBLISH_VERSION = '4.5.5.4p12'
9 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 9 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
10 } 10 }
11 11
...@@ -107,9 +107,9 @@ dependencies { ...@@ -107,9 +107,9 @@ dependencies {
107 implementation 'com.huawei.hms:maps-basic:6.9.0.300' 107 implementation 'com.huawei.hms:maps-basic:6.9.0.300'
108 108
109 //------------------------------ SQLCipher -----------------------------// 109 //------------------------------ SQLCipher -----------------------------//
110 - api "net.zetetic:android-database-sqlcipher:4.5.4" 110 + api "net.zetetic:android-database-sqlcipher:4.5.2"
111 - api "androidx.sqlite:sqlite:2.5.1" 111 + api "androidx.sqlite:sqlite:2.2.0"
112 - api 'com.getkeepsafe.relinker:relinker:1.4.5' 112 + api 'com.getkeepsafe.relinker:relinker:1.4.4'
113 113
114 //------------------------------ Calligraphy -----------------------------// 114 //------------------------------ Calligraphy -----------------------------//
115 // api 'io.github.inflationx:calligraphy3:3.1.1' 115 // api 'io.github.inflationx:calligraphy3:3.1.1'
......
...@@ -45,7 +45,7 @@ public class WarplyDBHelper extends SQLiteOpenHelper { ...@@ -45,7 +45,7 @@ public class WarplyDBHelper extends SQLiteOpenHelper {
45 } 45 }
46 46
47 private static final String DB_NAME = "warply.db"; 47 private static final String DB_NAME = "warply.db";
48 - private static final int DB_VERSION = 13; 48 + private static final int DB_VERSION = 14;
49 private static final String KEY_CIPHER = "tn#mpOl3v3Dy1pr@W"; 49 private static final String KEY_CIPHER = "tn#mpOl3v3Dy1pr@W";
50 50
51 // Timeout constants 51 // Timeout constants
......