Skip to content

Commit 36a086d

Browse files
committed
Fix another proguard bug
Signed-off-by: Alex Saveau <[email protected]>
1 parent 1696cbd commit 36a086d

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

firestore/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ android {
1212
versionName version
1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414
}
15+
16+
buildTypes {
17+
release {
18+
postprocessing {
19+
consumerProguardFile 'proguard-rules.pro'
20+
}
21+
}
22+
}
1523
}
1624

1725
dependencies {

firestore/proguard-rules.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-dontwarn com.firebase.ui.firestore.paging.**

proguard-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929

3030
dependencies {
3131
implementation "com.google.firebase:firebase-core:$firebaseVersion"
32-
implementation "android.arch.paging:runtime:$pagingVersion"
32+
implementation "android.arch.lifecycle:extensions:$architectureVersion"
3333

3434
implementation project(path: ':auth')
3535
implementation project(path: ':firestore')

0 commit comments

Comments
 (0)