Skip to content

Commit a5342d6

Browse files
committed
Try debug msg
1 parent 3eb8c30 commit a5342d6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

firebase-sessions/src/main/java/com/google/firebase/sessions/Eh.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ public class Eh {
2323

2424
@NonNull
2525
public static String getMissingClassName() {
26-
return PreferenceDataStoreDelegateKt.class.getName();
26+
try {
27+
return PreferenceDataStoreDelegateKt.class.getName();
28+
} catch (Exception ex) {
29+
return "oops: " + ex.getMessage();
30+
}
2731
}
2832
}

firebase-sessions/src/main/kotlin/com/google/firebase/sessions/FirebaseSessionsRegistrar.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import kotlinx.coroutines.CoroutineDispatcher
4040
@Keep
4141
internal class FirebaseSessionsRegistrar : ComponentRegistrar {
4242
override fun getComponents(): List<Component<out Any>> {
43+
Log.w("find me", "this is the modified aqs: " + BuildConfig.VERSION_NAME)
4344
Log.w("find me", "the missing class name: ${Eh.getMissingClassName()}")
4445
return listOf(
4546
Component.builder(FirebaseSessions::class.java)

0 commit comments

Comments
 (0)