15 lines
390 B
Java
15 lines
390 B
Java
package com.google.firebase.components;
|
|
|
|
import android.app.Service;
|
|
import android.content.Intent;
|
|
import android.os.IBinder;
|
|
|
|
/* compiled from: com.google.firebase:firebase-common@@16.0.2 */
|
|
/* loaded from: classes.dex */
|
|
public class ComponentDiscoveryService extends Service {
|
|
@Override // android.app.Service
|
|
public IBinder onBind(Intent intent) {
|
|
return null;
|
|
}
|
|
}
|