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

10 lines
481 B
Plaintext
Raw Normal View History

2022-01-29 20:23:50 +00:00
package com.mgoogle.android.gms.phenotype.internal;
2020-10-14 21:00:04 +00:00
2022-01-29 20:23:50 +00:00
import com.mgoogle.android.gms.phenotype.internal.IPhenotypeCallbacks;
2020-10-14 21:00:04 +00:00
interface IPhenotypeService {
void register(IPhenotypeCallbacks callbacks, String p1, int p2, in String[] p3, in byte[] p4) = 0;
2022-01-26 05:26:56 +00:00
void register2(IPhenotypeCallbacks callbacks, String p1, int p2, in String[] p3, in int[] p4, in byte[] p5) = 1;
2020-10-14 21:00:04 +00:00
void getConfigurationSnapshot(IPhenotypeCallbacks callbacks, String p1, String p2, String p3) = 10;
}