Switch Phenotype libraries name

This commit is contained in:
Oizaro 2020-10-18 18:54:52 +02:00
parent 41e4c8c1af
commit 6016d001a4
8 changed files with 13 additions and 13 deletions

View File

@ -1,3 +0,0 @@
package com.google.android.gms.phenotype;
parcelable Configurations;

View File

@ -0,0 +1,3 @@
package com.mgoogle.android.gms.phenotype;
parcelable Configurations;

View File

@ -1,7 +1,7 @@
package com.google.android.gms.phenotype.internal; package com.mgoogle.android.gms.phenotype.internal;
import com.google.android.gms.common.api.Status; import com.google.android.gms.common.api.Status;
import com.google.android.gms.phenotype.Configurations; import com.mgoogle.android.gms.phenotype.Configurations;
interface IPhenotypeCallbacks { interface IPhenotypeCallbacks {
void onRegister(in Status status) = 0; void onRegister(in Status status) = 0;

View File

@ -1,6 +1,6 @@
package com.google.android.gms.phenotype.internal; package com.mgoogle.android.gms.phenotype.internal;
import com.google.android.gms.phenotype.internal.IPhenotypeCallbacks; import com.mgoogle.android.gms.phenotype.internal.IPhenotypeCallbacks;
interface IPhenotypeService { interface IPhenotypeService {
void register(IPhenotypeCallbacks callbacks, String p1, int p2, in String[] p3, in byte[] p4) = 0; void register(IPhenotypeCallbacks callbacks, String p1, int p2, in String[] p3, in byte[] p4) = 0;

View File

@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
package com.google.android.gms.phenotype; package com.mgoogle.android.gms.phenotype;
import org.microg.safeparcel.AutoSafeParcelable; import org.microg.safeparcel.AutoSafeParcelable;

View File

@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
package com.google.android.gms.phenotype; package com.mgoogle.android.gms.phenotype;
import org.microg.safeparcel.AutoSafeParcelable; import org.microg.safeparcel.AutoSafeParcelable;

View File

@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
package com.google.android.gms.phenotype; package com.mgoogle.android.gms.phenotype;
import org.microg.safeparcel.AutoSafeParcelable; import org.microg.safeparcel.AutoSafeParcelable;

View File

@ -10,9 +10,9 @@ import android.util.Log
import com.google.android.gms.common.api.Status import com.google.android.gms.common.api.Status
import com.google.android.gms.common.internal.GetServiceRequest import com.google.android.gms.common.internal.GetServiceRequest
import com.google.android.gms.common.internal.IGmsCallbacks import com.google.android.gms.common.internal.IGmsCallbacks
import com.google.android.gms.phenotype.Configurations import com.mgoogle.android.gms.phenotype.Configurations
import com.google.android.gms.phenotype.internal.IPhenotypeCallbacks import com.mgoogle.android.gms.phenotype.internal.IPhenotypeCallbacks
import com.google.android.gms.phenotype.internal.IPhenotypeService import com.mgoogle.android.gms.phenotype.internal.IPhenotypeService
import org.microg.gms.BaseService import org.microg.gms.BaseService
import org.microg.gms.common.GmsService import org.microg.gms.common.GmsService