Skip to content

Commit f0d3d7b

Browse files
Merge pull request #6 from CodingWithTashi/feat/google-signin
added migration code
2 parents 192687d + ed482b0 commit f0d3d7b

8 files changed

Lines changed: 3707 additions & 3 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@
1515
.cxx
1616
local.properties
1717
/app/release
18+
/data-migration/node_modules
19+
/data-migration/.env
20+
/data-migration/tibetan-keyboard.json
21+
1822

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId "com.kharagedition.tibetankeyboard"
1313
minSdkVersion 23
1414
targetSdkVersion 35
15-
versionCode 16
16-
versionName "1.7.18"
15+
versionCode 18
16+
versionName "1.7.20"
1717

1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1919
multiDexEnabled true

app/proguard-rules.pro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,12 @@
1818

1919
# If you keep the line number information, uncomment this to
2020
# hide the original source file name.
21-
#-renamesourcefileattribute SourceFile
21+
#-renamesourcefileattribute SourceFile
22+
23+
# Keep Firestore model classes
24+
-keep class com.kharagedition.tibetankeyboard.util.User { *; }
25+
-keep class com.kharagedition.tibetankeyboard.util.DeviceInfo { *; }
26+
-keep class com.kharagedition.tibetankeyboard.util.** { *; }
27+
28+
# Keep Firebase Firestore
29+
-keep class com.google.firebase.firestore.** { *; }

0 commit comments

Comments
 (0)