File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
firebase-sessions/src/main
kotlin/com/google/firebase/sessions Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1717 <!-- <uses-sdk android:minSdkVersion="21"/>-->
1818
1919 <application >
20+ <service
21+ android : name =" com.google.firebase.sessions.SessionLifecycleService"
22+ android : enabled =" false"
23+ android : exported =" false" />
2024 <service
2125 android : exported =" false"
2226 android : name =" com.google.firebase.components.ComponentDiscoveryService" >
Original file line number Diff line number Diff line change 1+ package com.google.firebase.sessions
2+
3+ import android.app.Service
4+ import android.content.Intent
5+ import android.os.IBinder
6+ import android.util.Log
7+
8+ internal class SessionLifecycleService : Service () {
9+
10+ override fun onBind (p0 : Intent ? ): IBinder ? {
11+ Log .d(TAG , " Service bound no-op" )
12+ return null
13+ }
14+
15+ internal companion object {
16+ const val TAG = " SessionLifecycleService"
17+
18+ }
19+ }
You can’t perform that action at this time.
0 commit comments