File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
java/com/google/firebase/sessions
kotlin/com/google/firebase/sessions Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ dependencies {
7373 api(" com.google.firebase:firebase-encoders:17.0.0" )
7474 api(" com.google.firebase:firebase-encoders-json:18.0.1" )
7575 implementation(libs.androidx.annotation)
76- implementation(libs. androidx.datastore. preferences)
76+ implementation(" androidx.datastore:datastore- preferences-android:1.1.2 " )
7777 compileOnly(libs.errorprone.annotations)
7878
7979 runtimeOnly(" com.google.firebase:firebase-installations:18.0.0" ) {
Original file line number Diff line number Diff line change 1717package com .google .firebase .sessions ;
1818
1919import androidx .annotation .NonNull ;
20+ import androidx .datastore .DataStoreFile ;
2021import androidx .datastore .preferences .PreferenceDataStoreDelegateKt ;
2122
2223public class Eh {
2324
2425 @ NonNull
25- public static String getMissingClassName () {
26+ public static String getMissingClassName0 () {
27+ try {
28+ return DataStoreFile .class .getName ();
29+ } catch (Exception ex ) {
30+ return "oops: " + ex .getMessage ();
31+ }
32+ }
33+
34+ @ NonNull
35+ public static String getMissingClassName1 () {
2636 try {
2737 return PreferenceDataStoreDelegateKt .class .getName ();
2838 } catch (Exception ex ) {
Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ import kotlinx.coroutines.CoroutineDispatcher
4141internal class FirebaseSessionsRegistrar : ComponentRegistrar {
4242 override fun getComponents (): List <Component <out Any >> {
4343 Log .w(" find me" , " this is the modified aqs: " + BuildConfig .VERSION_NAME )
44- Log .w(" find me" , " the missing class name: ${Eh .getMissingClassName()} " )
44+ Log .w(" find me" , " the missing class name 0: ${Eh .getMissingClassName0()} " )
45+ Log .w(" find me" , " the missing class name 1: ${Eh .getMissingClassName1()} " )
4546 return listOf (
4647 Component .builder(FirebaseSessions ::class .java)
4748 .name(LIBRARY_NAME )
You can’t perform that action at this time.
0 commit comments