Skip to content

Commit 0fa1043

Browse files
authored
Remove IID from FIAM Display Dependencies (#1337)
* Remove IID from Display Dependencies
1 parent e44b4dd commit 0fa1043

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

firebase-inappmessaging-display/firebase-inappmessaging-display.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,12 @@ dependencies {
6464
implementation project(':firebase-inappmessaging')
6565
implementation project(':firebase-components')
6666

67-
implementation ('com.google.firebase:firebase-iid:20.0.1') {
68-
exclude group: "com.google.firebase", module: "firebase-common"
69-
}
7067
implementation('com.google.firebase:firebase-measurement-connector:18.0.0') {
7168
exclude group: 'com.google.firebase', module: 'firebase-common'
7269
}
7370

74-
implementation 'androidx.appcompat:appcompat:1.0.2'
71+
implementation 'com.google.android.gms:play-services-tasks:17.0.0'
72+
implementation 'androidx.appcompat:appcompat:1.1.0'
7573
implementation 'androidx.cardview:cardview:1.0.0'
7674
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
7775
implementation 'androidx.browser:browser:1.0.0'
@@ -83,13 +81,13 @@ dependencies {
8381
implementation "com.squareup.okhttp:okhttp:2.7.5"
8482

8583
annotationProcessor "com.google.dagger:dagger-compiler:2.24"
86-
annotationProcessor 'com.google.auto.value:auto-value:1.6.2'
84+
annotationProcessor 'com.google.auto.value:auto-value:1.6.5'
8785
annotationProcessor 'com.ryanharter.auto.value:auto-value-parcel:0.2.6'
8886

8987
testImplementation "org.robolectric:robolectric:4.2"
9088
testImplementation "junit:junit:4.12"
9189
testImplementation "org.mockito:mockito-core:2.25.0"
92-
testImplementation "com.google.truth:truth:0.44"
90+
testImplementation "com.google.truth:truth:1.0"
9391
testImplementation 'com.google.guava:guava:27.1-android'
9492

9593
androidTestImplementation "org.mockito:mockito-core:2.25.0"

firebase-inappmessaging-display/src/main/java/com/google/firebase/inappmessaging/display/FirebaseInAppMessagingDisplay.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
* <li>send usage metrics to the Firebase backend.
7676
* </ul>
7777
*
78-
* <p>To delete the Instance ID and the data associated with it, see {@link
79-
* com.google.firebase.iid.FirebaseInstanceId#deleteInstanceId}.
78+
* <p>To delete the Instance ID and the data associated with it, see
79+
* FirebaseInstallationsApi#delete.
8080
*/
8181
@Keep
8282
@FirebaseAppScope

firebase-inappmessaging/firebase-inappmessaging.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ dependencies {
133133
}
134134

135135
annotationProcessor 'com.google.dagger:dagger-compiler:2.24'
136-
annotationProcessor 'com.google.auto.value:auto-value:1.6.2'
136+
annotationProcessor 'com.google.auto.value:auto-value:1.6.5'
137137
annotationProcessor 'com.ryanharter.auto.value:auto-value-parcel:0.2.6'
138138

139139
testImplementation 'org.mockito:mockito-core:1.10.19'

0 commit comments

Comments
 (0)