File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
firebase-sessions/src/main
java/com/google/firebase/sessions
kotlin/com/google/firebase/sessions Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ import kotlinx.coroutines.CoroutineDispatcher
4040@Keep
4141internal 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)
You can’t perform that action at this time.
0 commit comments