├── .github ├── matchers │ ├── gradle-build-kotlin-error-matcher.json │ ├── gradle-build-kotlin-error-matcher.json.license │ ├── gradle-build-matcher.json │ └── gradle-build-matcher.json.license └── workflows │ └── build.yml ├── .gitignore ├── Android.mk ├── LICENSE ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-4.0.txt └── CC0-1.0.txt ├── README.md ├── artwork ├── ic_gamepad.svg ├── ic_microg_settings.svg ├── ic_recaptcha.svg └── styles │ ├── README.md │ ├── fonts │ ├── OpenSans Regular.ttf │ ├── Roboto Bold.ttf │ ├── Roboto Medium.ttf │ ├── Roboto Regular.ttf │ └── combinations.json │ ├── sprite_sources │ ├── capital.svg │ ├── city.svg │ ├── poi_generic.svg │ ├── poi_generic_blue.svg │ ├── poi_generic_green.svg │ ├── poi_generic_orange.svg │ ├── poi_generic_purple.svg │ ├── poi_generic_red.svg │ ├── poi_generic_teal.svg │ ├── poi_grocery.svg │ ├── poi_lodging.svg │ ├── poi_museum.svg │ ├── poi_res.svg │ ├── poi_restaurant.svg │ ├── poi_theatre.svg │ ├── shield_de-motorway_2.svg │ ├── shield_de-motorway_3.svg │ ├── shield_rectangle-blue_2.svg │ ├── shield_rectangle-blue_3.svg │ ├── shield_rectangle-blue_4.svg │ ├── shield_rectangle-blue_5.svg │ ├── shield_rectangle-blue_6.svg │ ├── shield_rectangle-green_2.svg │ ├── shield_rectangle-green_3.svg │ ├── shield_rectangle-green_4.svg │ ├── shield_rectangle-red_2.svg │ ├── shield_rectangle-red_3.svg │ ├── shield_rectangle-white_2.svg │ ├── shield_rectangle-white_3.svg │ ├── shield_rectangle-white_4.svg │ ├── shield_rectangle-white_5.svg │ ├── shield_rectangle-white_6.svg │ ├── shield_rectangle-yellow_2.svg │ ├── shield_rectangle-yellow_3.svg │ ├── shield_us-interstate_2.svg │ ├── shield_us-interstate_3.svg │ └── shield_us-interstate_4.svg │ ├── style-mapbox-outdoors-v12.json │ ├── style-microg-normal-mapbox.json │ ├── style-microg-normal-openmaptiles.json │ ├── style-microg-normal-stadia.json │ ├── style-microg-satellite-mapbox.json │ ├── style-microg-satellite-stadia.json │ └── style-stadia-outdoors.json ├── fake-signature ├── build.gradle └── src │ ├── huawei │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── huawei │ │ │ └── signature │ │ │ └── diff │ │ │ └── ISignatureService.aidl │ └── java │ │ └── com │ │ └── huawei │ │ └── signature │ │ └── diff │ │ ├── AppListDatabaseOpenHelper.java │ │ ├── InitProvider.java │ │ ├── InitReceiver.java │ │ └── SignatureService.java │ └── main │ ├── AndroidManifest.xml │ └── res │ └── values │ ├── arrays.xml │ └── signature.xml ├── firebase-auth ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── recaptcha.html │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── firebase │ │ │ └── auth │ │ │ ├── FirebaseAuthService.kt │ │ │ ├── IdentityToolkitClient.kt │ │ │ ├── ReCaptchaActivity.kt │ │ │ └── ReCaptchaOverlay.kt │ │ └── res │ │ └── layout │ │ └── activity_recaptcha.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── firebase │ │ └── auth │ │ ├── ActionCodeSettings.aidl │ │ ├── EmailAuthCredential.aidl │ │ ├── PhoneAuthCredential.aidl │ │ ├── UserProfileChangeRequest.aidl │ │ └── api │ │ └── internal │ │ ├── ApplyActionCodeAidlRequest.aidl │ │ ├── ChangeEmailAidlRequest.aidl │ │ ├── ChangePasswordAidlRequest.aidl │ │ ├── CheckActionCodeAidlRequest.aidl │ │ ├── ConfirmPasswordResetAidlRequest.aidl │ │ ├── CreateAuthUriResponse.aidl │ │ ├── CreateUserWithEmailAndPasswordAidlRequest.aidl │ │ ├── DeleteAidlRequest.aidl │ │ ├── FinalizeMfaEnrollmentAidlRequest.aidl │ │ ├── FinalizeMfaSignInAidlRequest.aidl │ │ ├── GetAccessTokenAidlRequest.aidl │ │ ├── GetAccountInfoUser.aidl │ │ ├── GetProvidersForEmailAidlRequest.aidl │ │ ├── GetTokenResponse.aidl │ │ ├── IFirebaseAuthCallbacks.aidl │ │ ├── IFirebaseAuthService.aidl │ │ ├── LinkEmailAuthCredentialAidlRequest.aidl │ │ ├── LinkFederatedCredentialAidlRequest.aidl │ │ ├── LinkPhoneAuthCredentialAidlRequest.aidl │ │ ├── ReloadAidlRequest.aidl │ │ ├── ResetPasswordResponse.aidl │ │ ├── SendEmailVerificationWithSettingsAidlRequest.aidl │ │ ├── SendGetOobConfirmationCodeEmailAidlRequest.aidl │ │ ├── SendVerificationCodeAidlRequest.aidl │ │ ├── SendVerificationCodeRequest.aidl │ │ ├── SetFirebaseUiVersionAidlRequest.aidl │ │ ├── SignInAnonymouslyAidlRequest.aidl │ │ ├── SignInWithCredentialAidlRequest.aidl │ │ ├── SignInWithCustomTokenAidlRequest.aidl │ │ ├── SignInWithEmailAndPasswordAidlRequest.aidl │ │ ├── SignInWithEmailLinkAidlRequest.aidl │ │ ├── SignInWithPhoneNumberAidlRequest.aidl │ │ ├── StartMfaPhoneNumberEnrollmentAidlRequest.aidl │ │ ├── StartMfaPhoneNumberSignInAidlRequest.aidl │ │ ├── StringList.aidl │ │ ├── UnenrollMfaAidlRequest.aidl │ │ ├── UnlinkEmailCredentialAidlRequest.aidl │ │ ├── UnlinkFederatedCredentialAidlRequest.aidl │ │ ├── UpdateProfileAidlRequest.aidl │ │ ├── VerifyAssertionRequest.aidl │ │ └── VerifyBeforeUpdateEmailAidlRequest.aidl │ └── java │ ├── com │ └── google │ │ └── firebase │ │ └── auth │ │ ├── ActionCodeSettings.java │ │ ├── AuthCredential.java │ │ ├── DefaultOAuthCredential.java │ │ ├── EmailAuthCredential.java │ │ ├── OAuthCredential.java │ │ ├── PhoneAuthCredential.java │ │ ├── UserProfileChangeRequest.java │ │ └── api │ │ └── internal │ │ ├── ApplyActionCodeAidlRequest.java │ │ ├── ChangeEmailAidlRequest.java │ │ ├── ChangePasswordAidlRequest.java │ │ ├── CheckActionCodeAidlRequest.java │ │ ├── ConfirmPasswordResetAidlRequest.java │ │ ├── CreateAuthUriResponse.java │ │ ├── CreateUserWithEmailAndPasswordAidlRequest.java │ │ ├── DeleteAidlRequest.java │ │ ├── FinalizeMfaEnrollmentAidlRequest.java │ │ ├── FinalizeMfaSignInAidlRequest.java │ │ ├── GetAccessTokenAidlRequest.java │ │ ├── GetAccountInfoUser.java │ │ ├── GetProvidersForEmailAidlRequest.java │ │ ├── GetTokenResponse.java │ │ ├── LinkEmailAuthCredentialAidlRequest.java │ │ ├── LinkFederatedCredentialAidlRequest.java │ │ ├── LinkPhoneAuthCredentialAidlRequest.java │ │ ├── MfaInfo.java │ │ ├── ProviderUserInfo.java │ │ ├── ProviderUserInfoList.java │ │ ├── ReloadAidlRequest.java │ │ ├── ResetPasswordResponse.java │ │ ├── SendEmailVerificationWithSettingsAidlRequest.java │ │ ├── SendGetOobConfirmationCodeEmailAidlRequest.java │ │ ├── SendVerificationCodeAidlRequest.java │ │ ├── SendVerificationCodeRequest.java │ │ ├── SetFirebaseUiVersionAidlRequest.java │ │ ├── SignInAnonymouslyAidlRequest.java │ │ ├── SignInWithCredentialAidlRequest.java │ │ ├── SignInWithCustomTokenAidlRequest.java │ │ ├── SignInWithEmailAndPasswordAidlRequest.java │ │ ├── SignInWithEmailLinkAidlRequest.java │ │ ├── SignInWithPhoneNumberAidlRequest.java │ │ ├── StartMfaPhoneNumberEnrollmentAidlRequest.java │ │ ├── StartMfaPhoneNumberSignInAidlRequest.java │ │ ├── StringList.java │ │ ├── UnenrollMfaAidlRequest.java │ │ ├── UnlinkEmailCredentialAidlRequest.java │ │ ├── UnlinkFederatedCredentialAidlRequest.java │ │ ├── UpdateProfileAidlRequest.java │ │ ├── VerifyAssertionRequest.java │ │ └── VerifyBeforeUpdateEmailAidlRequest.java │ └── org │ └── microg │ └── gms │ └── firebase │ └── auth │ └── Constants.java ├── firebase-dynamic-links ├── build.gradle └── src │ └── main │ └── AndroidManifest.xml ├── gradle.properties ├── gradle ├── publish-android.gradle ├── publish-java.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── play-services-ads-base ├── build.gradle └── src │ └── main │ └── AndroidManifest.xml ├── play-services-ads-identifier ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── ads │ │ │ └── identifier │ │ │ └── AdvertisingIdService.kt │ │ └── res │ │ ├── values-ast │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ └── strings.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── ads │ │ └── identifier │ │ └── internal │ │ └── IAdvertisingIdService.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── ads │ └── identifier │ ├── AdvertisingIdClient.java │ └── package-info.java ├── play-services-ads-lite ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── ads │ │ │ ├── AdLoaderBuilderCreatorImpl.kt │ │ │ ├── AdManagerCreatorImpl.kt │ │ │ ├── MobileAdsSettingManagerCreatorImpl.kt │ │ │ ├── measurement │ │ │ └── DynamiteMeasurementManager.kt │ │ │ └── rewarded │ │ │ └── ChimeraRewardedAdCreatorImpl.kt │ │ └── org │ │ └── microg │ │ └── gms │ │ └── ads │ │ ├── MobileAdsSettingManagerImpl.kt │ │ └── rewarded │ │ ├── ResponseInfoImpl.kt │ │ └── RewardedAdImpl.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── ads │ │ ├── AdManagerCreator.aidl │ │ ├── internal │ │ ├── AdErrorParcel.aidl │ │ ├── AdRequestParcel.aidl │ │ ├── AdapterResponseInfoParcel.aidl │ │ ├── AdapterStatusParcel.aidl │ │ ├── RequestConfigurationParcel.aidl │ │ ├── ServerSideVerificationOptionsParcel.aidl │ │ ├── client │ │ │ ├── IAdLoaderBuilderCreator.aidl │ │ │ ├── IMobileAdsSettingManager.aidl │ │ │ ├── IMobileAdsSettingManagerCreator.aidl │ │ │ ├── IOnAdInspectorClosedListener.aidl │ │ │ ├── IOnAdMetadataChangedListener.aidl │ │ │ ├── IOnPaidEventListener.aidl │ │ │ └── IResponseInfo.aidl │ │ ├── initialization │ │ │ └── IInitializationCallback.aidl │ │ ├── mediation │ │ │ └── client │ │ │ │ └── IAdapterCreator.aidl │ │ └── rewarded │ │ │ └── client │ │ │ ├── IRewardItem.aidl │ │ │ ├── IRewardedAd.aidl │ │ │ ├── IRewardedAdCallback.aidl │ │ │ ├── IRewardedAdCreator.aidl │ │ │ ├── IRewardedAdLoadCallback.aidl │ │ │ └── IRewardedAdSkuListener.aidl │ │ └── measurement │ │ └── IMeasurementManager.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── ads │ ├── admanager │ └── package-info.java │ ├── h5 │ └── package-info.java │ ├── initialization │ └── package-info.java │ ├── internal │ ├── AdDataParcel.java │ ├── AdErrorParcel.java │ ├── AdRequestParcel.java │ ├── AdapterResponseInfoParcel.java │ ├── AdapterStatusParcel.java │ ├── RequestConfigurationParcel.java │ ├── SearchAdRequestParcel.java │ └── ServerSideVerificationOptionsParcel.java │ ├── interstitial │ └── package-info.java │ ├── mediation │ ├── customevent │ │ └── package-info.java │ ├── package-info.java │ └── rtb │ │ └── package-info.java │ ├── nativead │ └── package-info.java │ ├── package-info.java │ ├── rewarded │ └── package-info.java │ ├── rewardedinterstitial │ └── package-info.java │ └── search │ └── package-info.java ├── play-services-ads ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── dynamite │ │ │ └── descriptors │ │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── ads │ │ │ └── dynamite │ │ │ └── ModuleDescriptor.java │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── ads │ │ └── AdRequestService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── ads │ │ └── internal │ │ ├── ExceptionParcel.aidl │ │ ├── NonagonRequestParcel.aidl │ │ └── request │ │ ├── IAdRequestService.aidl │ │ └── INonagonStreamingResponseListener.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── ads │ └── internal │ ├── ExceptionParcel.java │ └── NonagonRequestParcel.java ├── play-services-api ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ ├── android │ │ └── gms │ │ │ ├── ads │ │ │ └── omid │ │ │ │ └── IOmid.aidl │ │ │ ├── appdatasearch │ │ │ ├── CorpusStatus.aidl │ │ │ ├── PIMEUpdate.aidl │ │ │ ├── PIMEUpdateResponse.aidl │ │ │ ├── RequestIndexingSpecification.aidl │ │ │ ├── SuggestSpecification.aidl │ │ │ ├── SuggestionResults.aidl │ │ │ ├── UsageInfo.aidl │ │ │ └── internal │ │ │ │ ├── IAppDataSearch.aidl │ │ │ │ ├── ILightweightAppDataSearch.aidl │ │ │ │ └── ILightweightAppDataSearchCallbacks.aidl │ │ │ ├── audit │ │ │ ├── LogAuditRecordsRequest.aidl │ │ │ └── internal │ │ │ │ └── IAuditService.aidl │ │ │ ├── auth │ │ │ └── appcert │ │ │ │ └── IAppCertService.aidl │ │ │ ├── checkin │ │ │ └── internal │ │ │ │ └── ICheckinService.aidl │ │ │ ├── common │ │ │ └── data │ │ │ │ └── BitmapTeleporter.aidl │ │ │ ├── credential │ │ │ └── manager │ │ │ │ ├── common │ │ │ │ ├── IPendingIntentCallback.aidl │ │ │ │ └── ISettingsCallback.aidl │ │ │ │ ├── firstparty │ │ │ │ └── internal │ │ │ │ │ └── ICredentialManagerService.aidl │ │ │ │ └── invocationparams │ │ │ │ └── CredentialManagerInvocationParams.aidl │ │ │ ├── facs │ │ │ └── cache │ │ │ │ ├── FacsCacheCallOptions.aidl │ │ │ │ ├── ForceSettingsCacheRefreshResult.aidl │ │ │ │ ├── GetActivityControlsSettingsResult.aidl │ │ │ │ ├── ReadDeviceLevelSettingsResult.aidl │ │ │ │ ├── UpdateActivityControlsSettingsResult.aidl │ │ │ │ └── internal │ │ │ │ ├── IFacsCacheCallbacks.aidl │ │ │ │ └── IFacsCacheService.aidl │ │ │ ├── feedback │ │ │ ├── ErrorReport.aidl │ │ │ ├── FeedbackOptions.aidl │ │ │ ├── FileTeleporter.aidl │ │ │ ├── LogOptions.aidl │ │ │ ├── ThemeSettings.aidl │ │ │ └── internal │ │ │ │ ├── IFeedbackCallbacks.aidl │ │ │ │ └── IFeedbackService.aidl │ │ │ ├── gass │ │ │ └── internal │ │ │ │ ├── GassRequestParcel.aidl │ │ │ │ ├── GassResponseParcel.aidl │ │ │ │ └── IGassService.aidl │ │ │ ├── googlehelp │ │ │ ├── GoogleHelp.aidl │ │ │ ├── InProductHelp.aidl │ │ │ ├── SupportRequestHelp.aidl │ │ │ └── internal │ │ │ │ └── common │ │ │ │ ├── IGoogleHelpCallbacks.aidl │ │ │ │ └── IGoogleHelpService.aidl │ │ │ ├── http │ │ │ └── IGoogleHttpService.aidl │ │ │ ├── languageprofile │ │ │ ├── ClientLanguageSettings.aidl │ │ │ ├── LanguageFluency.aidl │ │ │ ├── LanguageFluencyParams.aidl │ │ │ ├── LanguagePreference.aidl │ │ │ ├── LanguagePreferenceParams.aidl │ │ │ └── internal │ │ │ │ ├── ILanguageProfileCallbacks.aidl │ │ │ │ └── ILanguageProfileService.aidl │ │ │ ├── measurement │ │ │ └── internal │ │ │ │ ├── AppMetadata.aidl │ │ │ │ ├── ConditionalUserPropertyParcel.aidl │ │ │ │ ├── EventParcel.aidl │ │ │ │ ├── IMeasurementService.aidl │ │ │ │ └── UserAttributeParcel.aidl │ │ │ ├── people │ │ │ └── internal │ │ │ │ ├── IPeopleCallbacks.aidl │ │ │ │ └── IPeopleService.aidl │ │ │ ├── phenotype │ │ │ ├── Configurations.aidl │ │ │ ├── DogfoodsToken.aidl │ │ │ ├── ExperimentTokens.aidl │ │ │ ├── Flag.aidl │ │ │ ├── FlagOverrides.aidl │ │ │ ├── RegistrationInfo.aidl │ │ │ └── internal │ │ │ │ ├── IPhenotypeCallbacks.aidl │ │ │ │ └── IPhenotypeService.aidl │ │ │ ├── plus │ │ │ └── internal │ │ │ │ └── IPlusOneButtonCreator.aidl │ │ │ ├── potokens │ │ │ ├── PoToken.aidl │ │ │ └── internal │ │ │ │ ├── IPoTokensService.aidl │ │ │ │ └── ITokenCallbacks.aidl │ │ │ ├── pseudonymous │ │ │ ├── PseudonymousIdToken.aidl │ │ │ └── internal │ │ │ │ ├── IPseudonymousIdCallbacks.aidl │ │ │ │ └── IPseudonymousIdService.aidl │ │ │ ├── reminders │ │ │ ├── AccountState.aidl │ │ │ ├── CreateReminderOptionsInternal.aidl │ │ │ ├── LoadRemindersOptions.aidl │ │ │ ├── ReindexDueDatesOptions.aidl │ │ │ ├── UpdateRecurrenceOptions.aidl │ │ │ ├── internal │ │ │ │ ├── IRemindersCallbacks.aidl │ │ │ │ ├── IRemindersListener.aidl │ │ │ │ └── IRemindersService.aidl │ │ │ └── model │ │ │ │ ├── CustomizedSnoozePresetEntity.aidl │ │ │ │ ├── TaskEntity.aidl │ │ │ │ └── TaskIdEntity.aidl │ │ │ ├── search │ │ │ ├── administration │ │ │ │ └── internal │ │ │ │ │ └── ISearchAdministrationService.aidl │ │ │ ├── corpora │ │ │ │ ├── ClearCorpusRequest.aidl │ │ │ │ ├── GetCorpusInfoRequest.aidl │ │ │ │ ├── GetCorpusStatusRequest.aidl │ │ │ │ ├── GetCorpusStatusResponse.aidl │ │ │ │ ├── RequestIndexingRequest.aidl │ │ │ │ ├── RequestIndexingResponse.aidl │ │ │ │ └── internal │ │ │ │ │ ├── ISearchCorporaCallbacks.aidl │ │ │ │ │ └── ISearchCorporaService.aidl │ │ │ ├── global │ │ │ │ ├── GetCurrentExperimentIdsRequest.aidl │ │ │ │ ├── GetCurrentExperimentIdsResponse.aidl │ │ │ │ ├── GetGlobalSearchSourcesRequest.aidl │ │ │ │ ├── GetGlobalSearchSourcesResponse.aidl │ │ │ │ ├── GetPendingExperimentIdsRequest.aidl │ │ │ │ ├── GetPendingExperimentIdsResponse.aidl │ │ │ │ ├── SetExperimentIdsRequest.aidl │ │ │ │ ├── SetExperimentIdsResponse.aidl │ │ │ │ ├── SetIncludeInGlobalSearchRequest.aidl │ │ │ │ ├── SetIncludeInGlobalSearchResponse.aidl │ │ │ │ └── internal │ │ │ │ │ ├── IGlobalSearchAdminCallbacks.aidl │ │ │ │ │ └── IGlobalSearchAdminService.aidl │ │ │ └── queries │ │ │ │ ├── QueryRequest.aidl │ │ │ │ ├── QueryResponse.aidl │ │ │ │ └── internal │ │ │ │ ├── ISearchQueriesCallbacks.aidl │ │ │ │ └── ISearchQueriesService.aidl │ │ │ ├── semanticlocation │ │ │ ├── SemanticLocationEventRequest.aidl │ │ │ └── internal │ │ │ │ ├── ISemanticLocationService.aidl │ │ │ │ └── SemanticLocationParameters.aidl │ │ │ ├── usagereporting │ │ │ ├── UsageReportingOptInOptions.aidl │ │ │ └── internal │ │ │ │ ├── IUsageReportingCallbacks.aidl │ │ │ │ ├── IUsageReportingOptInOptionsChangedListener.aidl │ │ │ │ └── IUsageReportingService.aidl │ │ │ └── wallet │ │ │ ├── IsReadyToPayRequest.aidl │ │ │ └── internal │ │ │ ├── IOwService.aidl │ │ │ └── IWalletServiceCallbacks.aidl │ │ └── firebase │ │ └── database │ │ └── connection │ │ └── idl │ │ ├── CompoundHashParcelable.aidl │ │ ├── ConnectionConfig.aidl │ │ ├── IConnectionAuthTokenProvider.aidl │ │ ├── IGetTokenCallback.aidl │ │ ├── IListenHashProvider.aidl │ │ ├── IPersistentConnection.aidl │ │ ├── IPersistentConnectionDelegate.aidl │ │ ├── IRequestResultCallback.aidl │ │ └── RangeParcelable.aidl │ └── java │ └── com │ └── google │ ├── android │ └── gms │ │ ├── appdatasearch │ │ ├── CorpusStatus.java │ │ ├── PIMEUpdate.java │ │ ├── PIMEUpdateResponse.java │ │ ├── QuerySpecification.java │ │ ├── RequestIndexingSpecification.java │ │ ├── SearchResults.java │ │ ├── SuggestSpecification.java │ │ ├── SuggestionResults.java │ │ └── UsageInfo.java │ │ ├── audit │ │ └── LogAuditRecordsRequest.java │ │ ├── auth │ │ └── firstparty │ │ │ ├── dataservice │ │ │ ├── AccountRecoveryGuidanceRequest.java │ │ │ ├── AccountRemovalRequest.java │ │ │ ├── ConfirmCredentialsRequest.java │ │ │ ├── TokenRequest.java │ │ │ └── TokenResponse.java │ │ │ ├── delegate │ │ │ └── ConfirmCredentialsWorkflowRequest.java │ │ │ ├── proximity │ │ │ └── data │ │ │ │ └── Permit.java │ │ │ └── shared │ │ │ ├── AccountCredentials.java │ │ │ ├── AppDescription.java │ │ │ └── CaptchaSolution.java │ │ ├── common │ │ └── data │ │ │ └── BitmapTeleporter.java │ │ ├── credential │ │ └── manager │ │ │ └── invocationparams │ │ │ ├── CallerInfo.java │ │ │ ├── CredentialManagerAccount.java │ │ │ └── CredentialManagerInvocationParams.java │ │ ├── facs │ │ └── cache │ │ │ ├── FacsCacheCallOptions.java │ │ │ ├── ForceSettingsCacheRefreshResult.java │ │ │ ├── GetActivityControlsSettingsResult.java │ │ │ ├── ReadDeviceLevelSettingsResult.java │ │ │ └── UpdateActivityControlsSettingsResult.java │ │ ├── feedback │ │ ├── ErrorReport.java │ │ ├── FeedbackOptions.java │ │ ├── FileTeleporter.java │ │ ├── LogOptions.java │ │ └── ThemeSettings.java │ │ ├── gass │ │ └── internal │ │ │ ├── GassRequestParcel.java │ │ │ └── GassResponseParcel.java │ │ ├── googlehelp │ │ ├── FRDProductSpecificDataEntry.java │ │ ├── GoogleHelp.java │ │ ├── InProductHelp.java │ │ ├── ND4CSettings.java │ │ ├── OfflineSuggestion.java │ │ ├── SupportRequestHelp.java │ │ └── internal │ │ │ └── common │ │ │ ├── OverflowMenuItem.java │ │ │ └── TogglingData.java │ │ ├── identity │ │ ├── accounts │ │ │ └── api │ │ │ │ └── AccountData.java │ │ └── intents │ │ │ └── model │ │ │ ├── CountrySpecification.java │ │ │ └── UserAddress.java │ │ ├── languageprofile │ │ ├── ClientLanguageSettings.java │ │ ├── LanguageFluency.java │ │ ├── LanguageFluencyParams.java │ │ ├── LanguagePreference.java │ │ └── LanguagePreferenceParams.java │ │ ├── measurement │ │ └── internal │ │ │ ├── AppMetadata.java │ │ │ ├── ConditionalUserPropertyParcel.java │ │ │ ├── EventParams.java │ │ │ ├── EventParcel.java │ │ │ └── UserAttributeParcel.java │ │ ├── people │ │ ├── internal │ │ │ └── ParcelableLoadImageOptions.java │ │ └── model │ │ │ ├── AccountMetadata.java │ │ │ └── AvatarReference.java │ │ ├── phenotype │ │ ├── Configurations.java │ │ ├── DogfoodsToken.java │ │ ├── FlagOverrides.java │ │ └── RegistrationInfo.java │ │ ├── plus │ │ ├── internal │ │ │ ├── PlusCommonExtras.java │ │ │ ├── PlusSession.java │ │ │ └── model │ │ │ │ └── smart_profile │ │ │ │ ├── CardsRequest.java │ │ │ │ ├── CardsResponse.java │ │ │ │ ├── PeopleForProfilesRequest.java │ │ │ │ └── PeopleForProfilesResponse.java │ │ └── model │ │ │ └── posts │ │ │ ├── Comment.java │ │ │ ├── Post.java │ │ │ └── Settings.java │ │ ├── potokens │ │ └── PoToken.java │ │ ├── pseudonymous │ │ └── PseudonymousIdToken.java │ │ ├── reminders │ │ ├── AccountState.java │ │ ├── CreateReminderOptionsInternal.java │ │ ├── LoadRemindersOptions.java │ │ ├── ReindexDueDatesOptions.java │ │ ├── UpdateRecurrenceOptions.java │ │ └── model │ │ │ ├── CustomizedSnoozePresetEntity.java │ │ │ ├── TaskEntity.java │ │ │ └── TaskIdEntity.java │ │ ├── search │ │ ├── corpora │ │ │ ├── ClearCorpusRequest.java │ │ │ ├── GetCorpusInfoRequest.java │ │ │ ├── GetCorpusStatusRequest.java │ │ │ ├── GetCorpusStatusResponse.java │ │ │ ├── RequestIndexingRequest.java │ │ │ └── RequestIndexingResponse.java │ │ ├── global │ │ │ ├── GetCurrentExperimentIdsRequest.java │ │ │ ├── GetCurrentExperimentIdsResponse.java │ │ │ ├── GetGlobalSearchSourcesRequest.java │ │ │ ├── GetGlobalSearchSourcesResponse.java │ │ │ ├── GetPendingExperimentIdsRequest.java │ │ │ ├── GetPendingExperimentIdsResponse.java │ │ │ ├── SetExperimentIdsRequest.java │ │ │ ├── SetExperimentIdsResponse.java │ │ │ ├── SetIncludeInGlobalSearchRequest.java │ │ │ └── SetIncludeInGlobalSearchResponse.java │ │ └── queries │ │ │ ├── QueryRequest.java │ │ │ └── QueryResponse.java │ │ ├── semanticlocation │ │ ├── SemanticLocationEventRequest.java │ │ └── internal │ │ │ └── SemanticLocationParameters.java │ │ ├── usagereporting │ │ └── UsageReportingOptInOptions.java │ │ └── wallet │ │ ├── IsReadyToPayRequest.java │ │ ├── IsReadyToPayResponse.java │ │ └── WalletConstants.java │ └── firebase │ └── database │ └── connection │ └── idl │ ├── CompoundHashParcelable.java │ ├── ConnectionConfig.java │ └── RangeParcelable.java ├── play-services-appinvite ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── appinivite │ │ │ ├── AppInviteActivity.kt │ │ │ └── AppInviteService.kt │ │ └── proto │ │ └── datamixer.proto └── src │ └── main │ ├── AndroidManifest.xml │ └── aidl │ └── com │ └── google │ └── android │ └── gms │ └── appinvite │ └── internal │ ├── IAppInviteCallbacks.aidl │ └── IAppInviteService.aidl ├── play-services-appset ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── appset │ │ └── AppSetService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── appset │ │ ├── AppSetIdRequestParams.aidl │ │ ├── AppSetInfoParcel.aidl │ │ └── internal │ │ ├── IAppSetIdCallback.aidl │ │ └── IAppSetService.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── appset │ ├── AppSet.java │ ├── AppSetIdClient.java │ ├── AppSetIdInfo.java │ ├── AppSetIdRequestParams.java │ ├── AppSetInfoParcel.java │ └── package-info.java ├── play-services-auth-api-phone ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── auth │ │ │ └── phone │ │ │ ├── AskPermissionActivity.kt │ │ │ ├── SmsRetrieverCore.kt │ │ │ ├── SmsRetrieverRequest.kt │ │ │ ├── SmsRetrieverService.kt │ │ │ ├── UserConsentPromptActivity.kt │ │ │ └── constants.kt │ │ └── res │ │ ├── layout │ │ └── dialog_sms_user_consent.xml │ │ ├── values-ast │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ └── strings.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── auth │ │ └── api │ │ └── phone │ │ └── internal │ │ ├── IAutofillPermissionStateCallback.aidl │ │ ├── IOngoingSmsRequestCallback.aidl │ │ ├── ISmsRetrieverApiService.aidl │ │ └── ISmsRetrieverResultCallback.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── auth │ │ └── api │ │ └── phone │ │ ├── SmsCodeAutofillClient.java │ │ ├── SmsCodeBrowserClient.java │ │ ├── SmsCodeRetriever.java │ │ ├── SmsRetriever.java │ │ ├── SmsRetrieverApi.java │ │ ├── SmsRetrieverClient.java │ │ ├── SmsRetrieverStatusCodes.java │ │ └── package-info.java │ └── org │ └── microg │ └── gms │ └── auth │ └── api │ └── phone │ ├── SmsCodeAutofillClientImpl.java │ ├── SmsCodeBrowserClientImpl.java │ ├── SmsRetrieverApiClient.java │ ├── SmsRetrieverClientImpl.java │ ├── SmsRetrieverResultCallbackImpl.java │ └── StatusCallbackImpl.java ├── play-services-auth-base ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ ├── auth │ │ └── IAuthManagerService.aidl │ │ └── gms │ │ └── auth │ │ ├── AccountChangeEventsRequest.aidl │ │ ├── AccountChangeEventsResponse.aidl │ │ ├── GetAccountsRequest.aidl │ │ ├── GetHubTokenInternalResponse.aidl │ │ ├── GetHubTokenRequest.aidl │ │ ├── HasCapabilitiesRequest.aidl │ │ ├── account │ │ └── data │ │ │ ├── IBundleCallback.aidl │ │ │ ├── IGetAccountChangeEventsCallback.aidl │ │ │ ├── IGetAccountsCallback.aidl │ │ │ ├── IGetHubTokenCallback.aidl │ │ │ ├── IGetTokenWithDetailsCallback.aidl │ │ │ ├── IGoogleAuthService.aidl │ │ │ └── IHasCapabilitiesCallback.aidl │ │ ├── api │ │ ├── internal │ │ │ ├── IAuthCallbacks.aidl │ │ │ └── IAuthService.aidl │ │ └── proxy │ │ │ ├── ProxyRequest.aidl │ │ │ └── ProxyResponse.aidl │ │ └── firstparty │ │ └── dataservice │ │ ├── ClearTokenRequest.aidl │ │ └── DeviceManagementInfoResponse.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── auth │ ├── AccountChangeEvent.java │ ├── AccountChangeEventsRequest.java │ ├── AccountChangeEventsResponse.java │ ├── GetAccountsRequest.java │ ├── GetHubTokenInternalResponse.java │ ├── GetHubTokenRequest.java │ ├── HasCapabilitiesRequest.java │ ├── TokenData.java │ ├── api │ └── proxy │ │ ├── ProxyRequest.java │ │ └── ProxyResponse.java │ ├── firstparty │ └── dataservice │ │ ├── ClearTokenRequest.java │ │ └── DeviceManagementInfoResponse.java │ └── package-info.java ├── play-services-auth ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── auth │ │ ├── account │ │ └── data │ │ │ ├── IAccountDataService.aidl │ │ │ └── IDeviceManagementInfoCallback.aidl │ │ └── api │ │ ├── credentials │ │ ├── Credential.aidl │ │ ├── CredentialRequest.aidl │ │ └── internal │ │ │ ├── DeleteRequest.aidl │ │ │ ├── GeneratePasswordRequest.aidl │ │ │ ├── ICredentialsCallbacks.aidl │ │ │ ├── ICredentialsService.aidl │ │ │ └── SaveRequest.aidl │ │ ├── identity │ │ ├── BeginSignInRequest.aidl │ │ ├── BeginSignInResult.aidl │ │ ├── GetPhoneNumberHintIntentRequest.aidl │ │ ├── GetSignInIntentRequest.aidl │ │ ├── SignInCredential.aidl │ │ └── internal │ │ │ ├── IBeginSignInCallback.aidl │ │ │ ├── IGetPhoneNumberHintIntentCallback.aidl │ │ │ ├── IGetSignInIntentCallback.aidl │ │ │ └── ISignInService.aidl │ │ └── signin │ │ └── internal │ │ ├── ISignInCallbacks.aidl │ │ └── ISignInService.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── auth │ └── api │ ├── credentials │ ├── Credential.java │ ├── CredentialPickerConfig.java │ ├── CredentialRequest.java │ ├── HintRequest.java │ ├── IdToken.java │ ├── IdentityProviders.java │ ├── internal │ │ ├── DeleteRequest.java │ │ ├── GeneratePasswordRequest.java │ │ └── SaveRequest.java │ └── package-info.java │ ├── identity │ ├── BeginSignInRequest.java │ ├── BeginSignInResult.java │ ├── CredentialSavingClient.java │ ├── CredentialSavingOptions.java │ ├── GetPhoneNumberHintIntentRequest.java │ ├── GetSignInIntentRequest.java │ ├── Identity.java │ ├── SaveAccountLinkingTokenRequest.java │ ├── SaveAccountLinkingTokenResult.java │ ├── SavePasswordRequest.java │ ├── SavePasswordResult.java │ ├── SignInClient.java │ ├── SignInCredential.java │ ├── SignInOptions.java │ └── SignInPassword.java │ └── signin │ ├── SignInAccount.java │ └── internal │ └── SignInConfiguration.java ├── play-services-base ├── build.gradle ├── core │ ├── build.gradle │ ├── package │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ ├── moduleinstall │ │ │ └── ModuleInstallService.kt │ │ │ └── profile │ │ │ └── ProfileProvider.kt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ ├── AbstractGmsServiceBroker.java │ │ │ ├── BaseService.java │ │ │ ├── DummyService.java │ │ │ └── common │ │ │ ├── DeviceConfiguration.java │ │ │ ├── DeviceIdentifier.java │ │ │ ├── ForegroundServiceContext.java │ │ │ ├── ForegroundServiceInfo.java │ │ │ ├── HttpFormClient.java │ │ │ ├── MultiListenerProxy.java │ │ │ ├── NonCancelToken.java │ │ │ ├── PackageUtils.java │ │ │ ├── PhoneInfo.java │ │ │ ├── RemoteListenerProxy.java │ │ │ └── Utils.java │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ ├── common │ │ │ ├── KnownGooglePackages.kt │ │ │ └── PackageSpoofUtils.kt │ │ │ ├── profile │ │ │ ├── Build.kt │ │ │ └── ProfileManager.kt │ │ │ ├── settings │ │ │ ├── MetaDataPreferences.kt │ │ │ ├── SettingsContract.kt │ │ │ └── SettingsProvider.kt │ │ │ ├── ui │ │ │ ├── AppHeadingPreference.kt │ │ │ ├── AppIconPreference.kt │ │ │ ├── AppPreference.kt │ │ │ ├── Constants.kt │ │ │ ├── SwitchBarPreference.kt │ │ │ ├── TextPreference.kt │ │ │ ├── Utils.kt │ │ │ └── settings │ │ │ │ └── SettingsProvider.kt │ │ │ └── utils │ │ │ ├── BinderUtils.kt │ │ │ ├── ExtendedPackageInfo.kt │ │ │ ├── FileXmlResourceParser.kt │ │ │ ├── IntentCacheManager.kt │ │ │ ├── PackageManagerUtils.kt │ │ │ ├── PackageManagerWrapper.kt │ │ │ └── SingleInstanceUtil.kt │ │ └── res │ │ ├── drawable │ │ ├── ic_background_notify.xml │ │ ├── ic_expand_apps.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_open.xml │ │ ├── ic_radio.xml │ │ ├── ic_radio_checked.xml │ │ └── ic_radio_unchecked.xml │ │ ├── layout │ │ ├── list_no_item.xml │ │ ├── preference_app_heading.xml │ │ ├── preference_category_no_label.xml │ │ ├── preference_progress_bar.xml │ │ └── preference_switch_bar.xml │ │ ├── values-ast │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── strings.xml │ │ └── themes.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ ├── auth │ │ └── api │ │ │ └── signin │ │ │ ├── GoogleSignInAccount.aidl │ │ │ └── GoogleSignInOptions.aidl │ │ ├── common │ │ ├── api │ │ │ └── internal │ │ │ │ └── IStatusCallback.aidl │ │ ├── data │ │ │ └── DataHolder.aidl │ │ ├── images │ │ │ └── WebImage.aidl │ │ ├── internal │ │ │ ├── AuthAccountRequest.aidl │ │ │ ├── IResolveAccountCallbacks.aidl │ │ │ ├── ISignInButtonCreator.aidl │ │ │ └── ResolveAccountRequest.aidl │ │ ├── moduleinstall │ │ │ ├── ModuleAvailabilityResponse.aidl │ │ │ ├── ModuleInstallIntentResponse.aidl │ │ │ ├── ModuleInstallResponse.aidl │ │ │ ├── ModuleInstallStatusUpdate.aidl │ │ │ └── internal │ │ │ │ ├── ApiFeatureRequest.aidl │ │ │ │ ├── IModuleInstallCallbacks.aidl │ │ │ │ ├── IModuleInstallService.aidl │ │ │ │ └── IModuleInstallStatusListener.aidl │ │ └── server │ │ │ └── FavaDiagnosticsEntity.aidl │ │ └── signin │ │ └── internal │ │ ├── AuthAccountResult.aidl │ │ ├── CheckServerAuthResult.aidl │ │ ├── ISignInCallbacks.aidl │ │ ├── ISignInService.aidl │ │ ├── RecordConsentByConsentResultRequest.aidl │ │ ├── RecordConsentByConsentResultResponse.aidl │ │ ├── RecordConsentRequest.aidl │ │ ├── SignInRequest.aidl │ │ └── SignInResponse.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ ├── auth │ │ └── api │ │ │ └── signin │ │ │ ├── GoogleSignInAccount.java │ │ │ ├── GoogleSignInOptions.java │ │ │ ├── GoogleSignInOptionsExtension.java │ │ │ └── internal │ │ │ └── GoogleSignInOptionsExtensionParcelable.java │ │ ├── common │ │ ├── GoogleApiAvailability.java │ │ ├── GooglePlayServicesClient.java │ │ ├── GooglePlayServicesUtil.java │ │ ├── api │ │ │ ├── AccountInfo.java │ │ │ ├── Api.java │ │ │ ├── GoogleApi.java │ │ │ ├── GoogleApiActivity.java │ │ │ ├── GoogleApiClient.java │ │ │ ├── HasApiKey.java │ │ │ ├── OptionalModuleApi.java │ │ │ ├── PendingResult.java │ │ │ └── internal │ │ │ │ └── ApiKey.java │ │ ├── data │ │ │ ├── AbstractDataBuffer.java │ │ │ ├── DataBuffer.java │ │ │ ├── DataBufferIterator.java │ │ │ ├── DataBufferRef.java │ │ │ ├── DataHolder.java │ │ │ ├── Freezable.java │ │ │ ├── SingleRefDataBufferIterator.java │ │ │ └── package-info.java │ │ ├── images │ │ │ ├── ImageManager.java │ │ │ ├── Size.java │ │ │ ├── WebImage.java │ │ │ └── package-info.java │ │ ├── internal │ │ │ ├── AuthAccountRequest.java │ │ │ ├── ClientIdentity.java │ │ │ ├── ResolveAccountRequest.java │ │ │ └── ResolveAccountResponse.java │ │ ├── moduleinstall │ │ │ ├── InstallStatusListener.java │ │ │ ├── ModuleAvailabilityResponse.java │ │ │ ├── ModuleInstall.java │ │ │ ├── ModuleInstallClient.java │ │ │ ├── ModuleInstallIntentResponse.java │ │ │ ├── ModuleInstallRequest.java │ │ │ ├── ModuleInstallResponse.java │ │ │ ├── ModuleInstallStatusCodes.java │ │ │ ├── ModuleInstallStatusUpdate.java │ │ │ └── internal │ │ │ │ └── ApiFeatureRequest.java │ │ └── server │ │ │ └── FavaDiagnosticsEntity.java │ │ ├── dynamic │ │ └── DeferredLifecycleHelper.java │ │ └── signin │ │ ├── SignIn.java │ │ ├── SignInClient.java │ │ ├── SignInOptions.java │ │ └── internal │ │ ├── AuthAccountResult.java │ │ ├── CheckServerAuthResult.java │ │ ├── RecordConsentByConsentResultRequest.java │ │ ├── RecordConsentByConsentResultResponse.java │ │ ├── RecordConsentRequest.java │ │ ├── SignInRequest.java │ │ └── SignInResponse.java │ └── org │ └── microg │ └── gms │ ├── common │ ├── DummyApiClient.java │ ├── ForwardConnectionCallbacks.java │ ├── ForwardConnectionFailedListener.java │ ├── GmsClient.java │ ├── GmsConnector.java │ ├── MultiConnectionKeeper.java │ └── api │ │ ├── AbstractPendingResult.java │ │ ├── AbstractPlayServicesClient.java │ │ ├── ApiClientBuilder.java │ │ ├── ApiClientSettings.java │ │ ├── ConnectionCallbacks.java │ │ ├── GoogleApiClientImpl.java │ │ ├── GoogleApiManager.java │ │ ├── InstantPendingResult.java │ │ ├── OnConnectionFailedListener.java │ │ ├── PendingGoogleApiCall.java │ │ ├── ResultCallbackHandler.java │ │ ├── ReturningGoogleApiCall.java │ │ └── VoidReturningGoogleApiCall.java │ └── signin │ ├── SignInClientImpl.java │ └── Storage.java ├── play-services-basement ├── build.gradle ├── consumer-rules.pro ├── ktx │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── dynamic │ │ └── ObjectWrapper.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ ├── common │ │ ├── ConnectionResult.aidl │ │ ├── GoogleCertificatesLookupQuery.aidl │ │ ├── GoogleCertificatesLookupResponse.aidl │ │ ├── GoogleCertificatesQuery.aidl │ │ ├── api │ │ │ └── Status.aidl │ │ └── internal │ │ │ ├── ConnectionInfo.aidl │ │ │ ├── GetServiceRequest.aidl │ │ │ ├── IAccountAccessor.aidl │ │ │ ├── ICancelToken.aidl │ │ │ ├── ICertData.aidl │ │ │ ├── IGmsCallbacks.aidl │ │ │ ├── IGmsServiceBroker.aidl │ │ │ ├── IGoogleCertificatesApi.aidl │ │ │ └── ValidateAccountRequest.aidl │ │ ├── dynamic │ │ └── IObjectWrapper.aidl │ │ └── dynamite │ │ └── IDynamiteLoader.aidl │ ├── java │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ ├── actions │ │ │ └── package-info.java │ │ │ ├── common │ │ │ ├── ConnectionResult.java │ │ │ ├── Feature.java │ │ │ ├── GoogleCertificatesLookupQuery.java │ │ │ ├── GoogleCertificatesLookupResponse.java │ │ │ ├── GoogleCertificatesQuery.java │ │ │ ├── GooglePlayServicesNotAvailableException.java │ │ │ ├── GooglePlayServicesRepairableException.java │ │ │ ├── Scopes.java │ │ │ ├── UserRecoverableException.java │ │ │ ├── api │ │ │ │ ├── ApiException.java │ │ │ │ ├── CommonStatusCodes.java │ │ │ │ ├── Releasable.java │ │ │ │ ├── ResolvableApiException.java │ │ │ │ ├── Response.java │ │ │ │ ├── Result.java │ │ │ │ ├── ResultCallback.java │ │ │ │ ├── Scope.java │ │ │ │ └── Status.java │ │ │ ├── internal │ │ │ │ ├── BinderWrapper.java │ │ │ │ ├── CertData.java │ │ │ │ ├── ConnectionInfo.java │ │ │ │ ├── GetServiceRequest.java │ │ │ │ ├── ValidateAccountRequest.java │ │ │ │ └── safeparcel │ │ │ │ │ ├── AbstractSafeParcelable.java │ │ │ │ │ ├── SafeParcelReader.java │ │ │ │ │ ├── SafeParcelWriter.java │ │ │ │ │ ├── SafeParcelable.java │ │ │ │ │ ├── SafeParcelableCreatorAndWriter.java │ │ │ │ │ └── SafeParcelableSerializer.java │ │ │ └── package-info.java │ │ │ ├── dynamic │ │ │ ├── LifecycleDelegate.java │ │ │ ├── ObjectWrapper.java │ │ │ └── OnDelegateCreatedListener.java │ │ │ ├── dynamite │ │ │ └── DynamiteModule.java │ │ │ └── security │ │ │ └── ProviderInstaller.java │ └── org │ │ └── microg │ │ ├── gms │ │ ├── auth │ │ │ └── AuthConstants.java │ │ ├── common │ │ │ ├── Constants.java │ │ │ ├── GmsService.java │ │ │ ├── Hide.java │ │ │ └── PublicApi.java │ │ ├── gcm │ │ │ └── GcmConstants.java │ │ └── utils │ │ │ ├── ToStringHelper.java │ │ │ └── WorkSourceUtil.java │ │ └── safeparcel │ │ ├── AutoSafeParcelable.java │ │ ├── ReflectedSafeParcelableCreatorAndWriter.java │ │ ├── SafeParcelReflectionUtil.java │ │ └── SafeParceled.java │ └── res │ └── values │ └── version.xml ├── play-services-cast-framework ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── cast │ │ └── framework │ │ └── internal │ │ ├── CastContextImpl.java │ │ ├── CastDynamiteModuleImpl.java │ │ ├── CastSessionImpl.java │ │ ├── DiscoveryManagerImpl.java │ │ ├── MediaRouterCallbackImpl.java │ │ ├── SessionImpl.java │ │ └── SessionManagerImpl.java └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── cast │ │ └── framework │ │ ├── CastOptions.aidl │ │ ├── IAppVisibilityListener.aidl │ │ ├── ICastConnectionController.aidl │ │ ├── ICastContext.aidl │ │ ├── ICastSession.aidl │ │ ├── ICastStateListener.aidl │ │ ├── IDiscoveryManager.aidl │ │ ├── IDiscoveryManagerListener.aidl │ │ ├── IReconnectionService.aidl │ │ ├── ISession.aidl │ │ ├── ISessionManager.aidl │ │ ├── ISessionManagerListener.aidl │ │ ├── ISessionProvider.aidl │ │ ├── ISessionProxy.aidl │ │ ├── internal │ │ ├── ICastDynamiteModule.aidl │ │ ├── IMediaRouter.aidl │ │ └── IMediaRouterCallback.aidl │ │ └── media │ │ ├── CastMediaOptions.aidl │ │ ├── IImagePicker.aidl │ │ ├── IMediaNotificationService.aidl │ │ ├── INotificationActionsProvider.aidl │ │ ├── NotificationOptions.aidl │ │ └── internal │ │ ├── IFetchBitmapTask.aidl │ │ └── IFetchBitmapTaskProgressPublisher.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── cast │ │ └── framework │ │ ├── CastButtonFactory.java │ │ ├── CastContext.java │ │ ├── CastOptions.java │ │ ├── CastSession.java │ │ ├── CastState.java │ │ ├── DiscoveryManager.java │ │ ├── ModuleUnavailableException.java │ │ ├── OptionsProvider.java │ │ ├── ReconnectionService.java │ │ ├── Session.java │ │ ├── SessionManager.java │ │ ├── SessionProvider.java │ │ └── media │ │ ├── CastMediaOptions.java │ │ ├── MediaIntentReceiver.java │ │ ├── MediaNotificationService.java │ │ └── NotificationOptions.java │ └── org │ └── microg │ └── gms │ └── cast │ ├── CastDynamiteModule.java │ ├── CastSessionProvider.java │ └── ISessionProviderImpl.java ├── play-services-cast ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── cast │ │ │ └── media │ │ │ └── CastMediaRouteProviderService.java │ │ └── org │ │ └── microg │ │ └── gms │ │ └── cast │ │ ├── CastDeviceControllerImpl.java │ │ ├── CastDeviceControllerService.java │ │ ├── CastMediaRouteController.java │ │ └── CastMediaRouteProvider.java └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── cast │ │ ├── ApplicationMetadata.aidl │ │ ├── ApplicationStatus.aidl │ │ ├── CastDeviceStatus.aidl │ │ ├── JoinOptions.aidl │ │ ├── LaunchOptions.aidl │ │ ├── RequestItem.aidl │ │ └── internal │ │ ├── IBundleCallback.aidl │ │ ├── ICastDeviceController.aidl │ │ ├── ICastDeviceControllerListener.aidl │ │ └── ICastService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── cast │ │ ├── ApplicationMetadata.java │ │ ├── ApplicationStatus.java │ │ ├── Cast.java │ │ ├── CastDevice.java │ │ ├── CastDeviceStatus.java │ │ ├── CastMediaControlIntent.java │ │ ├── CastPresentation.java │ │ ├── CastRemoteDisplay.java │ │ ├── CastRemoteDisplayApi.java │ │ ├── CastRemoteDisplayLocalService.java │ │ ├── CastStatusCodes.java │ │ ├── CredentialsData.java │ │ ├── JoinOptions.java │ │ ├── LaunchOptions.java │ │ ├── RequestItem.java │ │ └── package-info.java │ └── org │ └── microg │ └── gms │ └── cast │ ├── CastApiClientBuilder.java │ ├── CastApiImpl.java │ ├── CastClientImpl.java │ ├── CastRemoteDisplayApiClientBuilder.java │ └── CastRemoteDisplayApiImpl.java ├── play-services-chimera-core ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── android │ │ └── chimera │ │ ├── InstanceProvider.java │ │ ├── IntentService.java │ │ └── Service.java │ └── kotlin │ └── org │ └── microg │ └── gms │ └── chimera │ ├── ServiceLoader.kt │ ├── ServiceProxy.kt │ └── StaticServiceLoader.kt ├── play-services-clearcut ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ ├── clearcut │ │ ├── LogEventParcelable.aidl │ │ └── internal │ │ │ ├── IClearcutLoggerCallbacks.aidl │ │ │ ├── IClearcutLoggerService.aidl │ │ │ └── PlayLoggerContext.aidl │ │ └── playlog │ │ └── internal │ │ ├── IPlayLogService.aidl │ │ └── LogEvent.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ ├── clearcut │ ├── LogEventParcelable.java │ └── internal │ │ ├── LogVerifierResultParcelable.java │ │ └── PlayLoggerContext.java │ └── playlog │ └── internal │ └── LogEvent.java ├── play-services-conscrypt-provider-core ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── common │ └── security │ └── ProviderInstallerImpl.java ├── play-services-core-proto ├── build.gradle └── src │ └── main │ └── proto │ ├── appcert.proto │ ├── auth.proto │ ├── checkin.proto │ ├── mcs.proto │ └── potoken.proto ├── play-services-core ├── build.gradle ├── microg-ui-tools │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── microg │ │ │ └── tools │ │ │ ├── selfcheck │ │ │ ├── PermissionCheckGroup.java │ │ │ └── SelfCheckGroup.java │ │ │ └── ui │ │ │ ├── AbstractAboutFragment.java │ │ │ ├── AbstractDashboardActivity.java │ │ │ ├── AbstractSelfCheckFragment.java │ │ │ ├── AbstractSettingsActivity.java │ │ │ ├── AbstractSettingsFragment.java │ │ │ ├── Condition.java │ │ │ ├── DialogPreference.java │ │ │ ├── LongTextPreference.java │ │ │ ├── RadioButtonPreference.java │ │ │ ├── ResourceSettingsFragment.java │ │ │ ├── SwitchBar.java │ │ │ ├── SwitchBarResourceSettingsFragment.java │ │ │ └── ToggleSwitch.java │ │ └── res │ │ ├── drawable-v21 │ │ └── switchbar_background.xml │ │ ├── drawable │ │ ├── empty.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more.xml │ │ ├── self_check.xml │ │ └── switchbar_background.xml │ │ ├── layout-v14 │ │ └── preference_category_dashboard.xml │ │ ├── layout-v21 │ │ └── preference_material.xml │ │ ├── layout │ │ ├── about_root.xml │ │ ├── app_bar.xml │ │ ├── condition_card.xml │ │ ├── dashboard_activity.xml │ │ ├── preference_widget_radiobutton.xml │ │ ├── self_check.xml │ │ ├── self_check_entry.xml │ │ ├── self_check_group.xml │ │ ├── settings_activity.xml │ │ ├── switch_bar.xml │ │ └── toolbar.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml ├── multidex-keep.pro ├── proguard-rules.pro └── src │ ├── huawei │ └── AndroidManifest.xml │ ├── huaweilh │ └── AndroidManifest.xml │ └── main │ ├── AndroidManifest.xml │ ├── java │ ├── com │ │ └── google │ │ │ ├── android │ │ │ └── gms │ │ │ │ ├── analytics │ │ │ │ └── service │ │ │ │ │ └── AnalyticsService.java │ │ │ │ ├── auth │ │ │ │ ├── GetToken.java │ │ │ │ └── TokenActivity.java │ │ │ │ ├── chimera │ │ │ │ ├── DynamiteModuleInitializer.java │ │ │ │ └── container │ │ │ │ │ ├── DynamiteContext.java │ │ │ │ │ ├── DynamiteLoaderImpl.java │ │ │ │ │ ├── DynamiteModuleInfo.java │ │ │ │ │ └── FilteredClassLoader.java │ │ │ │ ├── common │ │ │ │ └── ui │ │ │ │ │ └── SignInButtonCreatorImpl.java │ │ │ │ ├── dynamite │ │ │ │ └── descriptors │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── firebase_database │ │ │ │ │ └── ModuleDescriptor.java │ │ │ │ │ ├── googlecertificates │ │ │ │ │ └── ModuleDescriptor.java │ │ │ │ │ └── measurement │ │ │ │ │ └── dynamite │ │ │ │ │ └── ModuleDescriptor.java │ │ │ │ ├── gcm │ │ │ │ └── http │ │ │ │ │ └── GoogleHttpService.java │ │ │ │ ├── plus │ │ │ │ └── plusone │ │ │ │ │ └── PlusOneButtonCreatorImpl.java │ │ │ │ ├── recovery │ │ │ │ └── RecoveryService.java │ │ │ │ ├── semanticlocation │ │ │ │ └── SemanticLocationService.kt │ │ │ │ └── wallet │ │ │ │ └── dynamite │ │ │ │ └── WalletDynamiteCreatorImpl.java │ │ │ └── firebase │ │ │ └── database │ │ │ └── connection │ │ │ └── idl │ │ │ └── IPersistentConnectionImpl.java │ └── org │ │ └── microg │ │ ├── gms │ │ ├── ads │ │ │ └── GService.java │ │ ├── auth │ │ │ ├── AccountContentProvider.java │ │ │ ├── AskPermissionActivity.java │ │ │ ├── AuthManager.java │ │ │ ├── AuthManagerServiceImpl.java │ │ │ ├── AuthRequest.java │ │ │ ├── AuthResponse.java │ │ │ ├── login │ │ │ │ ├── AssistantActivity.java │ │ │ │ └── LoginActivity.java │ │ │ └── loginservice │ │ │ │ ├── AccountAuthenticator.java │ │ │ │ └── GoogleLoginService.java │ │ ├── car │ │ │ └── CarService.java │ │ ├── checkin │ │ │ ├── CheckinClient.java │ │ │ ├── CheckinManager.java │ │ │ ├── CheckinService.java │ │ │ └── TriggerReceiver.java │ │ ├── feeds │ │ │ └── SubscribedFeedsProvider.java │ │ ├── gcm │ │ │ ├── GcmDatabase.java │ │ │ ├── GcmLegacyData.java │ │ │ ├── McsConstants.java │ │ │ ├── McsInputStream.java │ │ │ ├── McsOutputStream.java │ │ │ ├── McsService.java │ │ │ ├── PushRegisterManager.java │ │ │ ├── RegisterRequest.java │ │ │ ├── RegisterResponse.java │ │ │ ├── SendReceiver.java │ │ │ ├── TriggerReceiver.java │ │ │ └── UnregisterReceiver.java │ │ ├── gservices │ │ │ ├── DatabaseHelper.java │ │ │ ├── GServices.java │ │ │ └── GServicesProvider.java │ │ ├── icing │ │ │ ├── AppDataSearchImpl.java │ │ │ ├── GlobalSearchAdminImpl.java │ │ │ ├── IndexService.java │ │ │ ├── LightweightAppDataSearchImpl.java │ │ │ ├── LightweightIndexService.java │ │ │ ├── SearchCorporaImpl.java │ │ │ └── SearchQueriesImpl.java │ │ ├── location │ │ │ └── LocationConstants.java │ │ ├── mdm │ │ │ └── NetworkQualityService.java │ │ ├── people │ │ │ ├── ContactSyncService.java │ │ │ ├── DatabaseHelper.java │ │ │ ├── PeopleManager.java │ │ │ ├── PeopleService.java │ │ │ └── PeopleServiceImpl.java │ │ ├── phenotype │ │ │ └── ConfigurationProvider.java │ │ ├── plus │ │ │ └── PlusOneButtonImpl.java │ │ ├── reminders │ │ │ ├── RemindersService.java │ │ │ └── RemindersServiceImpl.java │ │ ├── settings │ │ │ └── GoogleSettingsProvider.java │ │ ├── ui │ │ │ ├── AboutFragment.java │ │ │ ├── AskPushPermission.java │ │ │ ├── Conditions.java │ │ │ ├── GoogleMoreFragment.java │ │ │ ├── MainSettingsActivity.java │ │ │ ├── SafetyNetAdvancedFragment.java │ │ │ ├── SelfCheckFragment.java │ │ │ └── SettingsDashboardActivity.java │ │ └── wallet │ │ │ ├── OwServiceImpl.java │ │ │ └── PaymentService.java │ │ └── tools │ │ ├── AccountPickerActivity.java │ │ └── selfcheck │ │ ├── InstalledPackagesChecks.java │ │ ├── RomSpoofSignatureChecks.java │ │ └── SystemChecks.java │ ├── kotlin │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ ├── ads │ │ │ ├── AdActivity.kt │ │ │ └── omid │ │ │ │ ├── AdSession.kt │ │ │ │ └── DynamiteOmid.kt │ │ │ ├── common │ │ │ └── GoogleCertificatesImpl.kt │ │ │ ├── feedback │ │ │ └── FeedbackActivity.kt │ │ │ └── measurement │ │ │ └── internal │ │ │ └── AppMeasurementDynamiteService.kt │ └── org │ │ └── microg │ │ └── gms │ │ ├── accountsettings │ │ └── ui │ │ │ ├── LoaderActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── WebViewHelper.kt │ │ │ └── extensions.kt │ │ ├── audit │ │ └── AuditService.kt │ │ ├── auth │ │ ├── AuthPrefs.kt │ │ ├── account │ │ │ └── data │ │ │ │ ├── AccountDataService.kt │ │ │ │ └── GoogleAuthService.kt │ │ ├── appcert │ │ │ ├── AppCertManager.kt │ │ │ └── AppCertService.kt │ │ ├── consent │ │ │ └── ConsentSignInActivity.kt │ │ ├── credentials │ │ │ ├── CredentialPickerActivity.kt │ │ │ ├── CredentialsService.kt │ │ │ └── identity │ │ │ │ └── IdentitySignInService.kt │ │ ├── login │ │ │ ├── DroidGuardHandler.kt │ │ │ └── FidoHandler.kt │ │ ├── proxy │ │ │ └── AuthProxyService.kt │ │ └── signin │ │ │ ├── AuthSignInActivity.kt │ │ │ ├── AuthSignInService.kt │ │ │ ├── SignInConfigurationService.kt │ │ │ └── extensions.kt │ │ ├── backup │ │ └── BackupSettingsActivity.kt │ │ ├── checkin │ │ ├── CheckinPreferences.kt │ │ ├── LastCheckinInfo.kt │ │ └── ServiceInfo.kt │ │ ├── chimera │ │ └── ServiceProvider.kt │ │ ├── credential │ │ └── CredentialManagerService.kt │ │ ├── feedback │ │ └── FeedbackService.kt │ │ ├── fonts │ │ └── FontsProvider.kt │ │ ├── gass │ │ └── GassService.kt │ │ ├── gcm │ │ ├── GcmPrefs.kt │ │ ├── PushRegisterService.kt │ │ └── ServiceInfo.kt │ │ ├── googlehelp │ │ ├── GoogleHelpService.kt │ │ └── ui │ │ │ └── GoogleHelpRedirectActivity.kt │ │ ├── languageprofile │ │ └── LanguageProfileService.kt │ │ ├── measurement │ │ └── MeasurementService.kt │ │ ├── phenotype │ │ └── PhenotypeService.kt │ │ ├── potokens │ │ ├── PoTokenConstants.kt │ │ ├── PoTokenHelper.kt │ │ ├── PoTokenPreferences.kt │ │ └── PoTokensService.kt │ │ ├── provision │ │ └── ProvisionService.kt │ │ ├── pseudonymous │ │ └── PseudonymousIdService.kt │ │ ├── signin │ │ └── SignInService.kt │ │ ├── udc │ │ └── FacsCacheService.kt │ │ ├── ui │ │ ├── AccountsFragment.kt │ │ ├── DeviceRegistrationFragment.kt │ │ ├── PushNotificationAdvancedFragment.kt │ │ ├── PushNotificationAllAppsFragment.kt │ │ ├── PushNotificationAppFragment.kt │ │ ├── PushNotificationFragment.kt │ │ ├── SafetyNetAdvancedFragment.kt │ │ ├── SafetyNetAllAppsFragment.kt │ │ ├── SafetyNetAppFragment.kt │ │ ├── SafetyNetFragment.kt │ │ ├── SafetyNetRecentAttestationPreferencesFragment.kt │ │ ├── SafetyNetRecentDialogFragment.kt │ │ ├── SafetyNetRecentRecaptchaEnterprisePreferencesFragment.kt │ │ ├── SafetyNetRecentRecaptchaPreferencesFragment.kt │ │ ├── SafetyNetUtils.kt │ │ └── SettingsFragment.kt │ │ ├── usagereporting │ │ └── UsageReportingService.kt │ │ └── vending │ │ └── VendingPreferences.kt │ └── res │ ├── color │ ├── material_switch_bar_text_color.xml │ └── preference_material_switch_color.xml │ ├── drawable-anydpi-v21 │ └── microg_light_color_24.xml │ ├── drawable-hdpi │ ├── ic_gamepad.png │ ├── ic_generic_man.png │ └── ic_magnify.png │ ├── drawable-mdpi │ ├── ic_gamepad.png │ ├── ic_generic_man.png │ └── ic_magnify.png │ ├── drawable-v21 │ ├── ic_app_foreground.xml │ ├── ic_app_foreground_mono.xml │ ├── ic_app_settings_foreground.xml │ ├── ic_app_settings_foreground_mono.xml │ └── ic_app_settings_system.xml │ ├── drawable-v23 │ ├── material_switch_bar_background.xml │ └── material_switch_bar_background_disabled.xml │ ├── drawable-xhdpi │ ├── ic_gamepad.png │ ├── ic_generic_man.png │ ├── ic_magnify.png │ ├── proprietary_auth_gls_ic_google_minitab_selected.png │ ├── proprietary_auth_gls_ic_google_selected.png │ └── proprietary_auth_ic_scope_icon_default.png │ ├── drawable-xxhdpi │ ├── ic_gamepad.png │ ├── ic_generic_man.png │ └── ic_magnify.png │ ├── drawable-xxxhdpi │ └── ic_magnify.png │ ├── drawable │ ├── circle_shape_background.xml │ ├── dots_horizontal.xml │ ├── ic_add.xml │ ├── ic_add_account.xml │ ├── ic_add_account_alt.xml │ ├── ic_certificate.xml │ ├── ic_check_list.xml │ ├── ic_circle_check.xml │ ├── ic_circle_error.xml │ ├── ic_circle_pending.xml │ ├── ic_circle_warn.xml │ ├── ic_cloud_bell.xml │ ├── ic_device_login.xml │ ├── ic_manage_accounts.xml │ ├── ic_map_marker.xml │ ├── ic_plusone_medium.xml │ ├── ic_plusone_small.xml │ ├── ic_plusone_standard.xml │ ├── ic_plusone_tall.xml │ └── ic_shop.xml │ ├── layout │ ├── activity_consent_sign_in.xml │ ├── ask_gcm.xml │ ├── ask_permission.xml │ ├── ask_permission_list_entry.xml │ ├── games_info.xml │ ├── login_assistant.xml │ ├── login_assistant_loading.xml │ ├── pick_place.xml │ ├── preference_material_switch.xml │ ├── preference_material_switch_bar.xml │ ├── safety_net_advanced_fragment.xml │ ├── safety_net_recent_card.xml │ ├── safety_net_recent_fragment.xml │ ├── safety_net_recents_list_fragment.xml │ ├── settings_root_activity.xml │ ├── signin_account_row.xml │ ├── signin_confirm.xml │ └── signin_picker.xml │ ├── menu │ └── pick_place.xml │ ├── mipmap-anydpi-v26 │ ├── ic_app.xml │ └── ic_app_settings.xml │ ├── mipmap-hdpi │ ├── ic_app.png │ └── ic_app_settings.png │ ├── mipmap-mdpi │ ├── ic_app.png │ └── ic_app_settings.png │ ├── mipmap-xhdpi │ ├── ic_app.png │ └── ic_app_settings.png │ ├── mipmap-xxhdpi │ ├── ic_app.png │ └── ic_app_settings.png │ ├── mipmap-xxxhdpi │ ├── ic_app.png │ └── ic_app_settings.png │ ├── navigation │ └── nav_settings.xml │ ├── values-ast │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-be │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-de │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-eo │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-es │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-fil │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-fr │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-it │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-ja │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-nb-rNO │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-night-v31 │ └── themes.xml │ ├── values-night-v8 │ └── themes.xml │ ├── values-nl │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-pl │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-pt-rBR │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-ro │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-ru │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-sr │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-sv │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-uk │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-v23 │ └── themes.xml │ ├── values-v26 │ └── ic_app_background.xml │ ├── values-v27 │ └── themes.xml │ ├── values-v31 │ └── themes.xml │ ├── values-vi │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-zh-rCN │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values-zh-rTW │ ├── permissions.xml │ ├── plurals.xml │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── bools.xml │ ├── colors.xml │ ├── dimens.xml │ ├── permissions.xml │ ├── plurals.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── authenticator.xml │ ├── contact_syncadapter.xml │ ├── network_security_config.xml │ ├── preferences_accounts.xml │ ├── preferences_auth.xml │ ├── preferences_device_registration.xml │ ├── preferences_gcm_advanced.xml │ ├── preferences_google_more.xml │ ├── preferences_push_notifications.xml │ ├── preferences_push_notifications_all_apps.xml │ ├── preferences_push_notifications_app.xml │ ├── preferences_safetynet.xml │ ├── preferences_safetynet_advanced.xml │ ├── preferences_safetynet_all_apps.xml │ ├── preferences_safetynet_app.xml │ ├── preferences_snet_recent_attestation.xml │ ├── preferences_snet_recent_recaptcha.xml │ ├── preferences_start.xml │ ├── preferences_vending.xml │ ├── profile_bullhead_27.xml │ ├── profile_lineage_falcon_25.xml │ ├── profile_sdk_gphone64_arm64_33.xml │ └── profile_sdk_gphone64_x86_64_33.xml ├── play-services-cronet └── core │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── dynamite │ └── descriptors │ └── com │ └── google │ └── android │ └── gms │ └── cronet_dynamite │ └── ModuleDescriptor.java ├── play-services-drive ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── drive │ │ └── internal │ │ ├── AddEventListenerRequest.aidl │ │ ├── AddPermissionRequest.aidl │ │ ├── AuthorizeAccessRequest.aidl │ │ ├── CancelPendingActionsRequest.aidl │ │ ├── ChangeResourceParentsRequest.aidl │ │ ├── ChangeSequenceNumber.aidl │ │ ├── ChangesResponse.aidl │ │ ├── CheckResourceIdsExistRequest.aidl │ │ ├── CloseContentsAndUpdateMetadataRequest.aidl │ │ ├── CloseContentsRequest.aidl │ │ ├── ContentsResponse.aidl │ │ ├── ControlProgressRequest.aidl │ │ ├── CreateContentsRequest.aidl │ │ ├── CreateFileIntentSenderRequest.aidl │ │ ├── CreateFileRequest.aidl │ │ ├── CreateFolderRequest.aidl │ │ ├── DeleteResourceRequest.aidl │ │ ├── DeviceUsagePreferenceResponse.aidl │ │ ├── DisconnectRequest.aidl │ │ ├── DownloadProgressResponse.aidl │ │ ├── DriveIdResponse.aidl │ │ ├── DrivePreferencesResponse.aidl │ │ ├── DriveServiceResponse.aidl │ │ ├── EventResponse.aidl │ │ ├── FetchThumbnailRequest.aidl │ │ ├── FetchThumbnailResponse.aidl │ │ ├── GetChangesRequest.aidl │ │ ├── GetDriveIdFromUniqueIdRequest.aidl │ │ ├── GetMetadataRequest.aidl │ │ ├── GetPermissionsRequest.aidl │ │ ├── GetPermissionsResponse.aidl │ │ ├── IDriveService.aidl │ │ ├── IDriveServiceCallbacks.aidl │ │ ├── IEventCallback.aidl │ │ ├── IRealtimeService.aidl │ │ ├── ListEntriesResponse.aidl │ │ ├── ListParentsRequest.aidl │ │ ├── ListParentsResponse.aidl │ │ ├── LoadRealtimeRequest.aidl │ │ ├── LoadRealtimeResponse.aidl │ │ ├── MetadataResponse.aidl │ │ ├── OpenContentsRequest.aidl │ │ ├── OpenFileIntentSenderRequest.aidl │ │ ├── RealtimeDocumentSyncRequest.aidl │ │ ├── RemoveEventListenerRequest.aidl │ │ ├── RemovePermissionRequest.aidl │ │ ├── ResourceIdSetResponse.aidl │ │ ├── SetDrivePreferencesRequest.aidl │ │ ├── SetFileUploadPreferencesRequest.aidl │ │ ├── SetResourceParentsRequest.aidl │ │ ├── StartStreamSession.aidl │ │ ├── StreamContentsRequest.aidl │ │ ├── StringListResponse.aidl │ │ ├── SyncMoreResponse.aidl │ │ ├── TrashResourceRequest.aidl │ │ ├── UnsubscribeResourceRequest.aidl │ │ ├── UntrashResourceRequest.aidl │ │ ├── UpdateMetadataRequest.aidl │ │ └── UpdatePermissionRequest.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── drive │ ├── internal │ ├── AddEventListenerRequest.java │ ├── AddPermissionRequest.java │ ├── AuthorizeAccessRequest.java │ ├── CancelPendingActionsRequest.java │ ├── ChangeResourceParentsRequest.java │ ├── ChangeSequenceNumber.java │ ├── ChangesResponse.java │ ├── CheckResourceIdsExistRequest.java │ ├── CloseContentsAndUpdateMetadataRequest.java │ ├── CloseContentsRequest.java │ ├── ContentsResponse.java │ ├── ControlProgressRequest.java │ ├── CreateContentsRequest.java │ ├── CreateFileIntentSenderRequest.java │ ├── CreateFileRequest.java │ ├── CreateFolderRequest.java │ ├── DeleteResourceRequest.java │ ├── DeviceUsagePreferenceResponse.java │ ├── DisconnectRequest.java │ ├── DownloadProgressResponse.java │ ├── DriveIdResponse.java │ ├── DrivePreferencesResponse.java │ ├── DriveServiceResponse.java │ ├── EventResponse.java │ ├── FetchThumbnailRequest.java │ ├── FetchThumbnailResponse.java │ ├── GetChangesRequest.java │ ├── GetDriveIdFromUniqueIdRequest.java │ ├── GetMetadataRequest.java │ ├── GetPermissionsRequest.java │ ├── GetPermissionsResponse.java │ ├── ListEntriesResponse.java │ ├── ListParentsRequest.java │ ├── ListParentsResponse.java │ ├── LoadRealtimeRequest.java │ ├── LoadRealtimeResponse.java │ ├── MetadataResponse.java │ ├── OpenContentsRequest.java │ ├── OpenFileIntentSenderRequest.java │ ├── RealtimeDocumentSyncRequest.java │ ├── RemoveEventListenerRequest.java │ ├── RemovePermissionRequest.java │ ├── ResourceIdSetResponse.java │ ├── SetDrivePreferencesRequest.java │ ├── SetFileUploadPreferencesRequest.java │ ├── SetResourceParentsRequest.java │ ├── StartStreamSession.java │ ├── StreamContentsRequest.java │ ├── StringListResponse.java │ ├── SyncMoreResponse.java │ ├── TrashResourceRequest.java │ ├── UnsubscribeResourceRequest.java │ ├── UntrashResourceRequest.java │ ├── UpdateMetadataRequest.java │ └── UpdatePermissionRequest.java │ └── metadata │ └── internal │ └── MetadataBundle.java ├── play-services-droidguard ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── com │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ ├── droidguard │ │ │ │ └── DroidGuardChimeraService.java │ │ │ │ └── framework │ │ │ │ └── tracing │ │ │ │ └── wrapper │ │ │ │ └── TracingIntentService.java │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── droidguard │ │ │ ├── GuardCallback.java │ │ │ └── MediaDrmLock.java │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── droidguard │ │ │ └── core │ │ │ ├── BytesException.kt │ │ │ ├── DgDatabaseHelper.kt │ │ │ ├── DgpDatabaseHelper.kt │ │ │ ├── DroidGuardHandleImpl.kt │ │ │ ├── DroidGuardPreferences.kt │ │ │ ├── DroidGuardResultCreator.kt │ │ │ ├── DroidGuardService.kt │ │ │ ├── DroidGuardServiceBroker.kt │ │ │ ├── DroidGuardServiceImpl.kt │ │ │ ├── FallbackCreator.kt │ │ │ ├── HandleProxy.kt │ │ │ ├── HandleProxyFactory.kt │ │ │ ├── SignatureVerifier.kt │ │ │ ├── VersionUtil.kt │ │ │ └── ui │ │ │ ├── ContainedEditTextPreference.kt │ │ │ └── DroidGuardPreferencesFragment.kt │ │ ├── proto │ │ └── droidguard.proto │ │ └── res │ │ ├── layout │ │ ├── preference_edit_widget.xml │ │ └── preference_material_with_widget_below.xml │ │ ├── values-ast │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ └── strings.xml │ │ └── xml │ │ └── preferences_droidguard.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── droidguard │ │ └── internal │ │ ├── DroidGuardInitReply.aidl │ │ ├── DroidGuardResultsRequest.aidl │ │ ├── IDroidGuardCallbacks.aidl │ │ ├── IDroidGuardHandle.aidl │ │ └── IDroidGuardService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── droidguard │ │ ├── DroidGuard.java │ │ ├── DroidGuardClient.java │ │ ├── DroidGuardHandle.java │ │ └── internal │ │ ├── DroidGuardInitReply.java │ │ └── DroidGuardResultsRequest.java │ └── org │ └── microg │ └── gms │ └── droidguard │ ├── DroidGuardApiClient.java │ ├── DroidGuardClientImpl.java │ ├── DroidGuardHandleImpl.java │ └── Utils.java ├── play-services-fido ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── fido │ │ │ └── core │ │ │ ├── Database.kt │ │ │ ├── RequestHandling.kt │ │ │ ├── privileged │ │ │ └── Fido2PrivilegedService.kt │ │ │ ├── protocol │ │ │ ├── AndroidKeyAttestationObject.kt │ │ │ ├── AndroidSafetyNetAttestationObject.kt │ │ │ ├── AttestationObject.kt │ │ │ ├── AttestedCredentialData.kt │ │ │ ├── AuthenticatorData.kt │ │ │ ├── Cbor.kt │ │ │ ├── CoseKey.kt │ │ │ ├── CredentialId.kt │ │ │ ├── FidoU2fAttestationObject.kt │ │ │ ├── NoneAttestationObject.kt │ │ │ └── msgs │ │ │ │ ├── Apdu.kt │ │ │ │ ├── AuthenticatorGetAssertion.kt │ │ │ │ ├── AuthenticatorGetInfo.kt │ │ │ │ ├── AuthenticatorMakeCredential.kt │ │ │ │ ├── Ctap1Command.kt │ │ │ │ ├── Ctap2Command.kt │ │ │ │ ├── U2fAuthentication.kt │ │ │ │ └── U2fRegistration.kt │ │ │ ├── transport │ │ │ ├── CtapConnection.kt │ │ │ ├── Transport.kt │ │ │ ├── TransportHandler.kt │ │ │ ├── bluetooth │ │ │ │ └── BluetoothTransportHandler.kt │ │ │ ├── nfc │ │ │ │ ├── CtapNfcConnection.kt │ │ │ │ └── NfcTransportHandler.kt │ │ │ ├── screenlock │ │ │ │ ├── ScreenLockCredentialStore.kt │ │ │ │ └── ScreenLockTransportHandler.kt │ │ │ └── usb │ │ │ │ ├── UsbDevicePermissionManager.kt │ │ │ │ ├── UsbTransportHandler.kt │ │ │ │ ├── ctaphid │ │ │ │ ├── CtapHidConnection.kt │ │ │ │ ├── CtapHidMessage.kt │ │ │ │ ├── CtapHidPacket.kt │ │ │ │ ├── CtapHidRequest.kt │ │ │ │ └── CtapHidResponse.kt │ │ │ │ └── extensions.kt │ │ │ └── ui │ │ │ ├── AuthenticatorActivity.kt │ │ │ ├── AuthenticatorActivityFragment.kt │ │ │ ├── AuthenticatorActivityFragmentData.kt │ │ │ ├── NfcTransportFragment.kt │ │ │ ├── TransportSelectionFragment.kt │ │ │ ├── UsbTransportFragment.kt │ │ │ └── WelcomeFragment.kt │ │ └── res │ │ ├── drawable-anydpi-v23 │ │ ├── fido_nfc_wait_connect.xml │ │ ├── fido_usb_wait_confirm.xml │ │ └── fido_usb_wait_connect.xml │ │ ├── drawable │ │ ├── fido_nfc_wait_connect.xml │ │ ├── fido_usb_wait_confirm.xml │ │ ├── fido_usb_wait_connect.xml │ │ ├── ic_fido_bluetooth.xml │ │ ├── ic_fido_fingerprint.xml │ │ ├── ic_fido_key.xml │ │ ├── ic_fido_nfc.xml │ │ └── ic_fido_usb.xml │ │ ├── layout │ │ ├── fido_authenticator_activity.xml │ │ ├── fido_nfc_transport_fragment.xml │ │ ├── fido_transport_selection_fragment.xml │ │ ├── fido_usb_transport_fragment.xml │ │ └── fido_welcome_fragment.xml │ │ ├── navigation │ │ └── nav_fido_authenticator.xml │ │ ├── values-ast │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fil │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ └── strings.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── fido │ │ └── fido2 │ │ ├── api │ │ ├── IBooleanCallback.aidl │ │ ├── ICredentialListCallback.aidl │ │ └── common │ │ │ ├── BrowserPublicKeyCredentialCreationOptions.aidl │ │ │ ├── BrowserPublicKeyCredentialRequestOptions.aidl │ │ │ └── FidoCredentialDetails.aidl │ │ └── internal │ │ └── privileged │ │ ├── IFido2PrivilegedCallbacks.aidl │ │ └── IFido2PrivilegedService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── fido │ │ ├── Fido.java │ │ ├── common │ │ └── Transport.java │ │ ├── fido2 │ │ ├── Fido2ApiClient.java │ │ ├── Fido2PendingIntent.java │ │ ├── Fido2PrivilegedApiClient.java │ │ └── api │ │ │ └── common │ │ │ ├── Algorithm.java │ │ │ ├── Attachment.java │ │ │ ├── AttestationConveyancePreference.java │ │ │ ├── AuthenticationExtensions.java │ │ │ ├── AuthenticationExtensionsClientOutputs.java │ │ │ ├── AuthenticationExtensionsCredPropsOutputs.java │ │ │ ├── AuthenticatorAssertionResponse.java │ │ │ ├── AuthenticatorAttestationResponse.java │ │ │ ├── AuthenticatorErrorResponse.java │ │ │ ├── AuthenticatorResponse.java │ │ │ ├── AuthenticatorSelectionCriteria.java │ │ │ ├── BrowserPublicKeyCredentialCreationOptions.java │ │ │ ├── BrowserPublicKeyCredentialRequestOptions.java │ │ │ ├── BrowserRequestOptions.java │ │ │ ├── COSEAlgorithmIdentifier.java │ │ │ ├── CableAuthenticationData.java │ │ │ ├── CableAuthenticationExtension.java │ │ │ ├── DevicePublicKeyStringDef.java │ │ │ ├── EC2Algorithm.java │ │ │ ├── ErrorCode.java │ │ │ ├── FidoAppIdExtension.java │ │ │ ├── FidoCredentialDetails.java │ │ │ ├── KeyProtectionTypes.java │ │ │ ├── MatcherProtectionTypes.java │ │ │ ├── PublicKeyCredential.java │ │ │ ├── PublicKeyCredentialCreationOptions.java │ │ │ ├── PublicKeyCredentialDescriptor.java │ │ │ ├── PublicKeyCredentialParameters.java │ │ │ ├── PublicKeyCredentialRequestOptions.java │ │ │ ├── PublicKeyCredentialRpEntity.java │ │ │ ├── PublicKeyCredentialType.java │ │ │ ├── PublicKeyCredentialUserEntity.java │ │ │ ├── RSAAlgorithm.java │ │ │ ├── RequestOptions.java │ │ │ ├── ResidentKeyRequirement.java │ │ │ ├── TokenBinding.java │ │ │ ├── UserVerificationMethodExtension.java │ │ │ ├── UserVerificationMethods.java │ │ │ ├── UserVerificationRequirement.java │ │ │ ├── UvmEntries.java │ │ │ └── UvmEntry.java │ │ ├── sourcedevice │ │ ├── SourceDirectTransferClient.java │ │ ├── SourceDirectTransferResult.java │ │ └── SourceStartDirectTransferOptions.java │ │ └── u2f │ │ ├── U2fApiClient.java │ │ └── U2fPendingIntent.java │ └── org │ └── microg │ └── gms │ └── fido │ └── fido2 │ ├── Fido2PendingIntentImpl.java │ └── Fido2PrivilegedGmsClient.java ├── play-services-fitness ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── fitness │ │ ├── internal │ │ ├── IDailyTotalCallback.aidl │ │ ├── IDataPointChangesCallback.aidl │ │ ├── IDataReadCallback.aidl │ │ ├── IDebugInfoCallback.aidl │ │ ├── IFileUriCallback.aidl │ │ ├── IGoogleFitHistoryApi.aidl │ │ ├── IReadRawCallback.aidl │ │ ├── IReadStatsCallback.aidl │ │ ├── ISessionChangesCallback.aidl │ │ ├── IStatusCallback.aidl │ │ └── ISyncInfoCallback.aidl │ │ ├── request │ │ ├── DailyTotalRequest.aidl │ │ ├── DataDeleteRequest.aidl │ │ ├── DataInsertRequest.aidl │ │ ├── DataPointChangesRequest.aidl │ │ ├── DataReadRequest.aidl │ │ ├── DataReadResult.aidl │ │ ├── DataSourceQueryParams.aidl │ │ ├── DataUpdateListenerRegistrationRequest.aidl │ │ ├── DataUpdateListenerUnregistrationRequest.aidl │ │ ├── DataUpdateRequest.aidl │ │ ├── DebugInfoRequest.aidl │ │ ├── GetFileUriRequest.aidl │ │ ├── GetSyncInfoRequest.aidl │ │ ├── ReadRawRequest.aidl │ │ ├── ReadStatsRequest.aidl │ │ └── SessionChangesRequest.aidl │ │ └── result │ │ ├── DataSourceStatsResult.aidl │ │ └── DataStatsResult.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── fitness │ ├── data │ ├── AppInfo.java │ ├── Bucket.java │ ├── DataSet.java │ ├── DataSource.java │ ├── DataType.java │ ├── Device.java │ ├── Field.java │ └── Session.java │ ├── request │ ├── DailyTotalRequest.java │ ├── DataDeleteRequest.java │ ├── DataInsertRequest.java │ ├── DataPointChangesRequest.java │ ├── DataReadRequest.java │ ├── DataReadResult.java │ ├── DataSourceQueryParams.java │ ├── DataUpdateListenerRegistrationRequest.java │ ├── DataUpdateListenerUnregistrationRequest.java │ ├── DataUpdateRequest.java │ ├── DebugInfoRequest.java │ ├── GetFileUriRequest.java │ ├── GetSyncInfoRequest.java │ ├── ReadRawRequest.java │ ├── ReadStatsRequest.java │ └── SessionChangesRequest.java │ └── result │ ├── DataSourceStatsResult.java │ └── DataStatsResult.java ├── play-services-games ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── games │ │ ├── PlayerEntity.aidl │ │ ├── client │ │ ├── IPlayGamesCallbacks.aidl │ │ ├── IPlayGamesService.aidl │ │ └── PlayGamesConsistencyTokens.aidl │ │ ├── internal │ │ ├── IGamesCallbacks.aidl │ │ ├── IGamesClient.aidl │ │ ├── IGamesService.aidl │ │ └── connect │ │ │ ├── GamesSignInRequest.aidl │ │ │ ├── GamesSignInResponse.aidl │ │ │ ├── IGamesConnectCallbacks.aidl │ │ │ └── IGamesConnectService.aidl │ │ └── multiplayer │ │ └── realtime │ │ └── RealTimeMessage.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── games │ ├── AnnotatedData.java │ ├── CurrentPlayerInfo.java │ ├── CurrentPlayerInfoEntity.java │ ├── Player.java │ ├── PlayerBuffer.java │ ├── PlayerColumns.java │ ├── PlayerEntity.java │ ├── PlayerLevel.java │ ├── PlayerLevelInfo.java │ ├── PlayerRef.java │ ├── PlayerRelationshipInfo.java │ ├── PlayerRelationshipInfoEntity.java │ ├── Players.java │ ├── PlayersClient.java │ ├── achievement │ └── package-info.java │ ├── client │ └── PlayGamesConsistencyTokens.java │ ├── internal │ ├── connect │ │ ├── GamesSignInRequest.java │ │ ├── GamesSignInResponse.java │ │ └── SignInResolutionResult.java │ └── player │ │ ├── MostRecentGameInfo.java │ │ └── MostRecentGameInfoEntity.java │ ├── leaderboard │ └── package-info.java │ ├── multiplayer │ └── realtime │ │ └── RealTimeMessage.java │ ├── package-info.java │ └── snapshot │ └── package-info.java ├── play-services-gcm ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── gcm │ │ ├── GcmListenerService.java │ │ ├── GcmNetworkManager.java │ │ ├── GcmPubSub.java │ │ ├── GcmReceiver.java │ │ ├── GcmTaskService.java │ │ ├── GoogleCloudMessaging.java │ │ ├── OneoffTask.java │ │ ├── PendingCallback.java │ │ ├── PeriodicTask.java │ │ ├── Task.java │ │ └── TaskParams.java │ └── org │ └── microg │ └── gms │ └── gcm │ └── CloudMessagingRpc.java ├── play-services-gmscompliance ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── gmscompliance │ │ └── GmsDeviceComplianceService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── gmscompliance │ │ ├── GmsDeviceComplianceResponse.aidl │ │ ├── IGmsDeviceComplianceService.aidl │ │ └── IGmsDeviceComplianceServiceCallback.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── gmscompliance │ └── GmsDeviceComplianceResponse.java ├── play-services-iid ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── iid │ │ └── IMessengerCompat.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── iid │ │ ├── InstanceID.java │ │ ├── InstanceIDListenerService.java │ │ └── MessengerCompat.java │ └── org │ └── microg │ └── gms │ └── iid │ ├── InstanceIdRpc.java │ └── InstanceIdStore.java ├── play-services-location ├── build.gradle ├── core │ ├── base │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── location │ │ │ ├── LocationSettings.kt │ │ │ └── extensions.kt │ ├── build.gradle │ ├── provider │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── location │ │ │ ├── network │ │ │ ├── LocationCacheDatabase.kt │ │ │ ├── NetworkLocationRequest.kt │ │ │ ├── NetworkLocationService.kt │ │ │ ├── cell │ │ │ │ ├── CellDetails.kt │ │ │ │ ├── CellDetailsCallback.kt │ │ │ │ ├── CellDetailsSource.kt │ │ │ │ └── extensions.kt │ │ │ ├── extensions.kt │ │ │ ├── mozilla │ │ │ │ ├── CellTower.kt │ │ │ │ ├── Fallback.kt │ │ │ │ ├── GeolocateRequest.kt │ │ │ │ ├── GeolocateResponse.kt │ │ │ │ ├── MozillaLocationServiceClient.kt │ │ │ │ ├── RadioType.kt │ │ │ │ ├── ResponseError.kt │ │ │ │ ├── ResponseLocation.kt │ │ │ │ ├── ServiceException.kt │ │ │ │ ├── WifiAccessPoint.kt │ │ │ │ └── extensions.kt │ │ │ └── wifi │ │ │ │ ├── MovingWifiHelper.kt │ │ │ │ ├── WifiDetails.kt │ │ │ │ ├── WifiDetailsCallback.kt │ │ │ │ ├── WifiDetailsSource.kt │ │ │ │ ├── WifiManagerSource.kt │ │ │ │ ├── WifiScannerSource.kt │ │ │ │ └── extensions.kt │ │ │ └── provider │ │ │ ├── AbstractLocationProviderPreTiramisu.kt │ │ │ ├── GenericLocationProvider.kt │ │ │ ├── GeocodeProviderService.kt │ │ │ ├── NetworkLocationProviderPreTiramisu.kt │ │ │ ├── NetworkLocationProviderService.kt │ │ │ ├── OpenStreetMapNominatimGeocodeProvider.kt │ │ │ └── extensions.kt │ ├── src │ │ ├── huawei │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── org │ │ │ │ │ └── microg │ │ │ │ │ └── gms │ │ │ │ │ └── location │ │ │ │ │ └── manager │ │ │ │ │ └── AskPermissionNotificationActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-zh │ │ │ │ ├── permission_step_1.jpg │ │ │ │ └── permission_step_2.jpg │ │ │ │ ├── drawable │ │ │ │ ├── arrow.png │ │ │ │ ├── ic_app.png │ │ │ │ ├── ic_permission_notification.xml │ │ │ │ ├── permission_step_1.jpg │ │ │ │ └── permission_step_2.jpg │ │ │ │ ├── layout │ │ │ │ └── extended_permission_request.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── microg │ │ │ │ └── gms │ │ │ │ └── location │ │ │ │ ├── manager │ │ │ │ ├── AbstractLocationManagerInstance.kt │ │ │ │ ├── AskPermissionActivity.kt │ │ │ │ ├── DeviceOrientationManager.kt │ │ │ │ ├── LastLocationCapsule.kt │ │ │ │ ├── LocationAppsDatabase.kt │ │ │ │ ├── LocationManager.kt │ │ │ │ ├── LocationManagerInstance.kt │ │ │ │ ├── LocationManagerService.kt │ │ │ │ ├── LocationPostProcessor.kt │ │ │ │ ├── LocationRequestManager.kt │ │ │ │ └── extensions.kt │ │ │ │ ├── reporting │ │ │ │ ├── ReportingAndroidService.kt │ │ │ │ ├── ReportingServiceInstance.kt │ │ │ │ └── extensions.kt │ │ │ │ ├── settings │ │ │ │ ├── DetailedLocationSettingsStates.kt │ │ │ │ └── LocationSettingsCheckerActivity.kt │ │ │ │ └── ui │ │ │ │ ├── LocationAllAppsFragment.kt │ │ │ │ ├── LocationAppFragment.kt │ │ │ │ ├── LocationMapPreference.kt │ │ │ │ ├── LocationPreferencesFragment.kt │ │ │ │ └── extensions.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_gps.xml │ │ │ ├── layout │ │ │ ├── location_settings_dialog.xml │ │ │ ├── location_settings_dialog_item.xml │ │ │ └── preference_full_container.xml │ │ │ ├── navigation │ │ │ └── nav_location.xml │ │ │ ├── values-ast │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-eo │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fil │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-nb-rNO │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── preferences_location.xml │ │ │ ├── preferences_location_all_apps.xml │ │ │ └── preferences_location_app_details.xml │ └── system-api │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ ├── android │ │ ├── location │ │ │ ├── GeocoderParams.java │ │ │ ├── Geofence.java │ │ │ ├── Location.java │ │ │ ├── LocationManager.java │ │ │ └── LocationRequest.java │ │ └── net │ │ │ └── wifi │ │ │ └── WifiScanner.java │ │ └── com │ │ └── android │ │ ├── internal │ │ └── location │ │ │ ├── ProviderProperties.java │ │ │ └── ProviderRequest.java │ │ └── location │ │ └── provider │ │ ├── GeocodeProvider.java │ │ ├── LocationProvider.java │ │ ├── LocationProviderBase.java │ │ ├── LocationRequestUnbundled.java │ │ ├── ProviderPropertiesUnbundled.java │ │ └── ProviderRequestUnbundled.java └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── location │ │ ├── ActivityRecognitionRequest.aidl │ │ ├── ActivityRecognitionResult.aidl │ │ ├── ActivityTransitionRequest.aidl │ │ ├── CurrentLocationRequest.aidl │ │ ├── DeviceOrientation.aidl │ │ ├── GeofencingRequest.aidl │ │ ├── GestureRequest.aidl │ │ ├── IDeviceOrientationListener.aidl │ │ ├── ILocationCallback.aidl │ │ ├── ILocationListener.aidl │ │ ├── LastLocationRequest.aidl │ │ ├── LocationAvailability.aidl │ │ ├── LocationAvailabilityRequest.aidl │ │ ├── LocationRequest.aidl │ │ ├── LocationResult.aidl │ │ ├── LocationSettingsRequest.aidl │ │ ├── LocationSettingsResult.aidl │ │ ├── LocationStatus.aidl │ │ ├── SleepSegmentRequest.aidl │ │ ├── internal │ │ ├── DeviceOrientationRequestUpdateData.aidl │ │ ├── FusedLocationProviderResult.aidl │ │ ├── IFusedLocationProviderCallback.aidl │ │ ├── IGeofencerCallbacks.aidl │ │ ├── IGoogleLocationManagerService.aidl │ │ ├── ILocationAvailabilityStatusCallback.aidl │ │ ├── ILocationStatusCallback.aidl │ │ ├── ISettingsCallbacks.aidl │ │ ├── LocationReceiver.aidl │ │ ├── LocationRequestInternal.aidl │ │ ├── LocationRequestUpdateData.aidl │ │ └── ParcelableGeofence.aidl │ │ └── reporting │ │ ├── OptInRequest.aidl │ │ ├── ReportingState.aidl │ │ ├── SendDataRequest.aidl │ │ ├── UlrPrivateModeRequest.aidl │ │ ├── UploadRequest.aidl │ │ ├── UploadRequestResult.aidl │ │ └── internal │ │ └── IReportingService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── location │ │ ├── ActivityRecognition.java │ │ ├── ActivityRecognitionApi.java │ │ ├── ActivityRecognitionClient.java │ │ ├── ActivityRecognitionRequest.java │ │ ├── ActivityRecognitionResult.java │ │ ├── ActivityTransition.java │ │ ├── ActivityTransitionEvent.java │ │ ├── ActivityTransitionRequest.java │ │ ├── ActivityTransitionResult.java │ │ ├── CurrentLocationRequest.java │ │ ├── DetectedActivity.java │ │ ├── DeviceOrientation.java │ │ ├── DeviceOrientationRequest.java │ │ ├── FusedLocationProviderApi.java │ │ ├── FusedLocationProviderClient.java │ │ ├── Geofence.java │ │ ├── GeofenceStatusCodes.java │ │ ├── GeofencingApi.java │ │ ├── GeofencingClient.java │ │ ├── GeofencingEvent.java │ │ ├── GeofencingRequest.java │ │ ├── GestureRequest.java │ │ ├── Granularity.java │ │ ├── LastLocationRequest.java │ │ ├── LocationAvailability.java │ │ ├── LocationAvailabilityRequest.java │ │ ├── LocationCallback.java │ │ ├── LocationClient.java │ │ ├── LocationListener.java │ │ ├── LocationRequest.java │ │ ├── LocationResult.java │ │ ├── LocationServices.java │ │ ├── LocationSettingsConfiguration.java │ │ ├── LocationSettingsRequest.java │ │ ├── LocationSettingsResponse.java │ │ ├── LocationSettingsResult.java │ │ ├── LocationSettingsStates.java │ │ ├── LocationSettingsStatusCodes.java │ │ ├── LocationStatus.java │ │ ├── LocationStatusCodes.java │ │ ├── NetworkLocationStatus.java │ │ ├── Priority.java │ │ ├── SettingsApi.java │ │ ├── SettingsClient.java │ │ ├── SleepClassifyEvent.java │ │ ├── SleepSegmentEvent.java │ │ ├── SleepSegmentRequest.java │ │ ├── ThrottleBehavior.java │ │ ├── internal │ │ ├── ClientIdentity.java │ │ ├── DeviceOrientationRequestInternal.java │ │ ├── DeviceOrientationRequestUpdateData.java │ │ ├── FusedLocationProviderResult.java │ │ ├── LocationReceiver.java │ │ ├── LocationRequestInternal.java │ │ ├── LocationRequestUpdateData.java │ │ └── ParcelableGeofence.java │ │ └── reporting │ │ ├── OptInRequest.java │ │ ├── ReportingState.java │ │ ├── SendDataRequest.java │ │ ├── UlrPrivateModeRequest.java │ │ ├── UploadRequest.java │ │ └── UploadRequestResult.java │ └── org │ └── microg │ └── gms │ └── location │ ├── ActivityRecognitionApiClientBuilder.java │ ├── ActivityRecognitionApiImpl.java │ ├── ActivityRecognitionClientImpl.java │ ├── FusedLocationProviderApiImpl.java │ ├── FusedLocationProviderClientImpl.java │ ├── GeofencingApiImpl.java │ ├── GeofencingClientImpl.java │ ├── GoogleLocationManagerClient.java │ ├── GranularityUtil.java │ ├── LocationClientImpl.java │ ├── LocationServicesApiClientBuilder.java │ ├── PriorityUtil.java │ ├── SettingsApiImpl.java │ ├── SettingsClientImpl.java │ └── ThrottleBehaviorUtil.java ├── play-services-maps ├── build.gradle ├── core │ ├── hms │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── .gitignore │ │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ ├── dynamite │ │ │ │ └── descriptors │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ └── maps_dynamite │ │ │ │ │ └── ModuleDescriptor.java │ │ │ │ └── maps │ │ │ │ └── internal │ │ │ │ └── CreatorImpl.java │ │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── microg │ │ │ │ └── gms │ │ │ │ └── maps │ │ │ │ └── hms │ │ │ │ ├── CameraUpdateFactory.kt │ │ │ │ ├── GoogleMap.kt │ │ │ │ ├── MapFragment.kt │ │ │ │ ├── MapView.kt │ │ │ │ ├── Projection.kt │ │ │ │ ├── UiSettings.kt │ │ │ │ ├── model │ │ │ │ ├── BitmapDescriptorFactory.kt │ │ │ │ ├── Circle.kt │ │ │ │ ├── GroundOverlay.kt │ │ │ │ ├── Marker.kt │ │ │ │ ├── Polygon.kt │ │ │ │ ├── Polyline.kt │ │ │ │ └── TileOverlay.kt │ │ │ │ └── utils │ │ │ │ ├── MapContext.kt │ │ │ │ └── typeConverter.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-ldpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-mdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xhdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xxhdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── maps_default_marker.png │ │ │ └── values │ │ │ └── strings.xml │ ├── mapbox │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── Open Sans Regular,Arial Unicode MS Regular │ │ │ ├── Roboto Bold │ │ │ │ ├── 0-255.pbf │ │ │ │ ├── 1024-1279.pbf │ │ │ │ ├── 10240-10495.pbf │ │ │ │ ├── 10496-10751.pbf │ │ │ │ ├── 10752-11007.pbf │ │ │ │ ├── 11008-11263.pbf │ │ │ │ ├── 11264-11519.pbf │ │ │ │ ├── 11520-11775.pbf │ │ │ │ ├── 11776-12031.pbf │ │ │ │ ├── 12032-12287.pbf │ │ │ │ ├── 12288-12543.pbf │ │ │ │ ├── 12544-12799.pbf │ │ │ │ ├── 1280-1535.pbf │ │ │ │ ├── 12800-13055.pbf │ │ │ │ ├── 13056-13311.pbf │ │ │ │ ├── 13312-13567.pbf │ │ │ │ ├── 13568-13823.pbf │ │ │ │ ├── 13824-14079.pbf │ │ │ │ ├── 14080-14335.pbf │ │ │ │ ├── 14336-14591.pbf │ │ │ │ ├── 14592-14847.pbf │ │ │ │ ├── 14848-15103.pbf │ │ │ │ ├── 15104-15359.pbf │ │ │ │ ├── 1536-1791.pbf │ │ │ │ ├── 15360-15615.pbf │ │ │ │ ├── 15616-15871.pbf │ │ │ │ ├── 15872-16127.pbf │ │ │ │ ├── 16128-16383.pbf │ │ │ │ ├── 16384-16639.pbf │ │ │ │ ├── 16640-16895.pbf │ │ │ │ ├── 16896-17151.pbf │ │ │ │ ├── 17152-17407.pbf │ │ │ │ ├── 17408-17663.pbf │ │ │ │ ├── 17664-17919.pbf │ │ │ │ ├── 1792-2047.pbf │ │ │ │ ├── 17920-18175.pbf │ │ │ │ ├── 18176-18431.pbf │ │ │ │ ├── 18432-18687.pbf │ │ │ │ ├── 18688-18943.pbf │ │ │ │ ├── 18944-19199.pbf │ │ │ │ ├── 19200-19455.pbf │ │ │ │ ├── 19456-19711.pbf │ │ │ │ ├── 19712-19967.pbf │ │ │ │ ├── 19968-20223.pbf │ │ │ │ ├── 20224-20479.pbf │ │ │ │ ├── 2048-2303.pbf │ │ │ │ ├── 20480-20735.pbf │ │ │ │ ├── 20736-20991.pbf │ │ │ │ ├── 20992-21247.pbf │ │ │ │ ├── 21248-21503.pbf │ │ │ │ ├── 21504-21759.pbf │ │ │ │ ├── 21760-22015.pbf │ │ │ │ ├── 22016-22271.pbf │ │ │ │ ├── 22272-22527.pbf │ │ │ │ ├── 22528-22783.pbf │ │ │ │ ├── 22784-23039.pbf │ │ │ │ ├── 2304-2559.pbf │ │ │ │ ├── 23040-23295.pbf │ │ │ │ ├── 23296-23551.pbf │ │ │ │ ├── 23552-23807.pbf │ │ │ │ ├── 23808-24063.pbf │ │ │ │ ├── 24064-24319.pbf │ │ │ │ ├── 24320-24575.pbf │ │ │ │ ├── 24576-24831.pbf │ │ │ │ ├── 24832-25087.pbf │ │ │ │ ├── 25088-25343.pbf │ │ │ │ ├── 25344-25599.pbf │ │ │ │ ├── 256-511.pbf │ │ │ │ ├── 2560-2815.pbf │ │ │ │ ├── 25600-25855.pbf │ │ │ │ ├── 25856-26111.pbf │ │ │ │ ├── 26112-26367.pbf │ │ │ │ ├── 26368-26623.pbf │ │ │ │ ├── 26624-26879.pbf │ │ │ │ ├── 26880-27135.pbf │ │ │ │ ├── 27136-27391.pbf │ │ │ │ ├── 27392-27647.pbf │ │ │ │ ├── 27648-27903.pbf │ │ │ │ ├── 27904-28159.pbf │ │ │ │ ├── 2816-3071.pbf │ │ │ │ ├── 28160-28415.pbf │ │ │ │ ├── 28416-28671.pbf │ │ │ │ ├── 28672-28927.pbf │ │ │ │ ├── 28928-29183.pbf │ │ │ │ ├── 29184-29439.pbf │ │ │ │ ├── 29440-29695.pbf │ │ │ │ ├── 29696-29951.pbf │ │ │ │ ├── 29952-30207.pbf │ │ │ │ ├── 30208-30463.pbf │ │ │ │ ├── 30464-30719.pbf │ │ │ │ ├── 3072-3327.pbf │ │ │ │ ├── 30720-30975.pbf │ │ │ │ ├── 30976-31231.pbf │ │ │ │ ├── 31232-31487.pbf │ │ │ │ ├── 31488-31743.pbf │ │ │ │ ├── 31744-31999.pbf │ │ │ │ ├── 32000-32255.pbf │ │ │ │ ├── 32256-32511.pbf │ │ │ │ ├── 32512-32767.pbf │ │ │ │ ├── 32768-33023.pbf │ │ │ │ ├── 33024-33279.pbf │ │ │ │ ├── 3328-3583.pbf │ │ │ │ ├── 33280-33535.pbf │ │ │ │ ├── 33536-33791.pbf │ │ │ │ ├── 33792-34047.pbf │ │ │ │ ├── 34048-34303.pbf │ │ │ │ ├── 34304-34559.pbf │ │ │ │ ├── 34560-34815.pbf │ │ │ │ ├── 34816-35071.pbf │ │ │ │ ├── 35072-35327.pbf │ │ │ │ ├── 35328-35583.pbf │ │ │ │ ├── 35584-35839.pbf │ │ │ │ ├── 3584-3839.pbf │ │ │ │ ├── 35840-36095.pbf │ │ │ │ ├── 36096-36351.pbf │ │ │ │ ├── 36352-36607.pbf │ │ │ │ ├── 36608-36863.pbf │ │ │ │ ├── 36864-37119.pbf │ │ │ │ ├── 37120-37375.pbf │ │ │ │ ├── 37376-37631.pbf │ │ │ │ ├── 37632-37887.pbf │ │ │ │ ├── 37888-38143.pbf │ │ │ │ ├── 38144-38399.pbf │ │ │ │ ├── 3840-4095.pbf │ │ │ │ ├── 38400-38655.pbf │ │ │ │ ├── 38656-38911.pbf │ │ │ │ ├── 38912-39167.pbf │ │ │ │ ├── 39168-39423.pbf │ │ │ │ ├── 39424-39679.pbf │ │ │ │ ├── 39680-39935.pbf │ │ │ │ ├── 39936-40191.pbf │ │ │ │ ├── 40192-40447.pbf │ │ │ │ ├── 40448-40703.pbf │ │ │ │ ├── 40704-40959.pbf │ │ │ │ ├── 4096-4351.pbf │ │ │ │ ├── 40960-41215.pbf │ │ │ │ ├── 41216-41471.pbf │ │ │ │ ├── 41472-41727.pbf │ │ │ │ ├── 41728-41983.pbf │ │ │ │ ├── 41984-42239.pbf │ │ │ │ ├── 42240-42495.pbf │ │ │ │ ├── 42496-42751.pbf │ │ │ │ ├── 42752-43007.pbf │ │ │ │ ├── 43008-43263.pbf │ │ │ │ ├── 43264-43519.pbf │ │ │ │ ├── 4352-4607.pbf │ │ │ │ ├── 43520-43775.pbf │ │ │ │ ├── 43776-44031.pbf │ │ │ │ ├── 44032-44287.pbf │ │ │ │ ├── 44288-44543.pbf │ │ │ │ ├── 44544-44799.pbf │ │ │ │ ├── 44800-45055.pbf │ │ │ │ ├── 45056-45311.pbf │ │ │ │ ├── 45312-45567.pbf │ │ │ │ ├── 45568-45823.pbf │ │ │ │ ├── 45824-46079.pbf │ │ │ │ ├── 4608-4863.pbf │ │ │ │ ├── 46080-46335.pbf │ │ │ │ ├── 46336-46591.pbf │ │ │ │ ├── 46592-46847.pbf │ │ │ │ ├── 46848-47103.pbf │ │ │ │ ├── 47104-47359.pbf │ │ │ │ ├── 47360-47615.pbf │ │ │ │ ├── 47616-47871.pbf │ │ │ │ ├── 47872-48127.pbf │ │ │ │ ├── 48128-48383.pbf │ │ │ │ ├── 48384-48639.pbf │ │ │ │ ├── 4864-5119.pbf │ │ │ │ ├── 48640-48895.pbf │ │ │ │ ├── 48896-49151.pbf │ │ │ │ ├── 49152-49407.pbf │ │ │ │ ├── 49408-49663.pbf │ │ │ │ ├── 49664-49919.pbf │ │ │ │ ├── 49920-50175.pbf │ │ │ │ ├── 50176-50431.pbf │ │ │ │ ├── 50432-50687.pbf │ │ │ │ ├── 50688-50943.pbf │ │ │ │ ├── 50944-51199.pbf │ │ │ │ ├── 512-767.pbf │ │ │ │ ├── 5120-5375.pbf │ │ │ │ ├── 51200-51455.pbf │ │ │ │ ├── 51456-51711.pbf │ │ │ │ ├── 51712-51967.pbf │ │ │ │ ├── 51968-52223.pbf │ │ │ │ ├── 52224-52479.pbf │ │ │ │ ├── 52480-52735.pbf │ │ │ │ ├── 52736-52991.pbf │ │ │ │ ├── 52992-53247.pbf │ │ │ │ ├── 53248-53503.pbf │ │ │ │ ├── 53504-53759.pbf │ │ │ │ ├── 5376-5631.pbf │ │ │ │ ├── 53760-54015.pbf │ │ │ │ ├── 54016-54271.pbf │ │ │ │ ├── 54272-54527.pbf │ │ │ │ ├── 54528-54783.pbf │ │ │ │ ├── 54784-55039.pbf │ │ │ │ ├── 55040-55295.pbf │ │ │ │ ├── 55296-55551.pbf │ │ │ │ ├── 55552-55807.pbf │ │ │ │ ├── 55808-56063.pbf │ │ │ │ ├── 56064-56319.pbf │ │ │ │ ├── 5632-5887.pbf │ │ │ │ ├── 56320-56575.pbf │ │ │ │ ├── 56576-56831.pbf │ │ │ │ ├── 56832-57087.pbf │ │ │ │ ├── 57088-57343.pbf │ │ │ │ ├── 57344-57599.pbf │ │ │ │ ├── 57600-57855.pbf │ │ │ │ ├── 57856-58111.pbf │ │ │ │ ├── 58112-58367.pbf │ │ │ │ ├── 58368-58623.pbf │ │ │ │ ├── 58624-58879.pbf │ │ │ │ ├── 5888-6143.pbf │ │ │ │ ├── 58880-59135.pbf │ │ │ │ ├── 59136-59391.pbf │ │ │ │ ├── 59392-59647.pbf │ │ │ │ ├── 59648-59903.pbf │ │ │ │ ├── 59904-60159.pbf │ │ │ │ ├── 60160-60415.pbf │ │ │ │ ├── 60416-60671.pbf │ │ │ │ ├── 60672-60927.pbf │ │ │ │ ├── 60928-61183.pbf │ │ │ │ ├── 61184-61439.pbf │ │ │ │ ├── 6144-6399.pbf │ │ │ │ ├── 61440-61695.pbf │ │ │ │ ├── 61696-61951.pbf │ │ │ │ ├── 61952-62207.pbf │ │ │ │ ├── 62208-62463.pbf │ │ │ │ ├── 62464-62719.pbf │ │ │ │ ├── 62720-62975.pbf │ │ │ │ ├── 62976-63231.pbf │ │ │ │ ├── 63232-63487.pbf │ │ │ │ ├── 63488-63743.pbf │ │ │ │ ├── 63744-63999.pbf │ │ │ │ ├── 6400-6655.pbf │ │ │ │ ├── 64000-64255.pbf │ │ │ │ ├── 64256-64511.pbf │ │ │ │ ├── 64512-64767.pbf │ │ │ │ ├── 64768-65023.pbf │ │ │ │ ├── 65024-65279.pbf │ │ │ │ ├── 65280-65535.pbf │ │ │ │ ├── 6656-6911.pbf │ │ │ │ ├── 6912-7167.pbf │ │ │ │ ├── 7168-7423.pbf │ │ │ │ ├── 7424-7679.pbf │ │ │ │ ├── 768-1023.pbf │ │ │ │ ├── 7680-7935.pbf │ │ │ │ ├── 7936-8191.pbf │ │ │ │ ├── 8192-8447.pbf │ │ │ │ ├── 8448-8703.pbf │ │ │ │ ├── 8704-8959.pbf │ │ │ │ ├── 8960-9215.pbf │ │ │ │ ├── 9216-9471.pbf │ │ │ │ ├── 9472-9727.pbf │ │ │ │ ├── 9728-9983.pbf │ │ │ │ └── 9984-10239.pbf │ │ │ ├── Roboto Medium │ │ │ │ ├── 0-255.pbf │ │ │ │ ├── 1024-1279.pbf │ │ │ │ ├── 10240-10495.pbf │ │ │ │ ├── 10496-10751.pbf │ │ │ │ ├── 10752-11007.pbf │ │ │ │ ├── 11008-11263.pbf │ │ │ │ ├── 11264-11519.pbf │ │ │ │ ├── 11520-11775.pbf │ │ │ │ ├── 11776-12031.pbf │ │ │ │ ├── 12032-12287.pbf │ │ │ │ ├── 12288-12543.pbf │ │ │ │ ├── 12544-12799.pbf │ │ │ │ ├── 1280-1535.pbf │ │ │ │ ├── 12800-13055.pbf │ │ │ │ ├── 13056-13311.pbf │ │ │ │ ├── 13312-13567.pbf │ │ │ │ ├── 13568-13823.pbf │ │ │ │ ├── 13824-14079.pbf │ │ │ │ ├── 14080-14335.pbf │ │ │ │ ├── 14336-14591.pbf │ │ │ │ ├── 14592-14847.pbf │ │ │ │ ├── 14848-15103.pbf │ │ │ │ ├── 15104-15359.pbf │ │ │ │ ├── 1536-1791.pbf │ │ │ │ ├── 15360-15615.pbf │ │ │ │ ├── 15616-15871.pbf │ │ │ │ ├── 15872-16127.pbf │ │ │ │ ├── 16128-16383.pbf │ │ │ │ ├── 16384-16639.pbf │ │ │ │ ├── 16640-16895.pbf │ │ │ │ ├── 16896-17151.pbf │ │ │ │ ├── 17152-17407.pbf │ │ │ │ ├── 17408-17663.pbf │ │ │ │ ├── 17664-17919.pbf │ │ │ │ ├── 1792-2047.pbf │ │ │ │ ├── 17920-18175.pbf │ │ │ │ ├── 18176-18431.pbf │ │ │ │ ├── 18432-18687.pbf │ │ │ │ ├── 18688-18943.pbf │ │ │ │ ├── 18944-19199.pbf │ │ │ │ ├── 19200-19455.pbf │ │ │ │ ├── 19456-19711.pbf │ │ │ │ ├── 19712-19967.pbf │ │ │ │ ├── 19968-20223.pbf │ │ │ │ ├── 20224-20479.pbf │ │ │ │ ├── 2048-2303.pbf │ │ │ │ ├── 20480-20735.pbf │ │ │ │ ├── 20736-20991.pbf │ │ │ │ ├── 20992-21247.pbf │ │ │ │ ├── 21248-21503.pbf │ │ │ │ ├── 21504-21759.pbf │ │ │ │ ├── 21760-22015.pbf │ │ │ │ ├── 22016-22271.pbf │ │ │ │ ├── 22272-22527.pbf │ │ │ │ ├── 22528-22783.pbf │ │ │ │ ├── 22784-23039.pbf │ │ │ │ ├── 2304-2559.pbf │ │ │ │ ├── 23040-23295.pbf │ │ │ │ ├── 23296-23551.pbf │ │ │ │ ├── 23552-23807.pbf │ │ │ │ ├── 23808-24063.pbf │ │ │ │ ├── 24064-24319.pbf │ │ │ │ ├── 24320-24575.pbf │ │ │ │ ├── 24576-24831.pbf │ │ │ │ ├── 24832-25087.pbf │ │ │ │ ├── 25088-25343.pbf │ │ │ │ ├── 25344-25599.pbf │ │ │ │ ├── 256-511.pbf │ │ │ │ ├── 2560-2815.pbf │ │ │ │ ├── 25600-25855.pbf │ │ │ │ ├── 25856-26111.pbf │ │ │ │ ├── 26112-26367.pbf │ │ │ │ ├── 26368-26623.pbf │ │ │ │ ├── 26624-26879.pbf │ │ │ │ ├── 26880-27135.pbf │ │ │ │ ├── 27136-27391.pbf │ │ │ │ ├── 27392-27647.pbf │ │ │ │ ├── 27648-27903.pbf │ │ │ │ ├── 27904-28159.pbf │ │ │ │ ├── 2816-3071.pbf │ │ │ │ ├── 28160-28415.pbf │ │ │ │ ├── 28416-28671.pbf │ │ │ │ ├── 28672-28927.pbf │ │ │ │ ├── 28928-29183.pbf │ │ │ │ ├── 29184-29439.pbf │ │ │ │ ├── 29440-29695.pbf │ │ │ │ ├── 29696-29951.pbf │ │ │ │ ├── 29952-30207.pbf │ │ │ │ ├── 30208-30463.pbf │ │ │ │ ├── 30464-30719.pbf │ │ │ │ ├── 3072-3327.pbf │ │ │ │ ├── 30720-30975.pbf │ │ │ │ ├── 30976-31231.pbf │ │ │ │ ├── 31232-31487.pbf │ │ │ │ ├── 31488-31743.pbf │ │ │ │ ├── 31744-31999.pbf │ │ │ │ ├── 32000-32255.pbf │ │ │ │ ├── 32256-32511.pbf │ │ │ │ ├── 32512-32767.pbf │ │ │ │ ├── 32768-33023.pbf │ │ │ │ ├── 33024-33279.pbf │ │ │ │ ├── 3328-3583.pbf │ │ │ │ ├── 33280-33535.pbf │ │ │ │ ├── 33536-33791.pbf │ │ │ │ ├── 33792-34047.pbf │ │ │ │ ├── 34048-34303.pbf │ │ │ │ ├── 34304-34559.pbf │ │ │ │ ├── 34560-34815.pbf │ │ │ │ ├── 34816-35071.pbf │ │ │ │ ├── 35072-35327.pbf │ │ │ │ ├── 35328-35583.pbf │ │ │ │ ├── 35584-35839.pbf │ │ │ │ ├── 3584-3839.pbf │ │ │ │ ├── 35840-36095.pbf │ │ │ │ ├── 36096-36351.pbf │ │ │ │ ├── 36352-36607.pbf │ │ │ │ ├── 36608-36863.pbf │ │ │ │ ├── 36864-37119.pbf │ │ │ │ ├── 37120-37375.pbf │ │ │ │ ├── 37376-37631.pbf │ │ │ │ ├── 37632-37887.pbf │ │ │ │ ├── 37888-38143.pbf │ │ │ │ ├── 38144-38399.pbf │ │ │ │ ├── 3840-4095.pbf │ │ │ │ ├── 38400-38655.pbf │ │ │ │ ├── 38656-38911.pbf │ │ │ │ ├── 38912-39167.pbf │ │ │ │ ├── 39168-39423.pbf │ │ │ │ ├── 39424-39679.pbf │ │ │ │ ├── 39680-39935.pbf │ │ │ │ ├── 39936-40191.pbf │ │ │ │ ├── 40192-40447.pbf │ │ │ │ ├── 40448-40703.pbf │ │ │ │ ├── 40704-40959.pbf │ │ │ │ ├── 4096-4351.pbf │ │ │ │ ├── 40960-41215.pbf │ │ │ │ ├── 41216-41471.pbf │ │ │ │ ├── 41472-41727.pbf │ │ │ │ ├── 41728-41983.pbf │ │ │ │ ├── 41984-42239.pbf │ │ │ │ ├── 42240-42495.pbf │ │ │ │ ├── 42496-42751.pbf │ │ │ │ ├── 42752-43007.pbf │ │ │ │ ├── 43008-43263.pbf │ │ │ │ ├── 43264-43519.pbf │ │ │ │ ├── 4352-4607.pbf │ │ │ │ ├── 43520-43775.pbf │ │ │ │ ├── 43776-44031.pbf │ │ │ │ ├── 44032-44287.pbf │ │ │ │ ├── 44288-44543.pbf │ │ │ │ ├── 44544-44799.pbf │ │ │ │ ├── 44800-45055.pbf │ │ │ │ ├── 45056-45311.pbf │ │ │ │ ├── 45312-45567.pbf │ │ │ │ ├── 45568-45823.pbf │ │ │ │ ├── 45824-46079.pbf │ │ │ │ ├── 4608-4863.pbf │ │ │ │ ├── 46080-46335.pbf │ │ │ │ ├── 46336-46591.pbf │ │ │ │ ├── 46592-46847.pbf │ │ │ │ ├── 46848-47103.pbf │ │ │ │ ├── 47104-47359.pbf │ │ │ │ ├── 47360-47615.pbf │ │ │ │ ├── 47616-47871.pbf │ │ │ │ ├── 47872-48127.pbf │ │ │ │ ├── 48128-48383.pbf │ │ │ │ ├── 48384-48639.pbf │ │ │ │ ├── 4864-5119.pbf │ │ │ │ ├── 48640-48895.pbf │ │ │ │ ├── 48896-49151.pbf │ │ │ │ ├── 49152-49407.pbf │ │ │ │ ├── 49408-49663.pbf │ │ │ │ ├── 49664-49919.pbf │ │ │ │ ├── 49920-50175.pbf │ │ │ │ ├── 50176-50431.pbf │ │ │ │ ├── 50432-50687.pbf │ │ │ │ ├── 50688-50943.pbf │ │ │ │ ├── 50944-51199.pbf │ │ │ │ ├── 512-767.pbf │ │ │ │ ├── 5120-5375.pbf │ │ │ │ ├── 51200-51455.pbf │ │ │ │ ├── 51456-51711.pbf │ │ │ │ ├── 51712-51967.pbf │ │ │ │ ├── 51968-52223.pbf │ │ │ │ ├── 52224-52479.pbf │ │ │ │ ├── 52480-52735.pbf │ │ │ │ ├── 52736-52991.pbf │ │ │ │ ├── 52992-53247.pbf │ │ │ │ ├── 53248-53503.pbf │ │ │ │ ├── 53504-53759.pbf │ │ │ │ ├── 5376-5631.pbf │ │ │ │ ├── 53760-54015.pbf │ │ │ │ ├── 54016-54271.pbf │ │ │ │ ├── 54272-54527.pbf │ │ │ │ ├── 54528-54783.pbf │ │ │ │ ├── 54784-55039.pbf │ │ │ │ ├── 55040-55295.pbf │ │ │ │ ├── 55296-55551.pbf │ │ │ │ ├── 55552-55807.pbf │ │ │ │ ├── 55808-56063.pbf │ │ │ │ ├── 56064-56319.pbf │ │ │ │ ├── 5632-5887.pbf │ │ │ │ ├── 56320-56575.pbf │ │ │ │ ├── 56576-56831.pbf │ │ │ │ ├── 56832-57087.pbf │ │ │ │ ├── 57088-57343.pbf │ │ │ │ ├── 57344-57599.pbf │ │ │ │ ├── 57600-57855.pbf │ │ │ │ ├── 57856-58111.pbf │ │ │ │ ├── 58112-58367.pbf │ │ │ │ ├── 58368-58623.pbf │ │ │ │ ├── 58624-58879.pbf │ │ │ │ ├── 5888-6143.pbf │ │ │ │ ├── 58880-59135.pbf │ │ │ │ ├── 59136-59391.pbf │ │ │ │ ├── 59392-59647.pbf │ │ │ │ ├── 59648-59903.pbf │ │ │ │ ├── 59904-60159.pbf │ │ │ │ ├── 60160-60415.pbf │ │ │ │ ├── 60416-60671.pbf │ │ │ │ ├── 60672-60927.pbf │ │ │ │ ├── 60928-61183.pbf │ │ │ │ ├── 61184-61439.pbf │ │ │ │ ├── 6144-6399.pbf │ │ │ │ ├── 61440-61695.pbf │ │ │ │ ├── 61696-61951.pbf │ │ │ │ ├── 61952-62207.pbf │ │ │ │ ├── 62208-62463.pbf │ │ │ │ ├── 62464-62719.pbf │ │ │ │ ├── 62720-62975.pbf │ │ │ │ ├── 62976-63231.pbf │ │ │ │ ├── 63232-63487.pbf │ │ │ │ ├── 63488-63743.pbf │ │ │ │ ├── 63744-63999.pbf │ │ │ │ ├── 6400-6655.pbf │ │ │ │ ├── 64000-64255.pbf │ │ │ │ ├── 64256-64511.pbf │ │ │ │ ├── 64512-64767.pbf │ │ │ │ ├── 64768-65023.pbf │ │ │ │ ├── 65024-65279.pbf │ │ │ │ ├── 65280-65535.pbf │ │ │ │ ├── 6656-6911.pbf │ │ │ │ ├── 6912-7167.pbf │ │ │ │ ├── 7168-7423.pbf │ │ │ │ ├── 7424-7679.pbf │ │ │ │ ├── 768-1023.pbf │ │ │ │ ├── 7680-7935.pbf │ │ │ │ ├── 7936-8191.pbf │ │ │ │ ├── 8192-8447.pbf │ │ │ │ ├── 8448-8703.pbf │ │ │ │ ├── 8704-8959.pbf │ │ │ │ ├── 8960-9215.pbf │ │ │ │ ├── 9216-9471.pbf │ │ │ │ ├── 9472-9727.pbf │ │ │ │ ├── 9728-9983.pbf │ │ │ │ └── 9984-10239.pbf │ │ │ ├── Roboto Regular │ │ │ │ ├── 0-255.pbf │ │ │ │ ├── 1024-1279.pbf │ │ │ │ ├── 10240-10495.pbf │ │ │ │ ├── 10496-10751.pbf │ │ │ │ ├── 10752-11007.pbf │ │ │ │ ├── 11008-11263.pbf │ │ │ │ ├── 11264-11519.pbf │ │ │ │ ├── 11520-11775.pbf │ │ │ │ ├── 11776-12031.pbf │ │ │ │ ├── 12032-12287.pbf │ │ │ │ ├── 12288-12543.pbf │ │ │ │ ├── 12544-12799.pbf │ │ │ │ ├── 1280-1535.pbf │ │ │ │ ├── 12800-13055.pbf │ │ │ │ ├── 13056-13311.pbf │ │ │ │ ├── 13312-13567.pbf │ │ │ │ ├── 13568-13823.pbf │ │ │ │ ├── 13824-14079.pbf │ │ │ │ ├── 14080-14335.pbf │ │ │ │ ├── 14336-14591.pbf │ │ │ │ ├── 14592-14847.pbf │ │ │ │ ├── 14848-15103.pbf │ │ │ │ ├── 15104-15359.pbf │ │ │ │ ├── 1536-1791.pbf │ │ │ │ ├── 15360-15615.pbf │ │ │ │ ├── 15616-15871.pbf │ │ │ │ ├── 15872-16127.pbf │ │ │ │ ├── 16128-16383.pbf │ │ │ │ ├── 16384-16639.pbf │ │ │ │ ├── 16640-16895.pbf │ │ │ │ ├── 16896-17151.pbf │ │ │ │ ├── 17152-17407.pbf │ │ │ │ ├── 17408-17663.pbf │ │ │ │ ├── 17664-17919.pbf │ │ │ │ ├── 1792-2047.pbf │ │ │ │ ├── 17920-18175.pbf │ │ │ │ ├── 18176-18431.pbf │ │ │ │ ├── 18432-18687.pbf │ │ │ │ ├── 18688-18943.pbf │ │ │ │ ├── 18944-19199.pbf │ │ │ │ ├── 19200-19455.pbf │ │ │ │ ├── 19456-19711.pbf │ │ │ │ ├── 19712-19967.pbf │ │ │ │ ├── 19968-20223.pbf │ │ │ │ ├── 20224-20479.pbf │ │ │ │ ├── 2048-2303.pbf │ │ │ │ ├── 20480-20735.pbf │ │ │ │ ├── 20736-20991.pbf │ │ │ │ ├── 20992-21247.pbf │ │ │ │ ├── 21248-21503.pbf │ │ │ │ ├── 21504-21759.pbf │ │ │ │ ├── 21760-22015.pbf │ │ │ │ ├── 22016-22271.pbf │ │ │ │ ├── 22272-22527.pbf │ │ │ │ ├── 22528-22783.pbf │ │ │ │ ├── 22784-23039.pbf │ │ │ │ ├── 2304-2559.pbf │ │ │ │ ├── 23040-23295.pbf │ │ │ │ ├── 23296-23551.pbf │ │ │ │ ├── 23552-23807.pbf │ │ │ │ ├── 23808-24063.pbf │ │ │ │ ├── 24064-24319.pbf │ │ │ │ ├── 24320-24575.pbf │ │ │ │ ├── 24576-24831.pbf │ │ │ │ ├── 24832-25087.pbf │ │ │ │ ├── 25088-25343.pbf │ │ │ │ ├── 25344-25599.pbf │ │ │ │ ├── 256-511.pbf │ │ │ │ ├── 2560-2815.pbf │ │ │ │ ├── 25600-25855.pbf │ │ │ │ ├── 25856-26111.pbf │ │ │ │ ├── 26112-26367.pbf │ │ │ │ ├── 26368-26623.pbf │ │ │ │ ├── 26624-26879.pbf │ │ │ │ ├── 26880-27135.pbf │ │ │ │ ├── 27136-27391.pbf │ │ │ │ ├── 27392-27647.pbf │ │ │ │ ├── 27648-27903.pbf │ │ │ │ ├── 27904-28159.pbf │ │ │ │ ├── 2816-3071.pbf │ │ │ │ ├── 28160-28415.pbf │ │ │ │ ├── 28416-28671.pbf │ │ │ │ ├── 28672-28927.pbf │ │ │ │ ├── 28928-29183.pbf │ │ │ │ ├── 29184-29439.pbf │ │ │ │ ├── 29440-29695.pbf │ │ │ │ ├── 29696-29951.pbf │ │ │ │ ├── 29952-30207.pbf │ │ │ │ ├── 30208-30463.pbf │ │ │ │ ├── 30464-30719.pbf │ │ │ │ ├── 3072-3327.pbf │ │ │ │ ├── 30720-30975.pbf │ │ │ │ ├── 30976-31231.pbf │ │ │ │ ├── 31232-31487.pbf │ │ │ │ ├── 31488-31743.pbf │ │ │ │ ├── 31744-31999.pbf │ │ │ │ ├── 32000-32255.pbf │ │ │ │ ├── 32256-32511.pbf │ │ │ │ ├── 32512-32767.pbf │ │ │ │ ├── 32768-33023.pbf │ │ │ │ ├── 33024-33279.pbf │ │ │ │ ├── 3328-3583.pbf │ │ │ │ ├── 33280-33535.pbf │ │ │ │ ├── 33536-33791.pbf │ │ │ │ ├── 33792-34047.pbf │ │ │ │ ├── 34048-34303.pbf │ │ │ │ ├── 34304-34559.pbf │ │ │ │ ├── 34560-34815.pbf │ │ │ │ ├── 34816-35071.pbf │ │ │ │ ├── 35072-35327.pbf │ │ │ │ ├── 35328-35583.pbf │ │ │ │ ├── 35584-35839.pbf │ │ │ │ ├── 3584-3839.pbf │ │ │ │ ├── 35840-36095.pbf │ │ │ │ ├── 36096-36351.pbf │ │ │ │ ├── 36352-36607.pbf │ │ │ │ ├── 36608-36863.pbf │ │ │ │ ├── 36864-37119.pbf │ │ │ │ ├── 37120-37375.pbf │ │ │ │ ├── 37376-37631.pbf │ │ │ │ ├── 37632-37887.pbf │ │ │ │ ├── 37888-38143.pbf │ │ │ │ ├── 38144-38399.pbf │ │ │ │ ├── 3840-4095.pbf │ │ │ │ ├── 38400-38655.pbf │ │ │ │ ├── 38656-38911.pbf │ │ │ │ ├── 38912-39167.pbf │ │ │ │ ├── 39168-39423.pbf │ │ │ │ ├── 39424-39679.pbf │ │ │ │ ├── 39680-39935.pbf │ │ │ │ ├── 39936-40191.pbf │ │ │ │ ├── 40192-40447.pbf │ │ │ │ ├── 40448-40703.pbf │ │ │ │ ├── 40704-40959.pbf │ │ │ │ ├── 4096-4351.pbf │ │ │ │ ├── 40960-41215.pbf │ │ │ │ ├── 41216-41471.pbf │ │ │ │ ├── 41472-41727.pbf │ │ │ │ ├── 41728-41983.pbf │ │ │ │ ├── 41984-42239.pbf │ │ │ │ ├── 42240-42495.pbf │ │ │ │ ├── 42496-42751.pbf │ │ │ │ ├── 42752-43007.pbf │ │ │ │ ├── 43008-43263.pbf │ │ │ │ ├── 43264-43519.pbf │ │ │ │ ├── 4352-4607.pbf │ │ │ │ ├── 43520-43775.pbf │ │ │ │ ├── 43776-44031.pbf │ │ │ │ ├── 44032-44287.pbf │ │ │ │ ├── 44288-44543.pbf │ │ │ │ ├── 44544-44799.pbf │ │ │ │ ├── 44800-45055.pbf │ │ │ │ ├── 45056-45311.pbf │ │ │ │ ├── 45312-45567.pbf │ │ │ │ ├── 45568-45823.pbf │ │ │ │ ├── 45824-46079.pbf │ │ │ │ ├── 4608-4863.pbf │ │ │ │ ├── 46080-46335.pbf │ │ │ │ ├── 46336-46591.pbf │ │ │ │ ├── 46592-46847.pbf │ │ │ │ ├── 46848-47103.pbf │ │ │ │ ├── 47104-47359.pbf │ │ │ │ ├── 47360-47615.pbf │ │ │ │ ├── 47616-47871.pbf │ │ │ │ ├── 47872-48127.pbf │ │ │ │ ├── 48128-48383.pbf │ │ │ │ ├── 48384-48639.pbf │ │ │ │ ├── 4864-5119.pbf │ │ │ │ ├── 48640-48895.pbf │ │ │ │ ├── 48896-49151.pbf │ │ │ │ ├── 49152-49407.pbf │ │ │ │ ├── 49408-49663.pbf │ │ │ │ ├── 49664-49919.pbf │ │ │ │ ├── 49920-50175.pbf │ │ │ │ ├── 50176-50431.pbf │ │ │ │ ├── 50432-50687.pbf │ │ │ │ ├── 50688-50943.pbf │ │ │ │ ├── 50944-51199.pbf │ │ │ │ ├── 512-767.pbf │ │ │ │ ├── 5120-5375.pbf │ │ │ │ ├── 51200-51455.pbf │ │ │ │ ├── 51456-51711.pbf │ │ │ │ ├── 51712-51967.pbf │ │ │ │ ├── 51968-52223.pbf │ │ │ │ ├── 52224-52479.pbf │ │ │ │ ├── 52480-52735.pbf │ │ │ │ ├── 52736-52991.pbf │ │ │ │ ├── 52992-53247.pbf │ │ │ │ ├── 53248-53503.pbf │ │ │ │ ├── 53504-53759.pbf │ │ │ │ ├── 5376-5631.pbf │ │ │ │ ├── 53760-54015.pbf │ │ │ │ ├── 54016-54271.pbf │ │ │ │ ├── 54272-54527.pbf │ │ │ │ ├── 54528-54783.pbf │ │ │ │ ├── 54784-55039.pbf │ │ │ │ ├── 55040-55295.pbf │ │ │ │ ├── 55296-55551.pbf │ │ │ │ ├── 55552-55807.pbf │ │ │ │ ├── 55808-56063.pbf │ │ │ │ ├── 56064-56319.pbf │ │ │ │ ├── 5632-5887.pbf │ │ │ │ ├── 56320-56575.pbf │ │ │ │ ├── 56576-56831.pbf │ │ │ │ ├── 56832-57087.pbf │ │ │ │ ├── 57088-57343.pbf │ │ │ │ ├── 57344-57599.pbf │ │ │ │ ├── 57600-57855.pbf │ │ │ │ ├── 57856-58111.pbf │ │ │ │ ├── 58112-58367.pbf │ │ │ │ ├── 58368-58623.pbf │ │ │ │ ├── 58624-58879.pbf │ │ │ │ ├── 5888-6143.pbf │ │ │ │ ├── 58880-59135.pbf │ │ │ │ ├── 59136-59391.pbf │ │ │ │ ├── 59392-59647.pbf │ │ │ │ ├── 59648-59903.pbf │ │ │ │ ├── 59904-60159.pbf │ │ │ │ ├── 60160-60415.pbf │ │ │ │ ├── 60416-60671.pbf │ │ │ │ ├── 60672-60927.pbf │ │ │ │ ├── 60928-61183.pbf │ │ │ │ ├── 61184-61439.pbf │ │ │ │ ├── 6144-6399.pbf │ │ │ │ ├── 61440-61695.pbf │ │ │ │ ├── 61696-61951.pbf │ │ │ │ ├── 61952-62207.pbf │ │ │ │ ├── 62208-62463.pbf │ │ │ │ ├── 62464-62719.pbf │ │ │ │ ├── 62720-62975.pbf │ │ │ │ ├── 62976-63231.pbf │ │ │ │ ├── 63232-63487.pbf │ │ │ │ ├── 63488-63743.pbf │ │ │ │ ├── 63744-63999.pbf │ │ │ │ ├── 6400-6655.pbf │ │ │ │ ├── 64000-64255.pbf │ │ │ │ ├── 64256-64511.pbf │ │ │ │ ├── 64512-64767.pbf │ │ │ │ ├── 64768-65023.pbf │ │ │ │ ├── 65024-65279.pbf │ │ │ │ ├── 65280-65535.pbf │ │ │ │ ├── 6656-6911.pbf │ │ │ │ ├── 6912-7167.pbf │ │ │ │ ├── 7168-7423.pbf │ │ │ │ ├── 7424-7679.pbf │ │ │ │ ├── 768-1023.pbf │ │ │ │ ├── 7680-7935.pbf │ │ │ │ ├── 7936-8191.pbf │ │ │ │ ├── 8192-8447.pbf │ │ │ │ ├── 8448-8703.pbf │ │ │ │ ├── 8704-8959.pbf │ │ │ │ ├── 8960-9215.pbf │ │ │ │ ├── 9216-9471.pbf │ │ │ │ ├── 9472-9727.pbf │ │ │ │ ├── 9728-9983.pbf │ │ │ │ └── 9984-10239.pbf │ │ │ ├── sprites.json │ │ │ ├── sprites.png │ │ │ ├── sprites@2x.json │ │ │ ├── sprites@2x.png │ │ │ ├── style-mapbox-outdoors-v12.json │ │ │ ├── style-microg-normal-mapbox.json │ │ │ ├── style-microg-normal-stadia.json │ │ │ ├── style-microg-satellite-mapbox.json │ │ │ ├── style-microg-satellite-stadia.json │ │ │ └── style-stadia-outdoors.json │ │ │ ├── java │ │ │ └── com │ │ │ │ ├── google │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── dynamite │ │ │ │ │ └── descriptors │ │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── android │ │ │ │ │ │ └── gms │ │ │ │ │ │ └── maps_dynamite │ │ │ │ │ │ └── ModuleDescriptor.java │ │ │ │ │ └── maps │ │ │ │ │ └── internal │ │ │ │ │ └── CreatorImpl.java │ │ │ │ └── mapbox │ │ │ │ └── android │ │ │ │ └── accounts │ │ │ │ └── v1 │ │ │ │ └── MapboxAccounts.java │ │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── microg │ │ │ │ └── gms │ │ │ │ └── maps │ │ │ │ └── mapbox │ │ │ │ ├── AbstractGoogleMap.kt │ │ │ │ ├── CameraBoundsWithSizeUpdate.kt │ │ │ │ ├── CameraUpdateFactory.kt │ │ │ │ ├── GoogleLocationEngine.kt │ │ │ │ ├── GoogleMap.kt │ │ │ │ ├── LiteGoogleMap.kt │ │ │ │ ├── MapFragment.kt │ │ │ │ ├── MapView.kt │ │ │ │ ├── Pattern.kt │ │ │ │ ├── Projection.kt │ │ │ │ ├── SourceLocationEngine.kt │ │ │ │ ├── Styles.kt │ │ │ │ ├── UiSettings.kt │ │ │ │ ├── model │ │ │ │ ├── BitmapDescriptor.kt │ │ │ │ ├── BitmapDescriptorFactory.kt │ │ │ │ ├── Circle.kt │ │ │ │ ├── GroundOverlay.kt │ │ │ │ ├── InfoWindow.kt │ │ │ │ ├── Marker.kt │ │ │ │ ├── Markup.kt │ │ │ │ ├── Polygon.kt │ │ │ │ ├── Polyline.kt │ │ │ │ └── TileOverlay.kt │ │ │ │ └── utils │ │ │ │ ├── MapContext.kt │ │ │ │ ├── MultiArchLoader.kt │ │ │ │ └── typeConverter.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-ldpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-mdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xhdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xxhdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── maps_default_marker.png │ │ │ ├── drawable │ │ │ ├── location_dot.xml │ │ │ └── maps_default_bubble.xml │ │ │ └── layout │ │ │ └── maps_default_bubble_layout.xml │ └── vtm │ │ ├── build.gradle │ │ ├── microg-theme │ │ ├── build.gradle │ │ ├── resources │ │ │ └── assets │ │ │ │ ├── styles │ │ │ │ └── microg.xml │ │ │ │ └── symbols │ │ │ │ ├── dot_white.svg │ │ │ │ └── transit │ │ │ │ ├── train_station.svg │ │ │ │ └── train_station_small.svg │ │ └── src │ │ │ └── org │ │ │ └── oscim │ │ │ └── theme │ │ │ └── MicrogThemes.java │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── com │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ └── maps │ │ │ │ └── internal │ │ │ │ └── CreatorImpl.java │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── maps │ │ │ └── vtm │ │ │ ├── ApplicationContextWrapper.java │ │ │ ├── BackendMap.java │ │ │ ├── BackendMapView.java │ │ │ ├── ContainerLayout.java │ │ │ ├── GmsMapsTypeHelper.java │ │ │ ├── GoogleMapImpl.java │ │ │ ├── MapFragmentImpl.java │ │ │ ├── MapViewImpl.java │ │ │ ├── ProjectionImpl.java │ │ │ ├── ResourcesContainer.java │ │ │ ├── UiSettingsImpl.java │ │ │ ├── bitmap │ │ │ ├── AbstractBitmapDescriptor.java │ │ │ ├── AssetBitmapDescriptor.java │ │ │ ├── BitmapBitmapDescriptor.java │ │ │ ├── BitmapDescriptorFactoryImpl.java │ │ │ ├── BitmapDescriptorImpl.java │ │ │ ├── DefaultBitmapDescriptor.java │ │ │ ├── FileBitmapDescriptor.java │ │ │ ├── PathBitmapDescriptor.java │ │ │ └── ResourceBitmapDescriptor.java │ │ │ ├── camera │ │ │ ├── CameraUpdate.java │ │ │ ├── CameraUpdateFactoryImpl.java │ │ │ ├── MapPositionCameraUpdate.java │ │ │ └── NoCameraUpdate.java │ │ │ ├── data │ │ │ ├── SharedTileCache.java │ │ │ └── SharedTileProvider.java │ │ │ └── markup │ │ │ ├── CircleImpl.java │ │ │ ├── ClearableVectorLayer.java │ │ │ ├── DrawableMarkup.java │ │ │ ├── GroundOverlayImpl.java │ │ │ ├── InfoWindow.java │ │ │ ├── MarkerImpl.java │ │ │ ├── MarkerItemMarkup.java │ │ │ ├── Markup.java │ │ │ ├── PolygonImpl.java │ │ │ ├── PolylineImpl.java │ │ │ └── TileOverlayImpl.java │ │ └── res │ │ └── drawable │ │ ├── maps_default_marker.png │ │ ├── maps_default_window.9.png │ │ └── nop.png └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── maps │ │ ├── GoogleMapOptions.aidl │ │ ├── internal │ │ ├── ICameraUpdateFactoryDelegate.aidl │ │ ├── ICancelableCallback.aidl │ │ ├── ICreator.aidl │ │ ├── IGoogleMapDelegate.aidl │ │ ├── IInfoWindowAdapter.aidl │ │ ├── ILocationSourceDelegate.aidl │ │ ├── IMapFragmentDelegate.aidl │ │ ├── IMapViewDelegate.aidl │ │ ├── IOnCameraChangeListener.aidl │ │ ├── IOnCameraIdleListener.aidl │ │ ├── IOnCameraMoveCanceledListener.aidl │ │ ├── IOnCameraMoveListener.aidl │ │ ├── IOnCameraMoveStartedListener.aidl │ │ ├── IOnCircleClickListener.aidl │ │ ├── IOnGroundOverlayClickListener.aidl │ │ ├── IOnIndoorStateChangeListener.aidl │ │ ├── IOnInfoWindowClickListener.aidl │ │ ├── IOnInfoWindowCloseListener.aidl │ │ ├── IOnInfoWindowLongClickListener.aidl │ │ ├── IOnLocationChangeListener.aidl │ │ ├── IOnMapClickListener.aidl │ │ ├── IOnMapLoadedCallback.aidl │ │ ├── IOnMapLongClickListener.aidl │ │ ├── IOnMapReadyCallback.aidl │ │ ├── IOnMarkerClickListener.aidl │ │ ├── IOnMarkerDragListener.aidl │ │ ├── IOnMyLocationButtonClickListener.aidl │ │ ├── IOnMyLocationChangeListener.aidl │ │ ├── IOnMyLocationClickListener.aidl │ │ ├── IOnPolygonClickListener.aidl │ │ ├── IOnPolylineClickListener.aidl │ │ ├── IProjectionDelegate.aidl │ │ ├── ISnapshotReadyCallback.aidl │ │ └── IUiSettingsDelegate.aidl │ │ └── model │ │ ├── CameraPosition.aidl │ │ ├── Cap.aidl │ │ ├── CircleOptions.aidl │ │ ├── Dash.aidl │ │ ├── Dot.aidl │ │ ├── Gap.aidl │ │ ├── GroundOverlayOptions.aidl │ │ ├── LatLng.aidl │ │ ├── LatLngBounds.aidl │ │ ├── MapStyleOptions.aidl │ │ ├── MarkerOptions.aidl │ │ ├── PatternItem.aidl │ │ ├── PolygonOptions.aidl │ │ ├── PolylineOptions.aidl │ │ ├── StyleSpan.aidl │ │ ├── Tile.aidl │ │ ├── TileOverlayOptions.aidl │ │ ├── VisibleRegion.aidl │ │ └── internal │ │ ├── IBitmapDescriptorFactoryDelegate.aidl │ │ ├── ICircleDelegate.aidl │ │ ├── IGroundOverlayDelegate.aidl │ │ ├── IIndoorBuildingDelegate.aidl │ │ ├── IIndoorLevelDelegate.aidl │ │ ├── IMarkerDelegate.aidl │ │ ├── IPolygonDelegate.aidl │ │ ├── IPolylineDelegate.aidl │ │ ├── ITileOverlayDelegate.aidl │ │ └── ITileProviderDelegate.aidl │ ├── java │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── maps │ │ │ ├── CameraUpdate.java │ │ │ ├── CameraUpdateFactory.java │ │ │ ├── GoogleMap.java │ │ │ ├── GoogleMapOptions.java │ │ │ ├── MapFragment.java │ │ │ ├── MapView.java │ │ │ ├── MapsInitializer.java │ │ │ ├── OnMapReadyCallback.java │ │ │ ├── OnMapsSdkInitializedCallback.java │ │ │ ├── StreetViewPanoramaOptions.java │ │ │ ├── internal │ │ │ ├── MapLifecycleDelegate.java │ │ │ └── Point.java │ │ │ ├── model │ │ │ ├── BitmapDescriptor.java │ │ │ ├── BitmapDescriptorFactory.java │ │ │ ├── ButtCap.java │ │ │ ├── CameraPosition.java │ │ │ ├── Cap.java │ │ │ ├── Circle.java │ │ │ ├── CircleOptions.java │ │ │ ├── CustomCap.java │ │ │ ├── Dash.java │ │ │ ├── Dot.java │ │ │ ├── Gap.java │ │ │ ├── GroundOverlayOptions.java │ │ │ ├── JointType.java │ │ │ ├── LatLng.java │ │ │ ├── LatLngBounds.java │ │ │ ├── MapStyleOptions.java │ │ │ ├── MarkerOptions.java │ │ │ ├── PatternItem.java │ │ │ ├── PolygonOptions.java │ │ │ ├── PolylineOptions.java │ │ │ ├── RoundCap.java │ │ │ ├── RuntimeRemoteException.java │ │ │ ├── SquareCap.java │ │ │ ├── StampStyle.java │ │ │ ├── StreetViewPanoramaCamera.java │ │ │ ├── StreetViewPanoramaLink.java │ │ │ ├── StreetViewPanoramaLocation.java │ │ │ ├── StreetViewPanoramaOrientation.java │ │ │ ├── StrokeStyle.java │ │ │ ├── StyleSpan.java │ │ │ ├── Tile.java │ │ │ ├── TileOverlayOptions.java │ │ │ ├── TileProvider.java │ │ │ ├── VisibleRegion.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ └── org │ │ └── microg │ │ └── gms │ │ └── maps │ │ ├── MapViewDelegate.java │ │ ├── MapViewLifecycleHelper.java │ │ ├── MapsBundleHelper.java │ │ └── MapsContextLoader.java │ └── res │ └── values │ └── maps_attrs.xml ├── play-services-measurement-base ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── measurement │ │ └── api │ │ └── internal │ │ ├── IAppMeasurementDynamiteService.aidl │ │ ├── IBundleReceiver.aidl │ │ ├── IEventHandlerProxy.aidl │ │ ├── IStringProvider.aidl │ │ └── InitializationParams.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── measurement │ └── api │ └── internal │ └── InitializationParams.java ├── play-services-mlkit └── barcode-scanning │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── mlkit │ │ └── vision │ │ └── barcode │ │ ├── aidls │ │ ├── IBarcodeScanner.aidl │ │ └── IBarcodeScannerCreator.aidl │ │ └── internal │ │ ├── Barcode.aidl │ │ ├── BarcodeScannerOptions.aidl │ │ └── ImageMetadata.aidl │ └── java │ └── com │ └── google │ └── mlkit │ └── vision │ └── barcode │ └── internal │ ├── Address.java │ ├── Barcode.java │ ├── BarcodeScannerOptions.java │ ├── CalendarDateTime.java │ ├── CalendarEvent.java │ ├── ContactInfo.java │ ├── DriverLicense.java │ ├── Email.java │ ├── GeoPoint.java │ ├── ImageMetadata.java │ ├── PersonName.java │ ├── Phone.java │ ├── Sms.java │ ├── UrlBookmark.java │ └── WiFi.java ├── play-services-nearby ├── build.gradle ├── core │ ├── build.gradle │ ├── package │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── nearby │ │ │ └── exposurenotification │ │ │ └── ui │ │ │ └── ExposureNotificationsSettingsProvider.kt │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── microg │ │ │ │ └── gms │ │ │ │ └── nearby │ │ │ │ └── exposurenotification │ │ │ │ ├── AdvertiserService.kt │ │ │ │ ├── CleanupService.kt │ │ │ │ ├── Constants.kt │ │ │ │ ├── Crypto.kt │ │ │ │ ├── DeviceInfo.kt │ │ │ │ ├── ExposureDatabase.kt │ │ │ │ ├── ExposureFileProvider.kt │ │ │ │ ├── ExposureNotificationService.kt │ │ │ │ ├── ExposureNotificationServiceImpl.kt │ │ │ │ ├── ExposurePreferences.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── MeasuredExposure.kt │ │ │ │ ├── NotifyService.kt │ │ │ │ ├── ScannerService.kt │ │ │ │ ├── ServiceInfo.kt │ │ │ │ ├── ServiceTrigger.kt │ │ │ │ └── ui │ │ │ │ ├── DotChartPreference.kt │ │ │ │ ├── DotChartView.kt │ │ │ │ ├── ExposureNotificationsAppFragment.kt │ │ │ │ ├── ExposureNotificationsAppPreferencesFragment.kt │ │ │ │ ├── ExposureNotificationsConfirmActivity.kt │ │ │ │ ├── ExposureNotificationsFragment.kt │ │ │ │ ├── ExposureNotificationsRpisFragment.kt │ │ │ │ ├── ExposureNotificationsSettingsActivity.kt │ │ │ │ └── Utils.kt │ │ ├── proto │ │ │ └── TemporaryExposureKeyFile.proto │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_alert.xml │ │ │ ├── ic_bluetooth_off.xml │ │ │ ├── ic_location_off.xml │ │ │ ├── ic_outline_location_on.xml │ │ │ └── ic_virus_outline.xml │ │ │ ├── layout │ │ │ ├── exposure_notifications_app_fragment.xml │ │ │ ├── exposure_notifications_confirm_activity.xml │ │ │ ├── exposure_notifications_confirm_delete.xml │ │ │ ├── exposure_notifications_settings_activity.xml │ │ │ └── preference_dot_chart.xml │ │ │ ├── navigation │ │ │ └── nav_nearby.xml │ │ │ ├── values-ast │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-eo │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fil │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-nb-rNO │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── preferences_exposure_notifications.xml │ │ │ ├── preferences_exposure_notifications_app.xml │ │ │ ├── preferences_exposure_notifications_exportedfiles.xml │ │ │ └── preferences_exposure_notifications_rpis.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── microg │ │ └── gms │ │ └── nearby │ │ └── exposurenotification │ │ ├── CryptoTest.java │ │ └── TestVectors.java └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── nearby │ │ └── exposurenotification │ │ ├── DailySummary.aidl │ │ ├── DiagnosisKeysDataMapping.aidl │ │ ├── ExposureInformation.aidl │ │ ├── ExposureSummary.aidl │ │ ├── ExposureWindow.aidl │ │ ├── PackageConfiguration.aidl │ │ ├── TemporaryExposureKey.aidl │ │ └── internal │ │ ├── GetCalibrationConfidenceParams.aidl │ │ ├── GetDailySummariesParams.aidl │ │ ├── GetDiagnosisKeysDataMappingParams.aidl │ │ ├── GetExposureInformationParams.aidl │ │ ├── GetExposureSummaryParams.aidl │ │ ├── GetExposureWindowsParams.aidl │ │ ├── GetPackageConfigurationParams.aidl │ │ ├── GetStatusParams.aidl │ │ ├── GetTemporaryExposureKeyHistoryParams.aidl │ │ ├── GetVersionParams.aidl │ │ ├── IBooleanCallback.aidl │ │ ├── IDailySummaryListCallback.aidl │ │ ├── IDiagnosisKeyFileSupplier.aidl │ │ ├── IDiagnosisKeysDataMappingCallback.aidl │ │ ├── IExposureInformationListCallback.aidl │ │ ├── IExposureSummaryCallback.aidl │ │ ├── IExposureWindowListCallback.aidl │ │ ├── IIntCallback.aidl │ │ ├── ILongCallback.aidl │ │ ├── INearbyExposureNotificationService.aidl │ │ ├── IPackageConfigurationCallback.aidl │ │ ├── ITemporaryExposureKeyListCallback.aidl │ │ ├── IsEnabledParams.aidl │ │ ├── ProvideDiagnosisKeysParams.aidl │ │ ├── RequestPreAuthorizedTemporaryExposureKeyHistoryParams.aidl │ │ ├── RequestPreAuthorizedTemporaryExposureKeyReleaseParams.aidl │ │ ├── SetDiagnosisKeysDataMappingParams.aidl │ │ ├── StartParams.aidl │ │ └── StopParams.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── nearby │ │ ├── Nearby.java │ │ └── exposurenotification │ │ ├── CalibrationConfidence.java │ │ ├── DailySummariesConfig.java │ │ ├── DailySummary.java │ │ ├── DiagnosisKeyFileProvider.java │ │ ├── DiagnosisKeysDataMapping.java │ │ ├── ExposureConfiguration.java │ │ ├── ExposureInformation.java │ │ ├── ExposureNotificationClient.java │ │ ├── ExposureNotificationStatus.java │ │ ├── ExposureNotificationStatusCodes.java │ │ ├── ExposureSummary.java │ │ ├── ExposureWindow.java │ │ ├── Infectiousness.java │ │ ├── PackageConfiguration.java │ │ ├── ReportType.java │ │ ├── RiskLevel.java │ │ ├── ScanInstance.java │ │ ├── TemporaryExposureKey.java │ │ ├── WakeUpService.java │ │ └── internal │ │ ├── GetCalibrationConfidenceParams.java │ │ ├── GetDailySummariesParams.java │ │ ├── GetDiagnosisKeysDataMappingParams.java │ │ ├── GetExposureInformationParams.java │ │ ├── GetExposureSummaryParams.java │ │ ├── GetExposureWindowsParams.java │ │ ├── GetPackageConfigurationParams.java │ │ ├── GetStatusParams.java │ │ ├── GetTemporaryExposureKeyHistoryParams.java │ │ ├── GetVersionParams.java │ │ ├── IsEnabledParams.java │ │ ├── ProvideDiagnosisKeysParams.java │ │ ├── RequestPreAuthorizedTemporaryExposureKeyHistoryParams.java │ │ ├── RequestPreAuthorizedTemporaryExposureKeyReleaseParams.java │ │ ├── SetDiagnosisKeysDataMappingParams.java │ │ ├── StartParams.java │ │ └── StopParams.java │ └── org │ └── microg │ └── gms │ └── nearby │ ├── ExposureNotificationApiClient.java │ └── ExposureNotificationClientImpl.java ├── play-services-oss-licenses ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── oss │ │ └── licenses │ │ └── core │ │ └── OssLicensesService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── oss │ │ └── licenses │ │ ├── IOSSLicenseService.aidl │ │ └── License.aidl │ ├── java │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── oss │ │ │ └── licenses │ │ │ ├── License.java │ │ │ ├── OssLicensesActivity.java │ │ │ ├── OssLicensesMenuActivity.java │ │ │ └── OssLicensesServiceImpl.java │ └── org │ │ └── microg │ │ └── gms │ │ └── oss │ │ └── licenses │ │ ├── LicenseUtil.java │ │ └── OssLicenseServiceApiClient.java │ └── res │ ├── layout │ ├── libraries_social_licenses_license.xml │ ├── libraries_social_licenses_license_activity.xml │ ├── libraries_social_licenses_license_menu_activity.xml │ └── license_menu_activity_no_licenses.xml │ ├── values-ast │ └── strings.xml │ ├── values-be │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-eo │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fil │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ └── values │ └── strings.xml ├── play-services-panorama ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── panorama │ │ └── PanoramaService.kt └── src │ ├── AndroidManifest.xml │ └── main │ └── aidl │ └── com │ └── google │ └── android │ └── gms │ └── panorama │ ├── Panorama.java │ ├── PanoramaApi.java │ └── internal │ ├── IPanoramaCallbacks.aidl │ └── IPanoramaService.aidl ├── play-services-pay ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── pay │ │ ├── PayActivity.kt │ │ └── PayService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── pay │ │ └── internal │ │ └── IPayService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── pay │ │ ├── Pay.java │ │ ├── PayApiAvailabilityStatus.java │ │ └── PayClient.java │ └── org │ └── microg │ └── gms │ └── pay │ ├── PayApiClient.java │ └── PayClientImpl.java ├── play-services-phenotype ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── phenotype │ ├── Configuration.java │ ├── ExperimentTokens.java │ ├── Flag.java │ └── GenericDimension.java ├── play-services-places-placereport ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── location │ └── places │ └── PlaceReport.java ├── play-services-places ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── location │ │ └── places │ │ ├── AutocompleteFilter.aidl │ │ ├── NearbyAlertRequest.aidl │ │ ├── PlaceFilter.aidl │ │ ├── PlaceReport.aidl │ │ ├── PlaceRequest.aidl │ │ ├── UserAddedPlace.aidl │ │ ├── UserDataType.aidl │ │ └── internal │ │ ├── IGooglePlaceDetectionService.aidl │ │ ├── IGooglePlacesService.aidl │ │ ├── IPlacesCallbacks.aidl │ │ └── PlacesParams.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── location │ └── places │ ├── AutocompleteFilter.java │ ├── NearbyAlertRequest.java │ ├── Place.java │ ├── PlaceFilter.java │ ├── PlaceRequest.java │ ├── UserAddedPlace.java │ ├── UserDataType.java │ └── internal │ ├── PlaceImpl.java │ └── PlacesParams.java ├── play-services-recaptcha ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── recaptcha │ │ │ ├── RecaptchaGuardImpl.kt │ │ │ ├── RecaptchaImpl.kt │ │ │ ├── RecaptchaService.kt │ │ │ └── RecaptchaWebImpl.kt │ │ └── proto │ │ └── recaptcha.proto └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── recaptcha │ │ ├── RecaptchaAction.aidl │ │ ├── RecaptchaHandle.aidl │ │ ├── RecaptchaResultData.aidl │ │ └── internal │ │ ├── ExecuteParams.aidl │ │ ├── ExecuteResults.aidl │ │ ├── ICloseCallback.aidl │ │ ├── IExecuteCallback.aidl │ │ ├── IInitCallback.aidl │ │ ├── IRecaptchaService.aidl │ │ ├── InitParams.aidl │ │ └── InitResults.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── recaptcha │ │ ├── HttpStatusException.java │ │ ├── Recaptcha.java │ │ ├── RecaptchaAction.java │ │ ├── RecaptchaActionType.java │ │ ├── RecaptchaClient.java │ │ ├── RecaptchaHandle.java │ │ ├── RecaptchaNetworkException.java │ │ ├── RecaptchaOptionalObject.java │ │ ├── RecaptchaResultData.java │ │ ├── RecaptchaStatusCodes.java │ │ ├── VerificationHandle.java │ │ ├── VerificationResult.java │ │ └── internal │ │ ├── ExecuteParams.java │ │ ├── ExecuteResults.java │ │ ├── InitParams.java │ │ └── InitResults.java │ └── org │ └── microg │ └── gms │ └── recaptcha │ ├── RecaptchaClientImpl.java │ └── RecaptchaGmsClient.java ├── play-services-safetynet ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── safetynet │ │ │ └── Attestation.java │ │ ├── kotlin │ │ └── org │ │ │ └── microg │ │ │ └── gms │ │ │ └── safetynet │ │ │ ├── ReCaptchaActivity.kt │ │ │ ├── SafetyNetClientService.kt │ │ │ ├── SafetyNetDatabase.kt │ │ │ ├── SafetyNetPreferences.kt │ │ │ ├── SafetyNetRequestType.kt │ │ │ └── SafetyNetSummary.kt │ │ ├── proto │ │ └── safetynet.proto │ │ └── res │ │ ├── drawable │ │ └── ic_recaptcha.xml │ │ └── layout │ │ └── recaptcha_window.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── safetynet │ │ ├── AttestationData.aidl │ │ ├── HarmfulAppsData.aidl │ │ ├── HarmfulAppsInfo.aidl │ │ ├── RecaptchaResultData.aidl │ │ ├── RemoveHarmfulAppData.aidl │ │ ├── SafeBrowsingData.aidl │ │ └── internal │ │ ├── ISafetyNetCallbacks.aidl │ │ └── ISafetyNetService.aidl │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── safetynet │ │ ├── AttestationData.java │ │ ├── HarmfulAppsData.java │ │ ├── HarmfulAppsInfo.java │ │ ├── RecaptchaResultData.java │ │ ├── RemoveHarmfulAppData.java │ │ ├── SafeBrowsingData.java │ │ ├── SafetyNet.java │ │ ├── SafetyNetApi.java │ │ ├── SafetyNetClient.java │ │ ├── SafetyNetStatusCodes.java │ │ └── VerifyAppsConstants.java │ └── org │ └── microg │ └── gms │ └── safetynet │ ├── ISafetyNetCallbacksDefaultStub.java │ ├── SafetyNetApiImpl.java │ └── SafetyNetGmsClient.java ├── play-services-tapandpay ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── org │ │ └── microg │ │ └── gms │ │ └── tapandpay │ │ └── TapAndPayService.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── tapandpay │ │ ├── firstparty │ │ ├── GetActiveAccountResponse.aidl │ │ ├── GetAllCardsResponse.aidl │ │ ├── RefreshSeCardsResponse.aidl │ │ └── TokenStatus.aidl │ │ ├── internal │ │ ├── ITapAndPayService.aidl │ │ ├── ITapAndPayServiceCallbacks.aidl │ │ └── firstparty │ │ │ ├── GetActiveAccountRequest.aidl │ │ │ ├── GetAllCardsRequest.aidl │ │ │ ├── RefreshSeCardsRequest.aidl │ │ │ └── SetActiveAccountRequest.aidl │ │ └── issuer │ │ └── TokenStatus.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── tapandpay │ ├── TapAndPayStatusCodes.java │ ├── firstparty │ ├── AccountInfo.java │ ├── CardInfo.java │ ├── GetActiveAccountResponse.java │ ├── GetAllCardsResponse.java │ ├── RefreshSeCardsResponse.java │ ├── TokenReference.java │ └── TokenStatus.java │ ├── internal │ └── firstparty │ │ ├── GetActiveAccountRequest.java │ │ ├── GetAllCardsRequest.java │ │ ├── RefreshSeCardsRequest.java │ │ └── SetActiveAccountRequest.java │ └── issuer │ └── TokenStatus.java ├── play-services-tasks ├── build.gradle ├── ktx │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── tasks │ │ └── Tasks.kt └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ ├── com │ └── google │ │ └── android │ │ └── gms │ │ └── tasks │ │ ├── CancellationToken.java │ │ ├── CancellationTokenSource.java │ │ ├── Continuation.java │ │ ├── DuplicateTaskCompletionException.java │ │ ├── OnCanceledListener.java │ │ ├── OnCompleteListener.java │ │ ├── OnFailureListener.java │ │ ├── OnSuccessListener.java │ │ ├── OnTokenCanceledListener.java │ │ ├── RuntimeExecutionException.java │ │ ├── SuccessContinuation.java │ │ ├── Task.java │ │ ├── TaskCompletionSource.java │ │ ├── TaskExecutors.java │ │ └── Tasks.java │ └── org │ └── microg │ └── gms │ └── tasks │ ├── CancellationTokenImpl.java │ ├── CancelledExecutor.java │ ├── CompletedExecutor.java │ ├── ContinuationExecutor.java │ ├── ContinuationWithExecutor.java │ ├── FailureExecutor.java │ ├── SuccessContinuationExecutor.java │ ├── SuccessExecutor.java │ ├── TaskImpl.java │ ├── UpdateExecutor.java │ ├── UpdateListener.java │ └── UpdateListenerLifecycleObserver.java ├── play-services-vision-common ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── vision │ │ └── internal │ │ └── FrameMetadataParcel.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── vision │ ├── CameraSource.java │ ├── Detector.java │ ├── Frame.java │ └── internal │ └── FrameMetadataParcel.java ├── play-services-vision ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── dynamite │ │ │ └── descriptors │ │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── vision │ │ │ ├── barcode │ │ │ └── ModuleDescriptor.java │ │ │ └── dynamite │ │ │ ├── ModuleDescriptor.java │ │ │ └── barcode │ │ │ └── ModuleDescriptor.java │ │ └── kotlin │ │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── vision │ │ │ ├── barcode │ │ │ ├── ChimeraNativeBarcodeDetectorCreator.kt │ │ │ └── mlkit │ │ │ │ └── BarcodeScannerCreator.kt │ │ │ └── client │ │ │ └── DynamiteNativeBarcodeDetectorCreator.kt │ │ └── org │ │ └── microg │ │ └── gms │ │ └── vision │ │ └── barcode │ │ ├── BarcodeDecodeHelper.kt │ │ ├── BarcodeDetector.kt │ │ ├── BarcodeScanner.kt │ │ └── MultiBarcodeReader.kt └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── vision │ │ └── barcode │ │ ├── Barcode.aidl │ │ └── internal │ │ └── client │ │ ├── BarcodeDetectorOptions.aidl │ │ ├── INativeBarcodeDetector.aidl │ │ └── INativeBarcodeDetectorCreator.aidl │ └── java │ └── com │ └── google │ └── android │ └── gms │ └── vision │ └── barcode │ ├── Barcode.java │ ├── BarcodeDetector.java │ └── internal │ └── client │ └── BarcodeDetectorOptions.java ├── play-services-wearable ├── build.gradle ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── org │ │ └── microg │ │ └── gms │ │ └── wearable │ │ ├── CapabilityManager.java │ │ ├── ClockworkNodePreferences.java │ │ ├── ConfigurationDatabaseHelper.java │ │ ├── DataItemInternal.java │ │ ├── DataItemRecord.java │ │ ├── MessageHandler.java │ │ ├── NodeDatabaseHelper.java │ │ ├── RpcHelper.java │ │ ├── WearableImpl.java │ │ ├── WearableService.java │ │ ├── WearableServiceImpl.java │ │ └── location │ │ └── WearableLocationService.java └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── gms │ │ └── wearable │ │ ├── Asset.aidl │ │ ├── ConnectionConfiguration.aidl │ │ └── internal │ │ ├── AddListenerRequest.aidl │ │ ├── AddLocalCapabilityResponse.aidl │ │ ├── AmsEntityUpdateParcelable.aidl │ │ ├── AncsNotificationParcelable.aidl │ │ ├── CapabilityInfoParcelable.aidl │ │ ├── ChannelEventParcelable.aidl │ │ ├── ChannelReceiveFileResponse.aidl │ │ ├── ChannelSendFileResponse.aidl │ │ ├── CloseChannelResponse.aidl │ │ ├── DeleteDataItemsResponse.aidl │ │ ├── GetAllCapabilitiesResponse.aidl │ │ ├── GetCapabilityResponse.aidl │ │ ├── GetChannelInputStreamResponse.aidl │ │ ├── GetChannelOutputStreamResponse.aidl │ │ ├── GetCloudSyncOptInOutDoneResponse.aidl │ │ ├── GetCloudSyncOptInStatusResponse.aidl │ │ ├── GetCloudSyncSettingResponse.aidl │ │ ├── GetConfigResponse.aidl │ │ ├── GetConfigsResponse.aidl │ │ ├── GetConnectedNodesResponse.aidl │ │ ├── GetDataItemResponse.aidl │ │ ├── GetFdForAssetResponse.aidl │ │ ├── GetLocalNodeResponse.aidl │ │ ├── IChannelStreamCallbacks.aidl │ │ ├── IWearableCallbacks.aidl │ │ ├── IWearableListener.aidl │ │ ├── IWearableService.aidl │ │ ├── MessageEventParcelable.aidl │ │ ├── NodeParcelable.aidl │ │ ├── OpenChannelResponse.aidl │ │ ├── PutDataRequest.aidl │ │ ├── PutDataResponse.aidl │ │ ├── RemoveListenerRequest.aidl │ │ ├── RemoveLocalCapabilityResponse.aidl │ │ ├── SendMessageResponse.aidl │ │ └── StorageInfoResponse.aidl │ ├── java │ ├── com │ │ └── google │ │ │ └── android │ │ │ └── gms │ │ │ └── wearable │ │ │ ├── AmsEntityUpdate.java │ │ │ ├── AncsNotification.java │ │ │ ├── Asset.java │ │ │ ├── CapabilityApi.java │ │ │ ├── CapabilityInfo.java │ │ │ ├── Channel.java │ │ │ ├── ChannelApi.java │ │ │ ├── ChannelIOException.java │ │ │ ├── ConnectionConfiguration.java │ │ │ ├── DataApi.java │ │ │ ├── DataEvent.java │ │ │ ├── DataEventBuffer.java │ │ │ ├── DataItem.java │ │ │ ├── DataItemAsset.java │ │ │ ├── DataItemBuffer.java │ │ │ ├── DataMap.java │ │ │ ├── DataMapItem.java │ │ │ ├── MessageApi.java │ │ │ ├── MessageEvent.java │ │ │ ├── Node.java │ │ │ ├── NodeApi.java │ │ │ ├── PutDataMapRequest.java │ │ │ ├── Wearable.java │ │ │ ├── WearableListenerService.java │ │ │ ├── WearableStatusCodes.java │ │ │ └── internal │ │ │ ├── AddListenerRequest.java │ │ │ ├── AddLocalCapabilityResponse.java │ │ │ ├── AmsEntityUpdateParcelable.java │ │ │ ├── AncsNotificationParcelable.java │ │ │ ├── CapabilityInfoParcelable.java │ │ │ ├── ChannelEventParcelable.java │ │ │ ├── ChannelParcelable.java │ │ │ ├── ChannelReceiveFileResponse.java │ │ │ ├── ChannelSendFileResponse.java │ │ │ ├── CloseChannelResponse.java │ │ │ ├── DataItemAssetParcelable.java │ │ │ ├── DataItemParcelable.java │ │ │ ├── DeleteDataItemsResponse.java │ │ │ ├── GetAllCapabilitiesResponse.java │ │ │ ├── GetCapabilityResponse.java │ │ │ ├── GetChannelInputStreamResponse.java │ │ │ ├── GetChannelOutputStreamResponse.java │ │ │ ├── GetCloudSyncOptInOutDoneResponse.java │ │ │ ├── GetCloudSyncOptInStatusResponse.java │ │ │ ├── GetCloudSyncSettingResponse.java │ │ │ ├── GetConfigResponse.java │ │ │ ├── GetConfigsResponse.java │ │ │ ├── GetConnectedNodesResponse.java │ │ │ ├── GetDataItemResponse.java │ │ │ ├── GetFdForAssetResponse.java │ │ │ ├── GetLocalNodeResponse.java │ │ │ ├── MessageEventParcelable.java │ │ │ ├── NodeParcelable.java │ │ │ ├── OpenChannelResponse.java │ │ │ ├── PutDataRequest.java │ │ │ ├── PutDataResponse.java │ │ │ ├── RemoveListenerRequest.java │ │ │ ├── RemoveLocalCapabilityResponse.java │ │ │ ├── SendMessageResponse.java │ │ │ └── StorageInfoResponse.java │ └── org │ │ └── microg │ │ └── gms │ │ └── wearable │ │ ├── BaseWearableCallbacks.java │ │ ├── ChannelImpl.java │ │ ├── DataApiImpl.java │ │ ├── MessageApiImpl.java │ │ ├── NodeApiImpl.java │ │ ├── WearableApiClientBuilder.java │ │ ├── WearableClientImpl.java │ │ └── databundle │ │ └── DataBundleUtil.java │ └── proto │ └── databundle.proto ├── play-services ├── build.gradle └── src │ └── main │ └── AndroidManifest.xml ├── proguard.flags ├── safe-parcel-processor ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── org │ │ └── microg │ │ └── safeparcel │ │ └── SafeParcelProcessor.kt │ └── resources │ └── META-INF │ └── services │ └── javax.annotation.processing.Processor ├── settings.gradle └── vending-app ├── build.gradle └── src ├── huaweilh └── AndroidManifest.xml └── main ├── AndroidManifest.xml ├── aidl └── com │ ├── android │ └── vending │ │ ├── billing │ │ └── IInAppBillingService.aidl │ │ └── licensing │ │ ├── ILicenseResultListener.aidl │ │ ├── ILicenseV2ResultListener.aidl │ │ └── ILicensingService.aidl │ └── google │ └── android │ ├── finsky │ └── externalreferrer │ │ └── IGetInstallReferrerService.aidl │ └── gms │ └── checkin │ └── internal │ └── ICheckinService.aidl ├── java ├── com │ ├── android │ │ ├── billingclient │ │ │ ├── api │ │ │ │ └── BillingClient.java │ │ │ └── package-info.java │ │ └── vending │ │ │ ├── GrantFakeSignaturePermissionActivity.java │ │ │ ├── Util.java │ │ │ ├── VendingPreferences.kt │ │ │ ├── billing │ │ │ └── InAppBillingService.kt │ │ │ └── licensing │ │ │ ├── LicenseChecker.java │ │ │ ├── LicenseRequest.java │ │ │ ├── LicenseServiceNotificationRunnable.java │ │ │ └── LicensingService.java │ └── google │ │ └── android │ │ └── finsky │ │ └── externalreferrer │ │ └── GetInstallReferrerService.java └── org │ └── microg │ └── vending │ ├── MarketIntentRedirect.java │ ├── billing │ ├── AuthManager.kt │ ├── CheckinServiceClient.kt │ ├── Constants.kt │ ├── ContextProvider.kt │ ├── DeviceIdentifier.kt │ ├── GServices.kt │ ├── InAppBillingServiceImpl.kt │ ├── PurchaseActivity.java │ ├── PurchaseManager.kt │ ├── SettingsManager.kt │ ├── Utils.kt │ ├── core │ │ ├── AcknowledgePurchaseParams.kt │ │ ├── AcknowledgePurchaseResult.kt │ │ ├── AcquireParams.kt │ │ ├── AcquireResult.kt │ │ ├── AuthData.kt │ │ ├── BuyFlowParams.kt │ │ ├── ClientInfo.kt │ │ ├── ConsumePurchaseParams.kt │ │ ├── ConsumePurchaseResult.kt │ │ ├── DeviceEnvInfo.kt │ │ ├── GetPurchaseHistoryParams.kt │ │ ├── GetPurchaseHistoryResult.kt │ │ ├── GetSkuDetailsParams.kt │ │ ├── GetSkuDetailsResult.kt │ │ ├── GooglePlayApi.kt │ │ ├── HeaderProvider.kt │ │ ├── HttpClient.kt │ │ ├── IAPCacheManager.kt │ │ ├── IAPCore.kt │ │ ├── IAPResult.kt │ │ ├── PurchaseItem.kt │ │ ├── Utils.kt │ │ └── ui │ │ │ ├── UIComponents.kt │ │ │ ├── UIParser.kt │ │ │ └── UIType.kt │ └── ui │ │ ├── Extends.kt │ │ ├── HtmlText.kt │ │ ├── InAppBillingHostActivity.kt │ │ ├── PlayWebViewActivity.kt │ │ ├── SheetUIPage.kt │ │ ├── Utils.kt │ │ ├── WebViewHelper.kt │ │ ├── logic │ │ ├── InAppBillingViewModel.kt │ │ └── Models.kt │ │ ├── theme │ │ ├── Color.kt │ │ ├── Theme.kt │ │ └── Type.kt │ │ └── widgets │ │ ├── LoadingDialog.kt │ │ └── PasswdInputDialog.kt │ └── ui │ └── MainActivity.java ├── proto ├── GooglePlay.proto ├── LicenseRequest.proto ├── LicenseResult.proto ├── Locality.proto └── Timestamp.proto └── res ├── drawable-v21 ├── anim_check_mark.xml └── google_play.xml ├── drawable-v26 ├── ic_app_foreground.xml └── ic_app_foreground_mono.xml ├── drawable └── ic_notification.xml ├── layout └── activiy_confirm_purchase.xml ├── mipmap-anydpi-v26 └── ic_app.xml ├── mipmap-hdpi └── ic_app.png ├── mipmap-mdpi └── ic_app.png ├── mipmap-xhdpi └── ic_app.png ├── mipmap-xxhdpi └── ic_app.png ├── mipmap-xxxhdpi └── ic_app.png ├── values-ast └── strings.xml ├── values-be └── strings.xml ├── values-de └── strings.xml ├── values-eo └── strings.xml ├── values-es └── strings.xml ├── values-fil └── strings.xml ├── values-fr └── strings.xml ├── values-it └── strings.xml ├── values-ja └── strings.xml ├── values-nb-rNO └── strings.xml ├── values-nl └── strings.xml ├── values-pl └── strings.xml ├── values-pt-rBR └── strings.xml ├── values-ro └── strings.xml ├── values-ru └── strings.xml ├── values-sr └── strings.xml ├── values-sv └── strings.xml ├── values-uk └── strings.xml ├── values-v11 └── styles.xml ├── values-v26 └── ic_app_background.xml ├── values-vi └── strings.xml ├── values-zh-rCN └── strings.xml ├── values-zh-rTW └── strings.xml └── values ├── colors.xml ├── strings.xml └── styles.xml /.github/matchers/gradle-build-kotlin-error-matcher.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: none 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /.github/matchers/gradle-build-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/.github/matchers/gradle-build-matcher.json -------------------------------------------------------------------------------- /.github/matchers/gradle-build-matcher.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: none 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/Android.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/README.md -------------------------------------------------------------------------------- /artwork/ic_gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/ic_gamepad.svg -------------------------------------------------------------------------------- /artwork/ic_microg_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/ic_microg_settings.svg -------------------------------------------------------------------------------- /artwork/ic_recaptcha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/ic_recaptcha.svg -------------------------------------------------------------------------------- /artwork/styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/README.md -------------------------------------------------------------------------------- /artwork/styles/fonts/OpenSans Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/fonts/OpenSans Regular.ttf -------------------------------------------------------------------------------- /artwork/styles/fonts/Roboto Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/fonts/Roboto Bold.ttf -------------------------------------------------------------------------------- /artwork/styles/fonts/Roboto Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/fonts/Roboto Medium.ttf -------------------------------------------------------------------------------- /artwork/styles/fonts/Roboto Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/fonts/Roboto Regular.ttf -------------------------------------------------------------------------------- /artwork/styles/fonts/combinations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/fonts/combinations.json -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/capital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/capital.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/city.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_generic.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_grocery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_grocery.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_lodging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_lodging.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_museum.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_res.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_res.svg -------------------------------------------------------------------------------- /artwork/styles/sprite_sources/poi_theatre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/sprite_sources/poi_theatre.svg -------------------------------------------------------------------------------- /artwork/styles/style-mapbox-outdoors-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/style-mapbox-outdoors-v12.json -------------------------------------------------------------------------------- /artwork/styles/style-microg-normal-mapbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/style-microg-normal-mapbox.json -------------------------------------------------------------------------------- /artwork/styles/style-microg-normal-stadia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/style-microg-normal-stadia.json -------------------------------------------------------------------------------- /artwork/styles/style-stadia-outdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/artwork/styles/style-stadia-outdoors.json -------------------------------------------------------------------------------- /fake-signature/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/fake-signature/build.gradle -------------------------------------------------------------------------------- /fake-signature/src/huawei/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/fake-signature/src/huawei/AndroidManifest.xml -------------------------------------------------------------------------------- /fake-signature/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/fake-signature/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /fake-signature/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/fake-signature/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /firebase-auth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/firebase-auth/build.gradle -------------------------------------------------------------------------------- /firebase-auth/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/firebase-auth/core/build.gradle -------------------------------------------------------------------------------- /firebase-auth/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/firebase-auth/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /firebase-dynamic-links/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/firebase-dynamic-links/build.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/publish-android.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradle/publish-android.gradle -------------------------------------------------------------------------------- /gradle/publish-java.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradle/publish-java.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/gradlew.bat -------------------------------------------------------------------------------- /play-services-ads-base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads-base/build.gradle -------------------------------------------------------------------------------- /play-services-ads-identifier/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads-identifier/build.gradle -------------------------------------------------------------------------------- /play-services-ads-identifier/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads-identifier/core/build.gradle -------------------------------------------------------------------------------- /play-services-ads-lite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads-lite/build.gradle -------------------------------------------------------------------------------- /play-services-ads-lite/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads-lite/core/build.gradle -------------------------------------------------------------------------------- /play-services-ads/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads/build.gradle -------------------------------------------------------------------------------- /play-services-ads/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads/core/build.gradle -------------------------------------------------------------------------------- /play-services-ads/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-ads/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /play-services-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-api/build.gradle -------------------------------------------------------------------------------- /play-services-api/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-api/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /play-services-api/src/main/aidl/com/google/android/gms/phenotype/Flag.aidl: -------------------------------------------------------------------------------- 1 | package com.google.android.gms.phenotype; 2 | 3 | parcelable Flag; 4 | -------------------------------------------------------------------------------- /play-services-appinvite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-appinvite/build.gradle -------------------------------------------------------------------------------- /play-services-appinvite/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-appinvite/core/build.gradle -------------------------------------------------------------------------------- /play-services-appset/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-appset/build.gradle -------------------------------------------------------------------------------- /play-services-appset/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-appset/core/build.gradle -------------------------------------------------------------------------------- /play-services-auth-api-phone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-auth-api-phone/build.gradle -------------------------------------------------------------------------------- /play-services-auth-api-phone/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-auth-api-phone/core/build.gradle -------------------------------------------------------------------------------- /play-services-auth-base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-auth-base/build.gradle -------------------------------------------------------------------------------- /play-services-auth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-auth/build.gradle -------------------------------------------------------------------------------- /play-services-base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-base/build.gradle -------------------------------------------------------------------------------- /play-services-base/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-base/core/build.gradle -------------------------------------------------------------------------------- /play-services-base/core/package/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-base/core/package/build.gradle -------------------------------------------------------------------------------- /play-services-basement/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-basement/build.gradle -------------------------------------------------------------------------------- /play-services-basement/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-basement/consumer-rules.pro -------------------------------------------------------------------------------- /play-services-basement/ktx/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-basement/ktx/build.gradle -------------------------------------------------------------------------------- /play-services-cast-framework/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-cast-framework/build.gradle -------------------------------------------------------------------------------- /play-services-cast-framework/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-cast-framework/core/build.gradle -------------------------------------------------------------------------------- /play-services-cast/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-cast/build.gradle -------------------------------------------------------------------------------- /play-services-cast/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-cast/core/build.gradle -------------------------------------------------------------------------------- /play-services-chimera-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-chimera-core/build.gradle -------------------------------------------------------------------------------- /play-services-clearcut/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-clearcut/build.gradle -------------------------------------------------------------------------------- /play-services-core-proto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-core-proto/build.gradle -------------------------------------------------------------------------------- /play-services-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-core/build.gradle -------------------------------------------------------------------------------- /play-services-core/multidex-keep.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-core/multidex-keep.pro -------------------------------------------------------------------------------- /play-services-core/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | ../proguard.flags -------------------------------------------------------------------------------- /play-services-cronet/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-cronet/core/build.gradle -------------------------------------------------------------------------------- /play-services-drive/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-drive/build.gradle -------------------------------------------------------------------------------- /play-services-droidguard/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-droidguard/build.gradle -------------------------------------------------------------------------------- /play-services-droidguard/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-droidguard/core/build.gradle -------------------------------------------------------------------------------- /play-services-fido/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-fido/build.gradle -------------------------------------------------------------------------------- /play-services-fido/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-fido/core/build.gradle -------------------------------------------------------------------------------- /play-services-fitness/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /play-services-fitness/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-fitness/build.gradle -------------------------------------------------------------------------------- /play-services-games/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-games/build.gradle -------------------------------------------------------------------------------- /play-services-gcm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-gcm/build.gradle -------------------------------------------------------------------------------- /play-services-gcm/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-gcm/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /play-services-gmscompliance/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-gmscompliance/build.gradle -------------------------------------------------------------------------------- /play-services-gmscompliance/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-gmscompliance/core/build.gradle -------------------------------------------------------------------------------- /play-services-iid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-iid/build.gradle -------------------------------------------------------------------------------- /play-services-iid/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-iid/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /play-services-location/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-location/build.gradle -------------------------------------------------------------------------------- /play-services-location/core/base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-location/core/base/build.gradle -------------------------------------------------------------------------------- /play-services-location/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-location/core/build.gradle -------------------------------------------------------------------------------- /play-services-maps/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-maps/build.gradle -------------------------------------------------------------------------------- /play-services-maps/core/hms/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-maps/core/hms/build.gradle -------------------------------------------------------------------------------- /play-services-maps/core/hms/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-maps/core/hms/proguard-rules.pro -------------------------------------------------------------------------------- /play-services-maps/core/hms/src/main/assets/.gitignore: -------------------------------------------------------------------------------- 1 | agconnect-services.json 2 | -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-maps/core/mapbox/build.gradle -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Open Sans Regular,Arial Unicode MS Regular: -------------------------------------------------------------------------------- 1 | Roboto Regular/ -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 10240-10495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 10496-10751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 10752-11007 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 11008-11263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/11264-11519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 11264-11519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/11520-11775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 11520-11775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/11776-12031.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 11776-12031 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 12032-12287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 12288-12543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 12544-12799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 12800-13055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 13056-13311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 13312-13567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 13568-13823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 13824-14079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 14080-14335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 14336-14591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 14592-14847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 14848-15103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 15104-15359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 1536-1791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 15360-15615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 15616-15871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 15872-16127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 16128-16383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 16384-16639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 16640-16895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 16896-17151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 17152-17407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 17408-17663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 17664-17919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 1792-2047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 17920-18175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 18176-18431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 18432-18687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 18688-18943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 18944-19199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 19200-19455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 19456-19711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 19712-19967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 19968-20223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 20224-20479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 2048-2303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 20480-20735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 20736-20991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 20992-21247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 21248-21503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 21504-21759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 21760-22015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 22016-22271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 22272-22527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 22528-22783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 22784-23039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 2304-2559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 23040-23295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 23296-23551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 23552-23807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 23808-24063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 24064-24319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 24320-24575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 24576-24831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 24832-25087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 25088-25343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 25344-25599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 2560-2815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 25600-25855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 25856-26111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 26112-26367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 26368-26623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 26624-26879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 26880-27135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 27136-27391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 27392-27647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 27648-27903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 27904-28159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 2816-3071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 28160-28415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 28416-28671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 28672-28927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 28928-29183 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 29184-29439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 29440-29695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 29696-29951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 29952-30207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 30208-30463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 30464-30719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 3072-3327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 30720-30975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 30976-31231 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 31232-31487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 31488-31743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 31744-31999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 32000-32255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 32256-32511 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 32512-32767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 32768-33023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 33024-33279 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 3328-3583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 33280-33535 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 33536-33791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 33792-34047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 34048-34303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 34304-34559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 34560-34815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 34816-35071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 35072-35327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 35328-35583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 35584-35839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 3584-3839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 35840-36095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 36096-36351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 36352-36607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 36608-36863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 36864-37119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 37120-37375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 37376-37631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 37632-37887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 37888-38143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 38144-38399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 3840-4095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 38400-38655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 38656-38911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 38912-39167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 39168-39423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 39424-39679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 39680-39935 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 39936-40191 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 40192-40447 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 40448-40703 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 40704-40959 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 4096-4351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 40960-41215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 41216-41471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 41472-41727 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 41728-41983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 41984-42239 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 42240-42495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/42496-42751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 42496-42751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/42752-43007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 42752-43007 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 43008-43263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/43264-43519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 43264-43519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 4352-4607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 43520-43775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/43776-44031.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 43776-44031 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 44032-44287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 44288-44543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 44544-44799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 44800-45055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 45056-45311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 45312-45567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 45568-45823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 45824-46079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 4608-4863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 46080-46335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 46336-46591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 46592-46847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 46848-47103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 47104-47359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 47360-47615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 47616-47871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 47872-48127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 48128-48383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 48384-48639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 4864-5119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 48640-48895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 48896-49151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 49152-49407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 49408-49663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 49664-49919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 49920-50175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 50176-50431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 50432-50687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 50688-50943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 50944-51199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 5120-5375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 51200-51455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 51456-51711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 51712-51967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 51968-52223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 52224-52479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 52480-52735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 52736-52991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 52992-53247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 53248-53503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 53504-53759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 5376-5631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 53760-54015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 54016-54271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 54272-54527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 54528-54783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 54784-55039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 55040-55295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 55296-55551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 55552-55807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 55808-56063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 56064-56319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 5632-5887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 56320-56575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 56576-56831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 56832-57087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 57088-57343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 57344-57599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 57600-57855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 57856-58111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 58112-58367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 58368-58623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 58624-58879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 5888-6143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 58880-59135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 59136-59391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 59392-59647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 59648-59903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 59904-60159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 60160-60415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 60416-60671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 60672-60927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 61184-61439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 6144-6399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 61440-61695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 61696-61951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 61952-62207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 62208-62463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 62464-62719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 62720-62975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 63232-63487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 63488-63743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 63744-63999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 6400-6655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 64000-64255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 64512-64767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 64768-65023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/6656-6911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 6656-6911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 6912-7167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/7168-7423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 7168-7423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/7424-7679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 7424-7679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 8960-9215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 9216-9471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 9728-9983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Bold/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Bold 4 | 9984-10239 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 10240-10495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 10496-10751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 10752-11007 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 11008-11263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/11264-11519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 11264-11519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/11520-11775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 11520-11775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/11776-12031.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 11776-12031 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 12032-12287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 12288-12543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 12544-12799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 12800-13055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 13056-13311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 13312-13567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 13568-13823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 13824-14079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 14080-14335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 14336-14591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 14592-14847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 14848-15103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 15104-15359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 1536-1791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 15360-15615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 15616-15871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 15872-16127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 16128-16383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 16384-16639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 16640-16895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 16896-17151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 17152-17407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 17408-17663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 17664-17919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 1792-2047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 17920-18175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 18176-18431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 18432-18687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 18688-18943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 18944-19199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 19200-19455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 19456-19711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 19712-19967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 19968-20223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 20224-20479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 2048-2303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 20480-20735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 20736-20991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 20992-21247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 21248-21503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 21504-21759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 21760-22015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 22016-22271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 22272-22527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 22528-22783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 22784-23039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 2304-2559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 23040-23295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 23296-23551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 23552-23807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 23808-24063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 24064-24319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 24320-24575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 24576-24831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 24832-25087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 25088-25343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 25344-25599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 2560-2815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 25600-25855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 25856-26111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 26112-26367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 26368-26623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 26624-26879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 26880-27135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 27136-27391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 27392-27647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 27648-27903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 27904-28159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 2816-3071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 28160-28415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 28416-28671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 28672-28927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 28928-29183 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 29184-29439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 29440-29695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 29696-29951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 29952-30207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 30208-30463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 30464-30719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 3072-3327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 30720-30975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 30976-31231 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 31232-31487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 31488-31743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 31744-31999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 32000-32255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 32256-32511 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 32512-32767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 32768-33023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 33024-33279 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 3328-3583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 33280-33535 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 33536-33791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 33792-34047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 34048-34303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 34304-34559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 34560-34815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 34816-35071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 35072-35327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 35328-35583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 35584-35839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 3584-3839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 35840-36095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 36096-36351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 36352-36607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 36608-36863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 36864-37119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 37120-37375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 37376-37631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 37632-37887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 37888-38143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 38144-38399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 3840-4095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 38400-38655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 38656-38911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 38912-39167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 39168-39423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 39424-39679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 39680-39935 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 39936-40191 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 40192-40447 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 40448-40703 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 40704-40959 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 4096-4351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 40960-41215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 41216-41471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 41472-41727 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 41728-41983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 41984-42239 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 42240-42495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/42496-42751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 42496-42751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/42752-43007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 42752-43007 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 43008-43263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/43264-43519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 43264-43519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 4352-4607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 43520-43775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/43776-44031.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 43776-44031 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 44032-44287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 44288-44543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 44544-44799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 44800-45055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 45056-45311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 45312-45567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 45568-45823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 45824-46079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 4608-4863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 46080-46335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 46336-46591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 46592-46847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 46848-47103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 47104-47359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 47360-47615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 47616-47871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 47872-48127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 48128-48383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 48384-48639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 4864-5119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 48640-48895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 48896-49151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 49152-49407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 49408-49663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 49664-49919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 49920-50175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 50176-50431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 50432-50687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 50688-50943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 50944-51199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 5120-5375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 51200-51455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 51456-51711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 51712-51967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 51968-52223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 52224-52479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 52480-52735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 52736-52991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 52992-53247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 53248-53503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 53504-53759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 5376-5631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 53760-54015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 54016-54271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 54272-54527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 54528-54783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 54784-55039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 55040-55295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 55296-55551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 55552-55807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 55808-56063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 56064-56319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 5632-5887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 56320-56575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 56576-56831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 56832-57087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 57088-57343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 57344-57599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 57600-57855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 57856-58111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 58112-58367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 58368-58623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 58624-58879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 5888-6143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 58880-59135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 59136-59391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 59392-59647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 59648-59903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 59904-60159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 60160-60415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 60416-60671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 60672-60927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 61184-61439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 6144-6399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 61440-61695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 61696-61951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 61952-62207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 62208-62463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 62464-62719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 62720-62975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 63232-63487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 63488-63743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 63744-63999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 6400-6655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 64000-64255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 64512-64767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 64768-65023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/6656-6911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 6656-6911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 6912-7167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/7168-7423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 7168-7423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/7424-7679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 7424-7679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 8960-9215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 9216-9471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 9728-9983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Medium/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Medium 4 | 9984-10239 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 10240-10495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 10496-10751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 10752-11007 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 11008-11263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/11264-11519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 11264-11519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/11520-11775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 11520-11775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/11776-12031.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 11776-12031 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 12032-12287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 12288-12543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 12544-12799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 12800-13055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 13056-13311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 13312-13567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 13568-13823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 13824-14079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 14080-14335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 14336-14591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 14592-14847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 14848-15103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 15104-15359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 1536-1791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 15360-15615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 15616-15871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 15872-16127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 16128-16383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 16384-16639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 16640-16895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 16896-17151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 17152-17407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 17408-17663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 17664-17919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 1792-2047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 17920-18175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 18176-18431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 18432-18687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 18688-18943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 18944-19199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 19200-19455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 19456-19711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 19712-19967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 19968-20223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 20224-20479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 2048-2303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 20480-20735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 20736-20991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 20992-21247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 21248-21503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 21504-21759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 21760-22015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 22016-22271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 22272-22527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 22528-22783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 22784-23039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 2304-2559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 23040-23295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 23296-23551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 23552-23807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 23808-24063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 24064-24319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 24320-24575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 24576-24831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 24832-25087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 25088-25343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 25344-25599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 2560-2815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 25600-25855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 25856-26111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 26112-26367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 26368-26623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 26624-26879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 26880-27135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 27136-27391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 27392-27647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 27648-27903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 27904-28159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 2816-3071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 28160-28415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 28416-28671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 28672-28927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 28928-29183 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 29184-29439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 29440-29695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 29696-29951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 29952-30207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 30208-30463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 30464-30719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 3072-3327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 30720-30975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 30976-31231 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 31232-31487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 31488-31743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 31744-31999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 32000-32255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 32256-32511 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 32512-32767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 32768-33023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 33024-33279 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 3328-3583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 33280-33535 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 33536-33791 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 33792-34047 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 34048-34303 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 34304-34559 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 34560-34815 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 34816-35071 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 35072-35327 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 35328-35583 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 35584-35839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 3584-3839 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 35840-36095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 36096-36351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 36352-36607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 36608-36863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 36864-37119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 37120-37375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 37376-37631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 37632-37887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 37888-38143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 38144-38399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 3840-4095 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 38400-38655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 38656-38911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 38912-39167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 39168-39423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 39424-39679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 39680-39935 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 39936-40191 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 40192-40447 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 40448-40703 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 40704-40959 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 4096-4351 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 40960-41215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 41216-41471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 41472-41727 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 41728-41983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 41984-42239 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 42240-42495 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/42496-42751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 42496-42751 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 43008-43263 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/43264-43519.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 43264-43519 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 4352-4607 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 43520-43775 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 44032-44287 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 44288-44543 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 44544-44799 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 44800-45055 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 45056-45311 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 45312-45567 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 45568-45823 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 45824-46079 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 4608-4863 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 46080-46335 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 46336-46591 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 46592-46847 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 46848-47103 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 47104-47359 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 47360-47615 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 47616-47871 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 47872-48127 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 48128-48383 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 48384-48639 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 4864-5119 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 48640-48895 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 48896-49151 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 49152-49407 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 49408-49663 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 49664-49919 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 49920-50175 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 50176-50431 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 50432-50687 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 50688-50943 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 50944-51199 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 5120-5375 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 51200-51455 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 51456-51711 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 51712-51967 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 51968-52223 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 52224-52479 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 52480-52735 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 52736-52991 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 52992-53247 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 53248-53503 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 53504-53759 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 5376-5631 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 53760-54015 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 54016-54271 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 54272-54527 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 54528-54783 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 54784-55039 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 55040-55295 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 55296-55551 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 55552-55807 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 55808-56063 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 56064-56319 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 5632-5887 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 56320-56575 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 56576-56831 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 56832-57087 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 57088-57343 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 57344-57599 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 57600-57855 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 57856-58111 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 58112-58367 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 58368-58623 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 58624-58879 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 5888-6143 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 58880-59135 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 59136-59391 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 59392-59647 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 59648-59903 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 59904-60159 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 60160-60415 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 60416-60671 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 60672-60927 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 61184-61439 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 6144-6399 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 61440-61695 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 61696-61951 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 61952-62207 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 62208-62463 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 62464-62719 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 62720-62975 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 63232-63487 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 63488-63743 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 63744-63999 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 6400-6655 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 64000-64255 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 64512-64767 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 64768-65023 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/6656-6911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 6656-6911 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 6912-7167 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/7168-7423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 7168-7423 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/7424-7679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 7424-7679 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 8960-9215 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 9216-9471 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 9728-9983 -------------------------------------------------------------------------------- /play-services-maps/core/mapbox/src/main/assets/Roboto Regular/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Roboto Regular 4 | 9984-10239 -------------------------------------------------------------------------------- /play-services-maps/core/vtm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-maps/core/vtm/build.gradle -------------------------------------------------------------------------------- /play-services-maps/src/main/aidl/com/google/android/gms/maps/model/Cap.aidl: -------------------------------------------------------------------------------- 1 | package com.google.android.gms.maps.model; 2 | 3 | parcelable Cap; 4 | -------------------------------------------------------------------------------- /play-services-maps/src/main/aidl/com/google/android/gms/maps/model/Dot.aidl: -------------------------------------------------------------------------------- 1 | package com.google.android.gms.maps.model; 2 | 3 | parcelable Dot; 4 | -------------------------------------------------------------------------------- /play-services-maps/src/main/aidl/com/google/android/gms/maps/model/Gap.aidl: -------------------------------------------------------------------------------- 1 | package com.google.android.gms.maps.model; 2 | 3 | parcelable Gap; 4 | -------------------------------------------------------------------------------- /play-services-measurement-base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-measurement-base/build.gradle -------------------------------------------------------------------------------- /play-services-nearby/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-nearby/build.gradle -------------------------------------------------------------------------------- /play-services-nearby/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-nearby/core/build.gradle -------------------------------------------------------------------------------- /play-services-oss-licenses/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-oss-licenses/build.gradle -------------------------------------------------------------------------------- /play-services-oss-licenses/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-oss-licenses/core/build.gradle -------------------------------------------------------------------------------- /play-services-panorama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-panorama/build.gradle -------------------------------------------------------------------------------- /play-services-panorama/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-panorama/core/build.gradle -------------------------------------------------------------------------------- /play-services-pay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-pay/build.gradle -------------------------------------------------------------------------------- /play-services-pay/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-pay/core/build.gradle -------------------------------------------------------------------------------- /play-services-phenotype/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-phenotype/build.gradle -------------------------------------------------------------------------------- /play-services-places/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-places/build.gradle -------------------------------------------------------------------------------- /play-services-recaptcha/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-recaptcha/build.gradle -------------------------------------------------------------------------------- /play-services-recaptcha/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-recaptcha/core/build.gradle -------------------------------------------------------------------------------- /play-services-safetynet/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-safetynet/build.gradle -------------------------------------------------------------------------------- /play-services-safetynet/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-safetynet/core/build.gradle -------------------------------------------------------------------------------- /play-services-tapandpay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-tapandpay/build.gradle -------------------------------------------------------------------------------- /play-services-tapandpay/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-tapandpay/core/build.gradle -------------------------------------------------------------------------------- /play-services-tasks/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-tasks/build.gradle -------------------------------------------------------------------------------- /play-services-tasks/ktx/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-tasks/ktx/build.gradle -------------------------------------------------------------------------------- /play-services-vision-common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-vision-common/build.gradle -------------------------------------------------------------------------------- /play-services-vision/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-vision/build.gradle -------------------------------------------------------------------------------- /play-services-vision/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-vision/core/build.gradle -------------------------------------------------------------------------------- /play-services-wearable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-wearable/build.gradle -------------------------------------------------------------------------------- /play-services-wearable/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services-wearable/core/build.gradle -------------------------------------------------------------------------------- /play-services/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services/build.gradle -------------------------------------------------------------------------------- /play-services/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/play-services/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/proguard.flags -------------------------------------------------------------------------------- /safe-parcel-processor/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'kotlin' -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/settings.gradle -------------------------------------------------------------------------------- /vending-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/build.gradle -------------------------------------------------------------------------------- /vending-app/src/huaweilh/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/huaweilh/AndroidManifest.xml -------------------------------------------------------------------------------- /vending-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /vending-app/src/main/proto/GooglePlay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/proto/GooglePlay.proto -------------------------------------------------------------------------------- /vending-app/src/main/proto/Locality.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/proto/Locality.proto -------------------------------------------------------------------------------- /vending-app/src/main/proto/Timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/proto/Timestamp.proto -------------------------------------------------------------------------------- /vending-app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /vending-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /vending-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YT-Advanced/GmsCore/HEAD/vending-app/src/main/res/values/styles.xml --------------------------------------------------------------------------------