Skip to content

Commit 3948308

Browse files
Quick fix for onAppCreate()
To unblock development and acceptance tests before the Core SDK's next release. MOB-4198
1 parent a329968 commit 3948308

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/src/main/java/com/glia/exampleapp/Application.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import android.text.TextUtils;
44
import android.util.Log;
55

6+
import com.glia.androidsdk.Glia;
67
import com.glia.widgets.GliaWidgets;
78
import com.google.firebase.FirebaseApp;
89
import com.google.firebase.FirebaseOptions;
@@ -14,6 +15,8 @@ public void onCreate() {
1415
super.onCreate();
1516
initFirebase();
1617

18+
Glia.onAppCreate(this); // TODO: remove this line when Core SDK is updated
19+
1720
GliaWidgets.setCustomCardAdapter(new ExampleCustomCardAdapter());
1821
}
1922

0 commit comments

Comments
 (0)