VancedMicroG/play-services-api/src/main/aidl/com/mgoogle/android/gms/phenotype/internal/IPhenotypeCallbacks.aidl

10 lines
320 B
Plaintext
Raw Normal View History

2020-10-18 18:54:52 +02:00
package com.mgoogle.android.gms.phenotype.internal;
2020-10-14 23:00:04 +02:00
import com.google.android.gms.common.api.Status;
2020-10-18 18:54:52 +02:00
import com.mgoogle.android.gms.phenotype.Configurations;
2020-10-14 23:00:04 +02:00
interface IPhenotypeCallbacks {
void onRegister(in Status status) = 0;
void onConfigurations(in Status status, in Configurations configurations) = 3;
}