├── .allstar └── binary_artifacts.yaml ├── CONTRIBUTING.md ├── CONTRIBUTING.md.meta ├── GooglePlayPluginSamples.meta ├── GooglePlayPluginSamples ├── com.google.play.assetdelivery.meta └── com.google.play.assetdelivery │ ├── AssetDeliveryDemo.meta │ ├── AssetDeliveryDemo │ ├── Editor.meta │ ├── Editor │ │ ├── Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.Editor.asmdef │ │ ├── Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.Editor.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── DemoBuilder.cs │ │ │ └── DemoBuilder.cs.meta │ ├── Effects.meta │ ├── Effects │ │ ├── Galaxy.meta │ │ ├── Galaxy │ │ │ ├── Galaxy.mat │ │ │ ├── Galaxy.mat.meta │ │ │ ├── GalaxyBack.png │ │ │ ├── GalaxyBack.png.meta │ │ │ ├── GalaxyBottom.png │ │ │ ├── GalaxyBottom.png.meta │ │ │ ├── GalaxyFront.png │ │ │ ├── GalaxyFront.png.meta │ │ │ ├── GalaxyLeft.png │ │ │ ├── GalaxyLeft.png.meta │ │ │ ├── GalaxyRight.png │ │ │ ├── GalaxyRight.png.meta │ │ │ ├── GalaxyTop.png │ │ │ └── GalaxyTop.png.meta │ │ ├── RadialWisps.meta │ │ └── RadialWisps │ │ │ ├── Caustic1.png │ │ │ ├── Caustic1.png.meta │ │ │ ├── Caustic2.png │ │ │ ├── Caustic2.png.meta │ │ │ ├── RadialWisps.mat │ │ │ ├── RadialWisps.mat.meta │ │ │ ├── RadialWisps.shader │ │ │ └── RadialWisps.shader.meta │ ├── Models.meta │ ├── Models │ │ ├── Gamepad.fbx │ │ ├── Gamepad.fbx.meta │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── ControllerMat.mat │ │ │ ├── ControllerMat.mat.meta │ │ │ ├── ControllerParticleMat.mat │ │ │ ├── ControllerParticleMat.mat.meta │ │ │ ├── RedButtonMat.mat │ │ │ ├── RedButtonMat.mat.meta │ │ │ ├── YellowButtonMat.mat │ │ │ └── YellowButtonMat.mat.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── AssetDeliveryDemo.unity │ │ ├── AssetDeliveryDemo.unity.meta │ │ ├── ControllerExample.unity │ │ ├── ControllerExample.unity.meta │ │ ├── GalaxyExample.unity │ │ ├── GalaxyExample.unity.meta │ │ ├── PaddingFile.bytes │ │ ├── PaddingFile.bytes.meta │ │ ├── UndeliveredFile.txt │ │ └── UndeliveredFile.txt.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── AssetBundleDownloader.cs │ │ ├── AssetBundleDownloader.cs.meta │ │ ├── AssetPackBatchDownloader.cs │ │ ├── AssetPackBatchDownloader.cs.meta │ │ ├── AssetPackDownloader.cs │ │ ├── AssetPackDownloader.cs.meta │ │ ├── DemoController.cs │ │ ├── DemoController.cs.meta │ │ ├── DemoPager.cs │ │ ├── DemoPager.cs.meta │ │ ├── DownloadDisplay.cs │ │ ├── DownloadDisplay.cs.meta │ │ ├── Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.asmdef │ │ ├── Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.asmdef.meta │ │ ├── LookAround.cs │ │ ├── LookAround.cs.meta │ │ ├── RotateInPlace.cs │ │ ├── RotateInPlace.cs.meta │ │ ├── SceneNavigator.cs │ │ ├── SceneNavigator.cs.meta │ │ ├── TextAssetHolder.cs │ │ └── TextAssetHolder.cs.meta │ ├── TextureTargetingDemo.meta │ └── TextureTargetingDemo │ ├── Materials.meta │ ├── Materials │ ├── GreenBrickTiles.mat │ └── GreenBrickTiles.mat.meta │ ├── Scenes.meta │ ├── Scenes │ ├── LoadingScene.unity │ ├── LoadingScene.unity.meta │ ├── TexturedScene.unity │ └── TexturedScene.unity.meta │ ├── Scripts.meta │ ├── Scripts │ ├── Google.Play.AssetDelivery.Samples.TextureTargetingDemo.asmdef │ ├── Google.Play.AssetDelivery.Samples.TextureTargetingDemo.asmdef.meta │ ├── TextureFormatDisplayer.cs │ ├── TextureFormatDisplayer.cs.meta │ ├── TexturedSceneLoader.cs │ └── TexturedSceneLoader.cs.meta │ ├── Textures.meta │ └── Textures │ ├── GreenBrickTiles.jpeg │ └── GreenBrickTiles.jpeg.meta ├── GooglePlayPlugins.meta ├── GooglePlayPlugins ├── com.google.android.appbundle.meta ├── com.google.android.appbundle │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Google.Android.AppBundle.Editor.asmdef │ │ ├── Google.Android.AppBundle.Editor.asmdef.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AndroidAppBundle.cs │ │ │ ├── AndroidAppBundle.cs.meta │ │ │ ├── AndroidBuildException.cs │ │ │ ├── AndroidBuildException.cs.meta │ │ │ ├── AndroidBuildHelper.cs │ │ │ ├── AndroidBuildHelper.cs.meta │ │ │ ├── AndroidBuildOptions.cs │ │ │ ├── AndroidBuildOptions.cs.meta │ │ │ ├── AndroidBuildReport.cs │ │ │ ├── AndroidBuildReport.cs.meta │ │ │ ├── AssetBundleBuilder.cs │ │ │ ├── AssetBundleBuilder.cs.meta │ │ │ ├── AssetOnlyBuildOptions.cs │ │ │ ├── AssetOnlyBuildOptions.cs.meta │ │ │ ├── AssetPack.cs │ │ │ ├── AssetPack.cs.meta │ │ │ ├── AssetPackConfig.cs │ │ │ ├── AssetPackConfig.cs.meta │ │ │ ├── AssetPackConfigSerializer.cs │ │ │ ├── AssetPackConfigSerializer.cs.meta │ │ │ ├── AssetPackDeliveryMode.cs │ │ │ ├── AssetPackDeliveryMode.cs.meta │ │ │ ├── Bundletool.cs │ │ │ ├── Bundletool.cs.meta │ │ │ ├── BundletoolBuildMode.cs │ │ │ ├── BundletoolBuildMode.cs.meta │ │ │ ├── CompressionOptions.cs │ │ │ ├── CompressionOptions.cs.meta │ │ │ ├── DeviceTier.cs │ │ │ ├── DeviceTier.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── AndroidArchitectureHelper.cs │ │ │ │ ├── AndroidArchitectureHelper.cs.meta │ │ │ │ ├── AndroidManifest.meta │ │ │ │ ├── AndroidManifest │ │ │ │ │ ├── AssetPackManifestHelper.cs │ │ │ │ │ ├── AssetPackManifestHelper.cs.meta │ │ │ │ │ ├── IAssetPackManifestTransformer.cs │ │ │ │ │ ├── IAssetPackManifestTransformer.cs.meta │ │ │ │ │ ├── ManifestConstants.cs │ │ │ │ │ └── ManifestConstants.cs.meta │ │ │ │ ├── AppBundleEditorMenu.cs │ │ │ │ ├── AppBundleEditorMenu.cs.meta │ │ │ │ ├── AppBundlePublisher.cs │ │ │ │ ├── AppBundlePublisher.cs.meta │ │ │ │ ├── AssetOnlyOptions.cs │ │ │ │ ├── AssetOnlyOptions.cs.meta │ │ │ │ ├── AssetPackManifestTransformerRegistry.cs │ │ │ │ ├── AssetPackManifestTransformerRegistry.cs.meta │ │ │ │ ├── AssetPacks.meta │ │ │ │ ├── AssetPacks │ │ │ │ │ ├── AssetBundleFolder.cs │ │ │ │ │ ├── AssetBundleFolder.cs.meta │ │ │ │ │ ├── AssetBundlePack.cs │ │ │ │ │ ├── AssetBundlePack.cs.meta │ │ │ │ │ ├── AssetBundleVariant.cs │ │ │ │ │ ├── AssetBundleVariant.cs.meta │ │ │ │ │ ├── AssetDeliveryConfig.cs │ │ │ │ │ ├── AssetDeliveryConfig.cs.meta │ │ │ │ │ ├── AssetDeliveryConfigSerializer.cs │ │ │ │ │ ├── AssetDeliveryConfigSerializer.cs.meta │ │ │ │ │ ├── AssetDeliveryWindow.cs │ │ │ │ │ ├── AssetDeliveryWindow.cs.meta │ │ │ │ │ ├── AssetPackError.cs │ │ │ │ │ ├── AssetPackError.cs.meta │ │ │ │ │ ├── AssetPackFolderState.cs │ │ │ │ │ ├── AssetPackFolderState.cs.meta │ │ │ │ │ ├── AssetPackValidatorRegistry.cs │ │ │ │ │ ├── AssetPackValidatorRegistry.cs.meta │ │ │ │ │ ├── IAssetPackValidator.cs │ │ │ │ │ ├── IAssetPackValidator.cs.meta │ │ │ │ │ ├── TextureTargetingTools.cs │ │ │ │ │ └── TextureTargetingTools.cs.meta │ │ │ │ ├── BuildAndRunner.cs │ │ │ │ ├── BuildAndRunner.cs.meta │ │ │ │ ├── BuildSettingsWindow.cs │ │ │ │ ├── BuildSettingsWindow.cs.meta │ │ │ │ ├── BuildTools.meta │ │ │ │ ├── BuildTools │ │ │ │ │ ├── AndroidAssetPackagingTool.cs │ │ │ │ │ ├── AndroidAssetPackagingTool.cs.meta │ │ │ │ │ ├── AndroidBuildTools.cs │ │ │ │ │ ├── AndroidBuildTools.cs.meta │ │ │ │ │ ├── AndroidBuilder.cs │ │ │ │ │ ├── AndroidBuilder.cs.meta │ │ │ │ │ ├── AndroidDebugBridge.cs │ │ │ │ │ ├── AndroidDebugBridge.cs.meta │ │ │ │ │ ├── AndroidSdk.cs │ │ │ │ │ ├── AndroidSdk.cs.meta │ │ │ │ │ ├── AndroidSdkPlatform.cs │ │ │ │ │ ├── AndroidSdkPlatform.cs.meta │ │ │ │ │ ├── ApkSigner.cs │ │ │ │ │ ├── ApkSigner.cs.meta │ │ │ │ │ ├── AppBundleBuilder.cs │ │ │ │ │ ├── AppBundleBuilder.cs.meta │ │ │ │ │ ├── AppBundleRunner.cs │ │ │ │ │ ├── AppBundleRunner.cs.meta │ │ │ │ │ ├── BuildToolLogger.cs │ │ │ │ │ ├── BuildToolLogger.cs.meta │ │ │ │ │ ├── BuildToolNotInitializedException.cs │ │ │ │ │ ├── BuildToolNotInitializedException.cs.meta │ │ │ │ │ ├── BundletoolConfig.cs │ │ │ │ │ ├── BundletoolConfig.cs.meta │ │ │ │ │ ├── BundletoolExtensions.cs │ │ │ │ │ ├── BundletoolExtensions.cs.meta │ │ │ │ │ ├── BundletoolHelper.cs │ │ │ │ │ ├── BundletoolHelper.cs.meta │ │ │ │ │ ├── IBuildTool.cs │ │ │ │ │ ├── IBuildTool.cs.meta │ │ │ │ │ ├── JarSigner.cs │ │ │ │ │ ├── JarSigner.cs.meta │ │ │ │ │ ├── JavaUtils.cs │ │ │ │ │ ├── JavaUtils.cs.meta │ │ │ │ │ ├── PostBuildRunner.cs │ │ │ │ │ ├── PostBuildRunner.cs.meta │ │ │ │ │ ├── PostBuildTask.cs │ │ │ │ │ ├── PostBuildTask.cs.meta │ │ │ │ │ ├── ReleaseBuildHelper.cs │ │ │ │ │ ├── ReleaseBuildHelper.cs.meta │ │ │ │ │ ├── ZipUtils.cs │ │ │ │ │ └── ZipUtils.cs.meta │ │ │ │ ├── BuiltInPadHelper.cs │ │ │ │ ├── BuiltInPadHelper.cs.meta │ │ │ │ ├── Config.meta │ │ │ │ ├── Config │ │ │ │ │ ├── AndroidBuildConfiguration.cs │ │ │ │ │ ├── AndroidBuildConfiguration.cs.meta │ │ │ │ │ ├── SerializableAssetBundle.cs │ │ │ │ │ ├── SerializableAssetBundle.cs.meta │ │ │ │ │ ├── SerializableAssetPack.cs │ │ │ │ │ ├── SerializableAssetPack.cs.meta │ │ │ │ │ ├── SerializableAssetPackConfig.cs │ │ │ │ │ ├── SerializableAssetPackConfig.cs.meta │ │ │ │ │ ├── SerializableMultiTargetingAssetBundle.cs │ │ │ │ │ ├── SerializableMultiTargetingAssetBundle.cs.meta │ │ │ │ │ ├── SerializableMultiTargetingAssetPack.cs │ │ │ │ │ ├── SerializableMultiTargetingAssetPack.cs.meta │ │ │ │ │ ├── SerializableTargetedDirectoryPath.cs │ │ │ │ │ ├── SerializableTargetedDirectoryPath.cs.meta │ │ │ │ │ ├── SerializationHelper.cs │ │ │ │ │ └── SerializationHelper.cs.meta │ │ │ │ ├── CreateBundleOptions.cs │ │ │ │ ├── CreateBundleOptions.cs.meta │ │ │ │ ├── DeprecatedAarDetector.cs │ │ │ │ ├── DeprecatedAarDetector.cs.meta │ │ │ │ ├── DeviceTierTargetingTools.cs │ │ │ │ ├── DeviceTierTargetingTools.cs.meta │ │ │ │ ├── GoogleMenuItems.cs │ │ │ │ ├── GoogleMenuItems.cs.meta │ │ │ │ ├── IBuildAndRunExtension.cs │ │ │ │ ├── IBuildAndRunExtension.cs.meta │ │ │ │ ├── IBuildModeProvider.cs │ │ │ │ ├── IBuildModeProvider.cs.meta │ │ │ │ ├── PlayCoreConflictDetector.cs │ │ │ │ ├── PlayCoreConflictDetector.cs.meta │ │ │ │ ├── PlayServices.meta │ │ │ │ ├── PlayServices │ │ │ │ │ ├── AndroidSdkManager.cs │ │ │ │ │ ├── AndroidSdkManager.cs.meta │ │ │ │ │ ├── CommandLine.cs │ │ │ │ │ ├── CommandLine.cs.meta │ │ │ │ │ ├── CommandLineDialog.cs │ │ │ │ │ ├── CommandLineDialog.cs.meta │ │ │ │ │ ├── Logger.cs │ │ │ │ │ ├── Logger.cs.meta │ │ │ │ │ ├── PlayServicesResolver.cs │ │ │ │ │ ├── PlayServicesResolver.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── TextAreaDialog.cs │ │ │ │ │ └── TextAreaDialog.cs.meta │ │ │ │ ├── Registry.cs │ │ │ │ ├── Registry.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ │ ├── AndroidSdkPackageInstaller.cs │ │ │ │ │ ├── AndroidSdkPackageInstaller.cs.meta │ │ │ │ │ ├── CommandLineParameters.cs │ │ │ │ │ ├── CommandLineParameters.cs.meta │ │ │ │ │ ├── EmptyCollection.cs │ │ │ │ │ ├── EmptyCollection.cs.meta │ │ │ │ │ ├── EmptyDictionary.cs │ │ │ │ │ ├── EmptyDictionary.cs.meta │ │ │ │ │ ├── NameAndDescriptionAttribute.cs │ │ │ │ │ ├── NameAndDescriptionAttribute.cs.meta │ │ │ │ │ ├── PostBuildCommandLineDialog.cs │ │ │ │ │ ├── PostBuildCommandLineDialog.cs.meta │ │ │ │ │ ├── RegexHelper.cs │ │ │ │ │ ├── RegexHelper.cs.meta │ │ │ │ │ ├── WindowUtils.cs │ │ │ │ │ └── WindowUtils.cs.meta │ │ │ ├── TextureCompressionFormat.cs │ │ │ └── TextureCompressionFormat.cs.meta │ │ ├── Tools.meta │ │ └── Tools │ │ │ ├── bundletool-all.jar │ │ │ └── bundletool-all.jar.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.appupdate.meta ├── com.google.play.appupdate │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.xml │ │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ │ ├── app_update.txt │ │ └── app_update.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.AppUpdate.asmdef │ │ ├── Google.Play.AppUpdate.asmdef.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── com.google.play.appupdate.metadata.jar │ │ │ └── com.google.play.appupdate.metadata.jar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── AppUpdateErrorCode.cs │ │ │ ├── AppUpdateErrorCode.cs.meta │ │ │ ├── AppUpdateInfo.cs │ │ │ ├── AppUpdateInfo.cs.meta │ │ │ ├── AppUpdateManager.cs │ │ │ ├── AppUpdateManager.cs.meta │ │ │ ├── AppUpdateOptions.cs │ │ │ ├── AppUpdateOptions.cs.meta │ │ │ ├── AppUpdateRequest.cs │ │ │ ├── AppUpdateRequest.cs.meta │ │ │ ├── AppUpdateStatus.cs │ │ │ ├── AppUpdateStatus.cs.meta │ │ │ ├── AppUpdateType.cs │ │ │ ├── AppUpdateType.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── AppUpdateAsyncOperation.cs │ │ │ ├── AppUpdateAsyncOperation.cs.meta │ │ │ ├── AppUpdateHandler.cs │ │ │ ├── AppUpdateHandler.cs.meta │ │ │ ├── AppUpdateManagerInternal.cs │ │ │ ├── AppUpdateManagerInternal.cs.meta │ │ │ ├── AppUpdateManagerPlayCore.cs │ │ │ ├── AppUpdateManagerPlayCore.cs.meta │ │ │ ├── AppUpdatePlayCoreTranslator.cs │ │ │ ├── AppUpdatePlayCoreTranslator.cs.meta │ │ │ ├── AppUpdateRequestImpl.cs │ │ │ ├── AppUpdateRequestImpl.cs.meta │ │ │ ├── AppUpdateState.cs │ │ │ ├── AppUpdateState.cs.meta │ │ │ ├── AppUpdateStateListener.cs │ │ │ └── AppUpdateStateListener.cs.meta │ │ │ ├── UpdateAvailability.cs │ │ │ └── UpdateAvailability.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.assetdelivery.meta ├── com.google.play.assetdelivery │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.xml │ │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ │ ├── asset_delivery.txt │ │ └── asset_delivery.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.AssetDelivery.asmdef │ │ ├── Google.Play.AssetDelivery.asmdef.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── com.google.play.assetdelivery.metadata.jar │ │ │ └── com.google.play.assetdelivery.metadata.jar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── AssetDeliveryErrorCode.cs │ │ │ ├── AssetDeliveryErrorCode.cs.meta │ │ │ ├── AssetDeliveryStatus.cs │ │ │ ├── AssetDeliveryStatus.cs.meta │ │ │ ├── AssetLocation.cs │ │ │ ├── AssetLocation.cs.meta │ │ │ ├── AssetPackUpdateAvailability.cs │ │ │ ├── AssetPackUpdateAvailability.cs.meta │ │ │ ├── ConfirmationDialogResult.cs │ │ │ ├── ConfirmationDialogResult.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── AssetDeliveryAsyncOperation.cs │ │ │ ├── AssetDeliveryAsyncOperation.cs.meta │ │ │ ├── AssetDeliveryUpdateHandler.cs │ │ │ ├── AssetDeliveryUpdateHandler.cs.meta │ │ │ ├── AssetLocationImpl.cs │ │ │ ├── AssetLocationImpl.cs.meta │ │ │ ├── AssetPackLocation.cs │ │ │ ├── AssetPackLocation.cs.meta │ │ │ ├── AssetPackManager.cs │ │ │ ├── AssetPackManager.cs.meta │ │ │ ├── AssetPackState.cs │ │ │ ├── AssetPackState.cs.meta │ │ │ ├── AssetPackStateUpdateListener.cs │ │ │ ├── AssetPackStateUpdateListener.cs.meta │ │ │ ├── AssetPackStates.cs │ │ │ ├── AssetPackStates.cs.meta │ │ │ ├── AssetPackStorageMethod.cs │ │ │ ├── AssetPackStorageMethod.cs.meta │ │ │ ├── PlayAssetBundleRequestImpl.cs │ │ │ ├── PlayAssetBundleRequestImpl.cs.meta │ │ │ ├── PlayAssetDeliveryInternal.cs │ │ │ ├── PlayAssetDeliveryInternal.cs.meta │ │ │ ├── PlayAssetPackBatchRequestImpl.cs │ │ │ ├── PlayAssetPackBatchRequestImpl.cs.meta │ │ │ ├── PlayAssetPackDownloadInfoImpl.cs │ │ │ ├── PlayAssetPackDownloadInfoImpl.cs.meta │ │ │ ├── PlayAssetPackRequestImpl.cs │ │ │ ├── PlayAssetPackRequestImpl.cs.meta │ │ │ ├── PlayCoreTranslator.cs │ │ │ ├── PlayCoreTranslator.cs.meta │ │ │ ├── PlayRequestRepository.cs │ │ │ ├── PlayRequestRepository.cs.meta │ │ │ ├── UpdateAvailabilityTranslator.cs │ │ │ └── UpdateAvailabilityTranslator.cs.meta │ │ │ ├── PlayAssetBundleRequest.cs │ │ │ ├── PlayAssetBundleRequest.cs.meta │ │ │ ├── PlayAssetDelivery.cs │ │ │ ├── PlayAssetDelivery.cs.meta │ │ │ ├── PlayAssetPackBatchRequest.cs │ │ │ ├── PlayAssetPackBatchRequest.cs.meta │ │ │ ├── PlayAssetPackDownloadInfo.cs │ │ │ ├── PlayAssetPackDownloadInfo.cs.meta │ │ │ ├── PlayAssetPackRequest.cs │ │ │ └── PlayAssetPackRequest.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.billing.meta ├── com.google.play.billing │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Google.Play.Billing.Editor.asmdef │ │ ├── Google.Play.Billing.Editor.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── GooglePlayBillingBuildHelper.cs │ │ │ ├── GooglePlayBillingBuildHelper.cs.meta │ │ │ ├── GooglePlayBillingBuildSettings.cs │ │ │ ├── GooglePlayBillingBuildSettings.cs.meta │ │ │ ├── GooglePlayBillingMenu.cs │ │ │ └── GooglePlayBillingMenu.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ │ ├── billing.txt │ │ └── billing.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── GooglePlayBilling.aar │ │ │ └── GooglePlayBilling.aar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── GooglePlayStoreImpl.cs │ │ │ ├── GooglePlayStoreImpl.cs.meta │ │ │ ├── GooglePlayStoreModule.cs │ │ │ ├── GooglePlayStoreModule.cs.meta │ │ │ ├── GooglePlayStoreProrationMode.cs │ │ │ ├── GooglePlayStoreProrationMode.cs.meta │ │ │ ├── GooglePlayStoreUnsupportedException.cs │ │ │ ├── GooglePlayStoreUnsupportedException.cs.meta │ │ │ ├── IGooglePlayConfiguration.cs │ │ │ ├── IGooglePlayConfiguration.cs.meta │ │ │ ├── IGooglePlayStoreExtensions.cs │ │ │ ├── IGooglePlayStoreExtensions.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── AcknowledgeResponseListener.cs │ │ │ ├── AcknowledgeResponseListener.cs.meta │ │ │ ├── BillingClientStateListener.cs │ │ │ ├── BillingClientStateListener.cs.meta │ │ │ ├── BillingResponseCode.cs │ │ │ ├── BillingResponseCode.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── ConsumeResponseListener.cs │ │ │ ├── ConsumeResponseListener.cs.meta │ │ │ ├── GooglePlayBillingInventory.cs │ │ │ ├── GooglePlayBillingInventory.cs.meta │ │ │ ├── GooglePlayBillingUtil.cs │ │ │ ├── GooglePlayBillingUtil.cs.meta │ │ │ ├── JniUtils.cs │ │ │ ├── JniUtils.cs.meta │ │ │ ├── PriceChangeConfirmationListener.cs │ │ │ ├── PriceChangeConfirmationListener.cs.meta │ │ │ ├── Purchase.cs │ │ │ ├── Purchase.cs.meta │ │ │ ├── PurchaseUpdatedListener.cs │ │ │ ├── PurchaseUpdatedListener.cs.meta │ │ │ ├── SkuDetails.cs │ │ │ ├── SkuDetails.cs.meta │ │ │ ├── SkuDetailsResponseListener.cs │ │ │ ├── SkuDetailsResponseListener.cs.meta │ │ │ ├── SkuType.cs │ │ │ └── SkuType.cs.meta │ │ │ ├── Mock.meta │ │ │ └── Mock │ │ │ ├── FakeGooglePlayConfiguration.cs │ │ │ ├── FakeGooglePlayConfiguration.cs.meta │ │ │ ├── FakeGooglePlayStoreExtensions.cs │ │ │ └── FakeGooglePlayStoreExtensions.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.common.meta ├── com.google.play.common │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.Common.asmdef │ │ ├── Google.Play.Common.asmdef.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── com.google.play.common.metadata.jar │ │ │ └── com.google.play.common.metadata.jar.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── AndroidConstants.cs │ │ │ │ ├── AndroidConstants.cs.meta │ │ │ │ ├── PlayAsyncOperationImpl.cs │ │ │ │ └── PlayAsyncOperationImpl.cs.meta │ │ │ ├── LoadingScreen.meta │ │ │ ├── LoadingScreen │ │ │ │ ├── LoadingBar.cs │ │ │ │ ├── LoadingBar.cs.meta │ │ │ │ ├── LoadingScreen.cs │ │ │ │ ├── LoadingScreen.cs.meta │ │ │ │ ├── ScrollingFillAnimator.cs │ │ │ │ └── ScrollingFillAnimator.cs.meta │ │ │ ├── PlayAsyncOperation.cs │ │ │ ├── PlayAsyncOperation.cs.meta │ │ │ ├── UnityPlayerHelper.cs │ │ │ ├── UnityPlayerHelper.cs.meta │ │ │ ├── VoidResult.cs │ │ │ └── VoidResult.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── GooglePlayInstantLoadingTile.png │ │ │ ├── GooglePlayInstantLoadingTile.png.meta │ │ │ ├── GooglePlayInstantRetryButton.png │ │ │ └── GooglePlayInstantRetryButton.png.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.core.meta ├── com.google.play.core │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.xml │ │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ │ ├── common.txt │ │ └── common.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.Core.asmdef │ │ ├── Google.Play.Core.asmdef.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── com.google.play.core.metadata.jar │ │ │ └── com.google.play.core.metadata.jar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ ├── ActivityResult.cs │ │ │ ├── ActivityResult.cs.meta │ │ │ ├── PlayCoreConstants.cs │ │ │ ├── PlayCoreConstants.cs.meta │ │ │ ├── PlayCoreEventHandler.cs │ │ │ ├── PlayCoreEventHandler.cs.meta │ │ │ ├── PlayCoreHelper.cs │ │ │ ├── PlayCoreHelper.cs.meta │ │ │ ├── PlayCoreOnFailureListener.cs │ │ │ ├── PlayCoreOnFailureListener.cs.meta │ │ │ ├── PlayCoreOnSuccessListener.cs │ │ │ ├── PlayCoreOnSuccessListener.cs.meta │ │ │ ├── PlayServicesTask.cs │ │ │ ├── PlayServicesTask.cs.meta │ │ │ ├── TaskOnFailureListener.cs │ │ │ ├── TaskOnFailureListener.cs.meta │ │ │ ├── TaskOnSuccessListener.cs │ │ │ └── TaskOnSuccessListener.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.inputmapping.meta ├── com.google.play.inputmapping │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.xml │ │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.InputMapping.asmdef │ │ ├── Google.Play.InputMapping.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── AndroidKeycode.cs │ │ │ ├── AndroidKeycode.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── InputMapHelper.cs │ │ │ ├── InputMapHelper.cs.meta │ │ │ ├── InputMapToJavaConverter.cs │ │ │ ├── InputMapToJavaConverter.cs.meta │ │ │ ├── InputMappingClientInternal.cs │ │ │ ├── InputMappingClientInternal.cs.meta │ │ │ ├── InputMappingClientNoOp.cs │ │ │ ├── InputMappingClientNoOp.cs.meta │ │ │ ├── JavaConstants.cs │ │ │ ├── JavaConstants.cs.meta │ │ │ ├── UnityInputMappingProviderProxy.cs │ │ │ └── UnityInputMappingProviderProxy.cs.meta │ │ │ ├── PlayInput.cs │ │ │ ├── PlayInput.cs.meta │ │ │ ├── PlayInputAction.cs │ │ │ ├── PlayInputAction.cs.meta │ │ │ ├── PlayInputControls.cs │ │ │ ├── PlayInputControls.cs.meta │ │ │ ├── PlayInputGroup.cs │ │ │ ├── PlayInputGroup.cs.meta │ │ │ ├── PlayInputMap.cs │ │ │ ├── PlayInputMap.cs.meta │ │ │ ├── PlayInputMappingClient.cs │ │ │ ├── PlayInputMappingClient.cs.meta │ │ │ ├── PlayInputMappingProvider.cs │ │ │ ├── PlayInputMappingProvider.cs.meta │ │ │ ├── PlayMouseAction.cs │ │ │ ├── PlayMouseAction.cs.meta │ │ │ ├── PlayMouseSettings.cs │ │ │ └── PlayMouseSettings.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.instant.meta ├── com.google.play.instant │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Google.Play.Instant.Editor.asmdef │ │ ├── Google.Play.Instant.Editor.asmdef.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── AndroidManifest.meta │ │ │ │ ├── AndroidManifest │ │ │ │ │ ├── AndroidManifestHelper.cs │ │ │ │ │ ├── AndroidManifestHelper.cs.meta │ │ │ │ │ ├── IAndroidManifestUpdater.cs │ │ │ │ │ ├── IAndroidManifestUpdater.cs.meta │ │ │ │ │ ├── LegacyAndroidManifestUpdater.cs │ │ │ │ │ ├── LegacyAndroidManifestUpdater.cs.meta │ │ │ │ │ ├── PlayInstantAssetPackManifestTransformer.cs │ │ │ │ │ ├── PlayInstantAssetPackManifestTransformer.cs.meta │ │ │ │ │ ├── PlayInstantManifestConstants.cs │ │ │ │ │ ├── PlayInstantManifestConstants.cs.meta │ │ │ │ │ ├── PostGenerateGradleProjectAndroidManifestUpdater.cs │ │ │ │ │ └── PostGenerateGradleProjectAndroidManifestUpdater.cs.meta │ │ │ │ ├── PlayInstantAssetPackValidator.cs │ │ │ │ ├── PlayInstantAssetPackValidator.cs.meta │ │ │ │ ├── PlayInstantBuildConfig.cs │ │ │ │ ├── PlayInstantBuildConfig.cs.meta │ │ │ │ ├── PlayInstantBuildHelper.cs │ │ │ │ ├── PlayInstantBuildHelper.cs.meta │ │ │ │ ├── PlayInstantBuildModeProvider.cs │ │ │ │ ├── PlayInstantBuildModeProvider.cs.meta │ │ │ │ ├── PlayInstantBuildSettingsWindow.cs │ │ │ │ ├── PlayInstantBuildSettingsWindow.cs.meta │ │ │ │ ├── PlayInstantEditorMenu.cs │ │ │ │ ├── PlayInstantEditorMenu.cs.meta │ │ │ │ ├── PlayInstantRunner.cs │ │ │ │ ├── PlayInstantRunner.cs.meta │ │ │ │ ├── PlayInstantSettingPolicy.cs │ │ │ │ ├── PlayInstantSettingPolicy.cs.meta │ │ │ │ ├── PlayerSettingsWindow.cs │ │ │ │ ├── PlayerSettingsWindow.cs.meta │ │ │ │ ├── QuickDeploy.meta │ │ │ │ └── QuickDeploy │ │ │ │ │ ├── AssetBundleBuilder.cs │ │ │ │ │ ├── AssetBundleBuilder.cs.meta │ │ │ │ │ ├── DialogHelper.cs │ │ │ │ │ ├── DialogHelper.cs.meta │ │ │ │ │ ├── LoadingBarGenerator.cs │ │ │ │ │ ├── LoadingBarGenerator.cs.meta │ │ │ │ │ ├── LoadingScreenGenerator.cs │ │ │ │ │ ├── LoadingScreenGenerator.cs.meta │ │ │ │ │ ├── PlayInstantSceneTreeView.cs │ │ │ │ │ ├── PlayInstantSceneTreeView.cs.meta │ │ │ │ │ ├── QuickDeployConfig.cs │ │ │ │ │ ├── QuickDeployConfig.cs.meta │ │ │ │ │ ├── QuickDeployWindow.cs │ │ │ │ │ └── QuickDeployWindow.cs.meta │ │ │ ├── PlayInstantBuildSettings.cs │ │ │ └── PlayInstantBuildSettings.cs.meta │ │ ├── Tools.meta │ │ └── Tools │ │ │ ├── ia.jar │ │ │ └── ia.jar.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.Instant.asmdef │ │ ├── Google.Play.Instant.asmdef.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── CookieApi.cs │ │ │ ├── CookieApi.cs.meta │ │ │ ├── GooglePlayInstantUtils.cs │ │ │ ├── GooglePlayInstantUtils.cs.meta │ │ │ ├── InstallLauncher.cs │ │ │ ├── InstallLauncher.cs.meta │ │ │ ├── PlaySignatureVerifier.cs │ │ │ └── PlaySignatureVerifier.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.integrity.meta ├── com.google.play.integrity │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.xml │ │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ │ ├── integrity.txt │ │ └── integrity.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Google.Play.Integrity.asmdef │ │ ├── Google.Play.Integrity.asmdef.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── com.google.play.integrity.metadata.jar │ │ │ └── com.google.play.integrity.metadata.jar.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── IntegrityErrorCode.cs │ │ │ ├── IntegrityErrorCode.cs.meta │ │ │ ├── IntegrityManager.cs │ │ │ ├── IntegrityManager.cs.meta │ │ │ ├── IntegrityTokenRequest.cs │ │ │ ├── IntegrityTokenRequest.cs.meta │ │ │ ├── IntegrityTokenResponse.cs │ │ │ ├── IntegrityTokenResponse.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── IntegrityAsyncOperation.cs │ │ │ ├── IntegrityAsyncOperation.cs.meta │ │ │ ├── PlayCoreIntegrityManager.cs │ │ │ ├── PlayCoreIntegrityManager.cs.meta │ │ │ ├── PlayCoreStandardIntegrityManager.cs │ │ │ ├── PlayCoreStandardIntegrityManager.cs.meta │ │ │ ├── PlayCoreStandardIntegrityTokenProvider.cs │ │ │ ├── PlayCoreStandardIntegrityTokenProvider.cs.meta │ │ │ ├── PlayCoreTranslator.cs │ │ │ ├── PlayCoreTranslator.cs.meta │ │ │ ├── StandardIntegrityAsyncOperation.cs │ │ │ └── StandardIntegrityAsyncOperation.cs.meta │ │ │ ├── PrepareIntegrityTokenRequest.cs │ │ │ ├── PrepareIntegrityTokenRequest.cs.meta │ │ │ ├── StandardIntegrityErrorCode.cs │ │ │ ├── StandardIntegrityErrorCode.cs.meta │ │ │ ├── StandardIntegrityManager.cs │ │ │ ├── StandardIntegrityManager.cs.meta │ │ │ ├── StandardIntegrityToken.cs │ │ │ ├── StandardIntegrityToken.cs.meta │ │ │ ├── StandardIntegrityTokenProvider.cs │ │ │ ├── StandardIntegrityTokenProvider.cs.meta │ │ │ ├── StandardIntegrityTokenRequest.cs │ │ │ └── StandardIntegrityTokenRequest.cs.meta │ ├── package.json │ └── package.json.meta ├── com.google.play.review.meta └── com.google.play.review │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ ├── Dependencies.xml │ └── Dependencies.xml.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Proguard.meta │ ├── Proguard │ ├── review.txt │ └── review.txt.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── Google.Play.Review.asmdef │ ├── Google.Play.Review.asmdef.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── com.google.play.review.metadata.jar │ │ └── com.google.play.review.metadata.jar.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Internal.meta │ │ ├── Internal │ │ ├── ReviewAsyncOperation.cs │ │ ├── ReviewAsyncOperation.cs.meta │ │ ├── ReviewPlayServiceTaskManager.cs │ │ └── ReviewPlayServiceTaskManager.cs.meta │ │ ├── PlayReviewInfo.cs │ │ ├── PlayReviewInfo.cs.meta │ │ ├── ReviewErrorCode.cs │ │ ├── ReviewErrorCode.cs.meta │ │ ├── ReviewManager.cs │ │ └── ReviewManager.cs.meta │ ├── package.json │ └── package.json.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md └── README.md.meta /CONTRIBUTING.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8d11779cb2b247c2b3de859d75b6800 3 | timeCreated: 1581100674 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b29ff7a8f585465dba1e88a85c6db61 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f486a9efd17434cf49a47593f848801d 3 | folderAsset: yes 4 | timeCreated: 1540844190 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e478cfeaeaea46138cc5728af819e34 3 | folderAsset: yes 4 | timeCreated: 1554769248 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1360a64f4ba2425abdb532f0abc4d48 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Editor/Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.Editor", 3 | "references": [ 4 | "Google.Android.AppBundle.Editor" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [ 8 | "Editor" 9 | ], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": false, 12 | "overrideReferences": false, 13 | "precompiledReferences": [], 14 | "autoReferenced": true, 15 | "defineConstraints": [] 16 | } -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Editor/Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3d82aa8fd2564b079c0cda9afacfdb4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b72c9d16d44c4d08bb2e7c7dec84367 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Editor/Scripts/DemoBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 148908bda3d974ef2aec0cd2ed1089ac 3 | timeCreated: 1589568813 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58ca445da6ba6479cb9a1d2f50c04d0f 3 | folderAsset: yes 4 | timeCreated: 1554848209 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd505ca0225e841c284b4990142fd8cb 3 | folderAsset: yes 4 | timeCreated: 1554924954 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/Galaxy.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435f820930f45414595b7c3e96683076 3 | timeCreated: 1554925002 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyBack.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyBottom.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyFront.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyLeft.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyRight.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/Galaxy/GalaxyTop.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4500e29ea50dc4d459b9546331f9ecef 3 | folderAsset: yes 4 | timeCreated: 1554924944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/Caustic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/Caustic1.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/Caustic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/Caustic2.png -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/RadialWisps.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5bd3275e0947403890d7e42dca0f567 3 | timeCreated: 1554770968 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Effects/RadialWisps/RadialWisps.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7cbb45fb5de442ee8431272e40b2522 3 | timeCreated: 1554771008 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b92e081338de4f75ae2c0752d31d6f7 3 | folderAsset: yes 4 | timeCreated: 1554848197 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Gamepad.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Gamepad.fbx -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bc0981626c9345029509c31d12dcedc 3 | folderAsset: yes 4 | timeCreated: 1560892416 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Materials/ControllerMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 157fcba5da306411ea4d0034a81a8af5 3 | timeCreated: 1560892416 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Materials/ControllerParticleMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a3e0bc3895384df89081fd2212eb053 3 | timeCreated: 1560895218 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Materials/RedButtonMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6259d643308e34a72b3e718d1b834171 3 | timeCreated: 1560893910 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Models/Materials/YellowButtonMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98306c525f338461b8e6253efda8039b 3 | timeCreated: 1560893910 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81c29ca101553479094ca6cf4cd7ec4c 3 | folderAsset: yes 4 | timeCreated: 1554769699 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/AssetDeliveryDemo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e362fc8a1a6e47bdaa08f1a9401d7b1 3 | timeCreated: 1554769782 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/ControllerExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 197703ab7b0e34bd095d324eb5fbcce9 3 | timeCreated: 1554770185 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/GalaxyExample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98beed8a25aaf486e81e0fd972eb3812 3 | timeCreated: 1554925216 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/PaddingFile.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/PaddingFile.bytes -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/PaddingFile.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c39f3422a7e6466ab0b2314f482c292 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/UndeliveredFile.txt: -------------------------------------------------------------------------------- 1 | This file shouldn't be included in the AAB. 2 | 3 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scenes/UndeliveredFile.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 118d88092faf7406695edfc430dd9631 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17bfea4ca56904cbfbf39f62ba88ef4b 3 | folderAsset: yes 4 | timeCreated: 1554769704 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/AssetBundleDownloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b27713346e994814b9b8fb518c43be4 3 | timeCreated: 1554850695 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/AssetPackBatchDownloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5084834065ec4969a7d44647e297bdd4 3 | timeCreated: 1589584107 -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/AssetPackDownloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aac621e8595d4d3a80310b096560d24a 3 | timeCreated: 1589414904 -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/DemoController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d31bcf3109b614ca181a6c6d53b3b70a 3 | timeCreated: 1555708671 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/DemoPager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8b962a97c0249d09f5f15093aae6bd1 3 | timeCreated: 1589500063 -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/DownloadDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aa14688cdce41e989e9bc93ac575a43 3 | timeCreated: 1589417401 -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.AssetDelivery.Samples.AssetDeliveryDemo", 3 | "references": [ 4 | "Google.Play.AssetDelivery", 5 | "Google.Play.Common" 6 | ], 7 | "optionalUnityReferences": [], 8 | "includePlatforms": [ 9 | "Android", 10 | "Editor" 11 | ], 12 | "excludePlatforms": [], 13 | "allowUnsafeCode": false, 14 | "overrideReferences": false, 15 | "precompiledReferences": [], 16 | "autoReferenced": true, 17 | "defineConstraints": [] 18 | } -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/Google.Play.AssetDelivery.Samples.AssetDeliveryDemo.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ae2aa22ca322424ba099f6bb4bf3de4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/LookAround.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f34fbd24fca2411a8eb435431245fcf 3 | timeCreated: 1554925632 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/RotateInPlace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2444d09e45ab74e75b0df401ac3b1fed 3 | timeCreated: 1554770284 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/SceneNavigator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2b93789829f44559b2a734e557e927d 3 | timeCreated: 1554940596 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/AssetDeliveryDemo/Scripts/TextAssetHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f55127096241042a69a28d9d94510ffa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5bc72bfc658f40479dc4c1ac48eda28 3 | folderAsset: yes 4 | timeCreated: 1581589625 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd333566df83d416e97024d1777133d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Materials/GreenBrickTiles.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fe91c8f337b94e57971d7589fc965a3 3 | NativeFormatImporter: 4 | mainObjectFileID: 0 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07387c5a87a9b406fa92259c1dfea548 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scenes/LoadingScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9afdf4282e54079a6c19ab1def678e 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scenes/TexturedScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44b96759d1a0e4bc69908e16a8abea49 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: sceneassetbundle 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30b7e77028f434634b2aa2945d933e02 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scripts/Google.Play.AssetDelivery.Samples.TextureTargetingDemo.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.AssetDelivery.Samples.TextureTargetingDemo", 3 | "references": [ 4 | "Google.Play.AssetDelivery" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [ 8 | "Android", 9 | "Editor" 10 | ], 11 | "excludePlatforms": [], 12 | "allowUnsafeCode": false, 13 | "overrideReferences": false, 14 | "precompiledReferences": [], 15 | "autoReferenced": true, 16 | "defineConstraints": [] 17 | } -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scripts/Google.Play.AssetDelivery.Samples.TextureTargetingDemo.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 975eccaa89f2b4a3fb70dada7448a573 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scripts/TextureFormatDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74915ae3db424dd997d36cdb0f548de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Scripts/TexturedSceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb463bdb99743464896f9ec6d04c56af 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e97796a29e7a445b89f92424268b837f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Textures/GreenBrickTiles.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPluginSamples/com.google.play.assetdelivery/TextureTargetingDemo/Textures/GreenBrickTiles.jpeg -------------------------------------------------------------------------------- /GooglePlayPlugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ad69169f9df415f9dc770061694a63 3 | folderAsset: yes 4 | timeCreated: 1580759532 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e6d1e990658d4561814d7fb21b89a5b 3 | folderAsset: yes 4 | timeCreated: 1580759533 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc9a7cb46c21c41a0804f2aed443cd5f 3 | timeCreated: 1581039935 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b913d9b216abf4e9b8172d1b11816e86 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Google.Android.AppBundle.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Android.AppBundle.Editor", 3 | "includePlatforms": [ 4 | "Editor" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Google.Android.AppBundle.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 995913c7e5ef24040bbef8815aeac049 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1fead41d7b3d49afb964adac65da097 3 | folderAsset: yes 4 | timeCreated: 1580752771 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AndroidAppBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6f956b5a57f949f8bbdc5c0bdd5fc6e 3 | timeCreated: 1550109878 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AndroidBuildException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f90eb905884a578d699e13668b1692 3 | timeCreated: 1618864941 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AndroidBuildHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35354282707b045b5b530c421d5a234e 3 | timeCreated: 1582318631 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AndroidBuildOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90eabf8dd350c48c08d72f67b0082358 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AndroidBuildReport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d0c6937ea0847ec9a639618b2ae2bb8 3 | timeCreated: 1617397690 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetBundleBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6103140ca35a146aebf90b0d5001cf9d 3 | timeCreated: 1582783480 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetOnlyBuildOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1bdcdd916a424a938fe54bd01767156 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetPack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b308e30f8f2a419fa2d96ce08ab2697 3 | timeCreated: 1583258649 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetPackConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0d123655d73c4856b6f7c6790c62082 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetPackConfigSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f277e21537064a51a435fbc4d4c713a 3 | timeCreated: 1582761043 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/AssetPackDeliveryMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d15a50545f1c4c4586351a1e698bfdc 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Bundletool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801cb4138f93a4a9e9d7dfd5926fefba 3 | timeCreated: 1581697831 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/BundletoolBuildMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 316269c5a97a14720bbcfb91400cf2a8 3 | timeCreated: 1581700818 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/CompressionOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 874234f05df734fa594e364198f4e4ac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/DeviceTier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9a5886ee61a408c939351e7a04afe20 3 | timeCreated: 1602848407 4 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7633a19d17e4c452a9c98b305f25746e 3 | folderAsset: yes 4 | timeCreated: 1580752771 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AndroidArchitectureHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f33b5abf4e34544e597d9b43a21c8741 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AndroidManifest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dac17760a2fd2434188c3671e822fcc2 3 | folderAsset: yes 4 | timeCreated: 1540331103 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AndroidManifest/AssetPackManifestHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3c4c13f33e6f48dc9e8130d699f1428 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AndroidManifest/IAssetPackManifestTransformer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12432c2ade03483e9e956f11ddde2992 3 | timeCreated: 1574716612 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AndroidManifest/ManifestConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16b5ed2898b684f67ab9286244de2e19 3 | timeCreated: 1556563916 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AppBundleEditorMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79f87642d146d41d7bdaaa2328b529b8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AppBundlePublisher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 067a2af83af994d2bab4a749cba47b73 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetOnlyOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36ce805c46a1445b5b499fbe670efae4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPackManifestTransformerRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d02bb9eaf0454eeda560629d83c032ce 3 | timeCreated: 1574886319 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f68087b1bfbaa4196b496b765b6f3b91 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetBundleFolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c3bd268718fc41b48090fadb8eee0bd 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetBundlePack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e43cae4a4245538a68b920730857b6 3 | timeCreated: 1571324952 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetBundleVariant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c348752fa8c94d3a8f6f085846aa228 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetDeliveryConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdc061489f3c64fd78ed0cefe895b007 3 | timeCreated: 1549914493 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetDeliveryConfigSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f127ef3c767384ec89ad3e3aef7ae1bb 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetDeliveryWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fe34ebc6742d4f818529bc14c64c974 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetPackError.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cad3b640bc35422c88ba5dd808e4170 3 | timeCreated: 1549483271 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetPackFolderState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0110294bad4d544c486274699623a0c2 3 | timeCreated: 1548906103 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/AssetPackValidatorRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ad448820c8d482996636e3862c1a420 3 | timeCreated: 1574899929 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/IAssetPackValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56526b5a57974a7f8d23788f47d6a0db 3 | timeCreated: 1574729323 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/AssetPacks/TextureTargetingTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d474e3691efbb4141a8e8f46aeb406ef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildAndRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0928808bcd00049ba8435d9cfe4f410c 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildSettingsWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3494e8040ba74ee78ff64f1018b5969 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee7c5073444e433eb10f83395460280 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidAssetPackagingTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c349f457532c645d8817661cbdcb5729 3 | timeCreated: 1556911730 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidBuildTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46ae92b3dd8eb4e38b66ff3b58205318 3 | timeCreated: 1556911730 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24e34b4393a4d4a5d8de83ca5e08621c 3 | timeCreated: 1556919494 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidDebugBridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a5aaac6c5d78491aa3590cbff08a890 3 | timeCreated: 1556913938 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidSdk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 408798f1df959420d8fb95911a935f2d 3 | timeCreated: 1556899571 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AndroidSdkPlatform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36e42f83ed7a745ea9e4f4166d786141 3 | timeCreated: 1556910452 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/ApkSigner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 960e36d9911aa4011958de1e7407757d 3 | timeCreated: 1556916021 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AppBundleBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4ee87517b6d8405f9af0cd4e6d2029e 3 | timeCreated: 1556919555 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/AppBundleRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8103f73350aca4529af9e65605055a8b 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/BuildToolLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fb883fe4e14d4d90a8d664e93cb0b81 3 | timeCreated: 1556899571 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/BuildToolNotInitializedException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09bfd5773b8db4b3ebc596a1c11cae96 3 | timeCreated: 1556899570 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/BundletoolConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f770d51f7cfa14c9da2a31e08a167e73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/BundletoolExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0996c5b6f76c44bab82db6c1f36a84c1 3 | timeCreated: 1575644561 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/BundletoolHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc0e37b8322b54a4da00fdca472c4bb8 3 | timeCreated: 1556913938 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/IBuildTool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ed1ed129773a49ad9caa331244333ff 3 | timeCreated: 1556899571 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/JarSigner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf519927705149098aece6a0c73137fe 3 | timeCreated: 1594212511 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/JavaUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16791a24cc9874bc6a41407b887146f5 3 | timeCreated: 1556899571 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/PostBuildRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70edb5163b984f9799e762ef659dabe6 3 | timeCreated: 1557153210 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/PostBuildTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6ec7abd981a4580b1ec0a21602c072 3 | timeCreated: 1558031253 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/ReleaseBuildHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a72ad9ee7052447e385d166772c9b8ac 3 | timeCreated: 1556921099 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuildTools/ZipUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bed5ac126295a479887b763b3778752f 3 | timeCreated: 1556919494 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/BuiltInPadHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 871b3f388b424b83bf6946eb0fc7a707 3 | timeCreated: 1633386322 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb206a54e25249ee9a2cbc373a4f4d3 3 | folderAsset: yes 4 | timeCreated: 1582764639 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/AndroidBuildConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98657445555e4adab8532ed065e002f2 3 | timeCreated: 1573690645 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableAssetBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2971ccd90fecb4132ab5f746fce97ac4 3 | timeCreated: 1582764639 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableAssetPack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d031fc28b0b84451ca9f735acf2cf991 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableAssetPackConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdc1301dfd6c941c9bb32b684806e673 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableMultiTargetingAssetBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75b007f0f1ad54854939ae9055151cc4 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableMultiTargetingAssetPack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75b007f1f13454654939aea0a5151ca3 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializableTargetedDirectoryPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75b007f1f1bd54854939cec055151dc3 3 | timeCreated: 1582764640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Config/SerializationHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12d75183cf4a84a9cac2994c5a842ab6 3 | timeCreated: 1582764639 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/CreateBundleOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92e27a04cd7b47a69d14d7a7e4832360 3 | timeCreated: 1623893106 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/DeprecatedAarDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5406e0206a814b76b90e3bc632699d6b 3 | timeCreated: 1636508642 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/DeviceTierTargetingTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33415f298a941ac8c5586483f411646 3 | timeCreated: 1603809145 4 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/GoogleMenuItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd4b6b7f1bacf4b3f8452292b056a581 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/IBuildAndRunExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 125cab0deed14a0898690fb1a55144ac 3 | timeCreated: 1573767492 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/IBuildModeProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c8dbb4e90f44d99aef27c557b7279da 3 | timeCreated: 1574901139 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayCoreConflictDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5b74d60f6b643d7a23138ed1e1a7528 3 | timeCreated: 1633402273 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 964deb0fed72249d7a06f8b9b8824c3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/AndroidSdkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82d84541ddbac4dc283e6dd0f45a76e3 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/CommandLine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7b0cb9288a1142bb9fdbab1795abe9e 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/CommandLineDialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c96ff1b4e1fa04e52835b8b54a861bf4 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/Logger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0bee5c147382431ba11a2a4b3a3210b 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/PlayServicesResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4021c9fd6b6874777be4455f9addd6e8 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/README.md: -------------------------------------------------------------------------------- 1 | # Play Services 2 | 3 | A collection of tools for managing and using command line apps packaged with the Android SDK. 4 | Forked from a subset of [unity-jar-resolver](https://github.com/googlesamples/unity-jar-resolver). 5 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a11063dc084564ec8a2c318ffe18709f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/PlayServices/TextAreaDialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d4bc874171bf46818df8b8c647622d4 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Registry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04e8948d9de8470e83d044d4bd1a9a44 3 | timeCreated: 1574885987 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05254d98b02c14d5dafac4564cf677ac 3 | folderAsset: yes 4 | timeCreated: 1556120328 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/AndroidSdkPackageInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5ea775d810d14f8fa45dd2c58e82c2d 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/CommandLineParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23981fb4f0d5d48e391fbad81c9bfe3d 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/EmptyCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b677c4aa42424e8a8f010edab946dab 3 | timeCreated: 1556120328 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/EmptyDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e05b9f7c9861d4fdb82d564ad551cc52 3 | timeCreated: 1556120328 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/NameAndDescriptionAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65e9e61a98d19471a9a122488b21324e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/PostBuildCommandLineDialog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d5c63912979b43acb5315e369b6740b 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/RegexHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf420257eac24e9eb40bbf4f8ac09cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/Internal/Utils/WindowUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a4fd3b81224a4a1d9367053ed584a0f 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Scripts/TextureCompressionFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c225ed57653d242d491644b635b9c774 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 276a482795f4c4fc59b79d962dda05bb 3 | folderAsset: yes 4 | timeCreated: 1580874269 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Tools/bundletool-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.android.appbundle/Editor/Tools/bundletool-all.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/Editor/Tools/bundletool-all.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c52291e63505c4121a167e6f0121c1b1 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Any: 13 | second: 14 | enabled: 0 15 | settings: {} 16 | - first: 17 | Editor: Editor 18 | second: 19 | enabled: 1 20 | settings: 21 | DefaultValueInitialized: true 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b995f494568e47259d526c5211d778b 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b6c66d1cf06d437ea2f14099fee8349 3 | timeCreated: 1581040462 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.android.appbundle", 3 | "displayName": "Google Android App Bundle", 4 | "description": "The Google Android App Bundle package provides access to the latest Android App Bundles features, such as Play Asset Delivery.", 5 | "version": "1.9.0", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.android.appbundle/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f36588b46db44705901c9be019d79fc 3 | timeCreated: 1576695771 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e4e14ef9f7864baf84c3ed943bbebbe 3 | folderAsset: yes 4 | timeCreated: 1580846196 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66aa8f0d5027b43498640fd48497ebda 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 332a5f07e5704022a88923ebd2d02c31 3 | timeCreated: 1652822662 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79fe7e9f76ed444ebeefbb0eb012530c 3 | timeCreated: 1652822662 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a7aa7820aa3144da939b4f0b25e4c16 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae38adb7e23af447c89161eda204b5cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Proguard/app_update.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4a78958d0547446fa89a52e26fd802f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/README.md: -------------------------------------------------------------------------------- 1 | # Google Play In-App Update Plugin for Unity 2 | 3 | *com.google.play.appupdate* 4 | 5 | ## Overview 6 | 7 | The Google Play In-App Update Plugin for Unity lets you keep your app 8 | up-to-date on your users’ devices and enables them to try new features, 9 | as well as benefit from performance improvements and bug fixes. 10 | 11 | Refer to the 12 | [documentation](//developer.android.com/guide/playcore/in-app-updates/unity) and 13 | [Runtime API reference](//developer.android.com/reference/unity/namespace/Google/Play/AppUpdate) 14 | for more information. 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 242329da11f894fe9bc4d0db46808cd4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91f475d4118164f3e999cad6c68b2357 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Google.Play.AppUpdate.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.AppUpdate", 3 | "references": [ 4 | "Google.Play.Common", 5 | "Google.Play.Core" 6 | ], 7 | "includePlatforms": [ 8 | "Android", 9 | "Editor" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Google.Play.AppUpdate.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3608d6c771df4d5ea920975c31d3a5f 3 | timeCreated: 1585670219 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58e95e52a7fc54753a3a2373fdc4e8bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Plugins/com.google.play.appupdate.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.appupdate/Runtime/Plugins/com.google.play.appupdate.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Plugins/com.google.play.appupdate.metadata.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c13ee4d709e4486f8b1432af04669d7 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: {} 16 | - first: 17 | Any: 18 | second: 19 | enabled: 0 20 | settings: {} 21 | - first: 22 | Editor: Editor 23 | second: 24 | enabled: 0 25 | settings: 26 | DefaultValueInitialized: true 27 | userData: 28 | assetBundleName: 29 | assetBundleVariant: 30 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93b9597cffb6940f7812ed9c57235857 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateErrorCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c806dda16f8bf4d18afa436990172635 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2379f4e1eb5704143aadf49a8cbf614c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 075f752d9320c43f09acc2eb8cc1052c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc93771ff3be4a31a3b6eef8011015f8 3 | timeCreated: 1582837508 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b348c40464694ddd914636c44535152c 3 | timeCreated: 1594423220 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ceab6c722bfc4e1dab8ce805863aae15 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/AppUpdateType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6e259c8ce22348358cd7bfc8c5bdc2c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58aa875c010b94ec3a902ed5f16797dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213861854af8b4bd0a36e1832dc9f0df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8e7eeea870941dd88d1b2d1ad141ba8 3 | timeCreated: 1594671873 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateManagerInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34922226f9f814f70b9aff9200f3eabc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateManagerPlayCore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8be6f20d5eff411dbec43a47d1ec33a4 3 | timeCreated: 1595634399 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdatePlayCoreTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f65f848a60940889de14e99b49844d1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateRequestImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e5847f0fb946849e044e18bc315d53 3 | timeCreated: 1594423274 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1fde65fca1840aa88f76a60d0488beb 3 | timeCreated: 1594079502 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/Internal/AppUpdateStateListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e21a717431154949a2175f2c98f6399 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/Runtime/Scripts/UpdateAvailability.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d703e4e02ef48f7aa5f26727a4b9738 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.appupdate", 3 | "displayName": "Google Play In-app Updates", 4 | "description": "Enables the user to install an app update without exiting to the Play Store.", 5 | "version": "1.8.1", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.play.common": "1.8.1", 12 | "com.google.play.core": "1.8.1" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.appupdate/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 864a25a8dc50447bbaf532b6faa3918d 3 | timeCreated: 1580846196 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5936ed8376d684235a129b4608786bde 3 | folderAsset: yes 4 | timeCreated: 1580759533 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec718d77264f47449b48b38a4b90eea 3 | timeCreated: 1581039935 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155f33a169c84b3aa017d89e311f5346 3 | timeCreated: 1652822769 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccc5f5aabafe46e295073bf935d86741 3 | timeCreated: 1652822770 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e60c7cccc4b054a659b554292a331d09 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa573c0a20edd43e78490ce1fadba009 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Proguard/asset_delivery.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b951803efef6642c7963f25bd9f66ec3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6148018545ee34a66859753b5e6054a5 3 | timeCreated: 1581040462 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec7a05216aa234fdc9ee0b33642cbd52 3 | folderAsset: yes 4 | timeCreated: 1576618908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Google.Play.AssetDelivery.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.AssetDelivery", 3 | "references": [ 4 | "Google.Play.Common", 5 | "Google.Play.Core" 6 | ], 7 | "includePlatforms": [ 8 | "Android", 9 | "Editor" 10 | ] 11 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Google.Play.AssetDelivery.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 870f26a2ffa82429195df0861505c5d5 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b57410961ed54c8180f902be5f3d5ec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Plugins/com.google.play.assetdelivery.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Plugins/com.google.play.assetdelivery.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dbd1619141054c07aefeb3ca862c976 3 | folderAsset: yes 4 | timeCreated: 1580749599 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/AssetDeliveryErrorCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44c7175244a2a4e2fa4c9c0b08ee011a 3 | timeCreated: 1549325947 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/AssetDeliveryStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25b7a48b8c89b48b689489816a0541ce 3 | timeCreated: 1549325947 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/AssetLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feeabbf9c2a5434b92caedf15d713ab4 3 | timeCreated: 1562870112 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/AssetPackUpdateAvailability.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5783583a0d44b0ba50a7c506d800d97 3 | timeCreated: 1621898257 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/ConfirmationDialogResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76ee58a8b854281a6f86e139807cb9a 3 | timeCreated: 1566422650 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4af3441c942f42ce8da4a213cfb959d 3 | folderAsset: yes 4 | timeCreated: 1550267071 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetDeliveryAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 567126ac059a42489a8e5a8a7639dd1c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetDeliveryUpdateHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb8fa3dd35e1c4dc790b1faa33b0265c 3 | timeCreated: 1554494584 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetLocationImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 006516d0561e414dbe8a46b07c73c4cc 3 | timeCreated: 1588294051 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3389864c64846d9ae474033eba316f 3 | timeCreated: 1554317027 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04178671ed4954e2bb56c84dd03d92bc 3 | timeCreated: 1549564032 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9528fb96e4de4c618a777a82382ba6e 3 | timeCreated: 1551829374 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackStateUpdateListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0dc15ad4480243fb8c18279cbae4fa6 3 | timeCreated: 1549327262 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackStates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31a4c75852ef49b18cecbbae7c55449 3 | timeCreated: 1549325414 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/AssetPackStorageMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bba029dc886c42318f5344e02844a7ea 3 | timeCreated: 1562870321 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayAssetBundleRequestImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fd44a50730bf4888ac9dfa4416e0a87 3 | timeCreated: 1550014332 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayAssetDeliveryInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85b7e6bf8e3e4b8e91cbb5716761c9ed 3 | timeCreated: 1583540802 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayAssetPackBatchRequestImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a740d87a2bf1401bb24681935998ecd7 3 | timeCreated: 1588812080 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayAssetPackDownloadInfoImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3b4bb5ea9d44aa4a75c9cebdf74dc78 3 | timeCreated: 1621899620 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayAssetPackRequestImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24b88ac66b804124b880ad0b6b6f2dcc 3 | timeCreated: 1588102816 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayCoreTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 560fb67e8b05948c8aa0b6314480534d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/PlayRequestRepository.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d8abdc8cf0340bbaae418da558de978 3 | timeCreated: 1558390718 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/Internal/UpdateAvailabilityTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 686aee5c471041bba8bfb766b774885d 3 | timeCreated: 1621899159 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/PlayAssetBundleRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d2ce5aab689a45c3afaba25494614a9 3 | timeCreated: 1548720072 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/PlayAssetDelivery.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e93d382fc6b64f72b7e5099c10836cf 3 | timeCreated: 1548718888 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/PlayAssetPackBatchRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40dc8f7ed954772bc3e54feaad0e837 3 | timeCreated: 1588791101 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/PlayAssetPackDownloadInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b5b3ff2c7b244e4836a9fcbe42448e2 3 | timeCreated: 1621901087 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/Runtime/Scripts/PlayAssetPackRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff97ef6fdbb2491fb530d8567185e132 3 | timeCreated: 1587769068 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.assetdelivery", 3 | "displayName": "Google Play Asset Delivery", 4 | "description": "Play Asset Delivery enables AssetBundles and other assets to be packaged into an Android App Bundle and delivered through Google Play.", 5 | "version": "1.9.0", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.play.common": "1.8.2", 12 | "com.google.play.core": "1.8.2" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.assetdelivery/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b8c9188eee9641948db3648e00acb10 3 | timeCreated: 1576695771 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c130b57490d496e9f2d523155a3231 3 | folderAsset: yes 4 | timeCreated: 1580853920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57469772834c47c3b9c507c52259b6b 3 | timeCreated: 1584470606 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64802303ee4e5423da7f90f933363856 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Google.Play.Billing.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Billing.Editor", 3 | "references": [ 4 | "Google.Android.AppBundle.Editor" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Google.Play.Billing.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83ccb624bcbd145e38481c8149294c8c 3 | timeCreated: 1582040933 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17f344e9983f04f14851ddedb6211f4b 3 | folderAsset: yes 4 | timeCreated: 1580853920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Scripts/GooglePlayBillingBuildHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e76da2bbcf094d6e9b7f5c9c652509e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Scripts/GooglePlayBillingBuildSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a837757e91ca844d69f26ad80bdfe0b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Editor/Scripts/GooglePlayBillingMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 057e7f9a0f60649939e5b63e81303ca8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff930df64f4294487b3b89d15863363c 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5ca5c015b0a2425c97458e4ce14ab0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Proguard/billing.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b86f8a5ea8564a8b8dd9c6e31460b31 3 | timeCreated: 1590516009 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 492a739608f704c588a85c3fd950303f 3 | timeCreated: 1581734200 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae83cc74ac194b42a8ca5fecd8ee96d 3 | folderAsset: yes 4 | timeCreated: 1580853920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a01fe57ae2394ad4b1c0b525644dbc0 3 | folderAsset: yes 4 | timeCreated: 1581464688 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Plugins/GooglePlayBilling.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.billing/Runtime/Plugins/GooglePlayBilling.aar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d081ac0e6a5b541e19a03a7c58139e4d 3 | folderAsset: yes 4 | timeCreated: 1580853920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/GooglePlayStoreImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61ea78990208f4161828ab0b266f0a55 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/GooglePlayStoreModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5dddce78fdd04c0da3544f66c147d98 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/GooglePlayStoreProrationMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7927a4780042a4e889b3b1e7238690d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/GooglePlayStoreUnsupportedException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a009f465c1b744e7be3962c0e15edd5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/IGooglePlayConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffcdc73a3b8e443fa915837541f835a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/IGooglePlayStoreExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c21bf34bc35464f1f8d32a8871dd17b8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2399be4833444787bf79dd7f0bcea40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/AcknowledgeResponseListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77c021f1eb38f469f88b06290c85a03a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/BillingClientStateListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baf1579f46f544c58a711e2e80c82f71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/BillingResponseCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6763e94e6c362438dae62a107e0cbacb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/Constants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e0ade9872fc7482ea473bb3053fb44a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/ConsumeResponseListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfc4c5a9b0e644a82a1d14cd6928eff0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/GooglePlayBillingInventory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326e4166c211e44ec8572b747862b884 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/GooglePlayBillingUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4176950556964274bcf052021384af6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/JniUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45d036e4eba864da582962b3c89279bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/PriceChangeConfirmationListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0700cda08cd5405785957d84401b3cf0 3 | timeCreated: 1573002124 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/Purchase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe717a60b503a4cd6bdbfd79d6ac4854 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/PurchaseUpdatedListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e66dccf164184dfeaa6875e96ec29e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/SkuDetails.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3518e4525ab1a40d2a8e968ecf93baea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/SkuDetailsResponseListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bfed1e5c4dc64248b96dc2a06f4f771 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Internal/SkuType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a379fc56bed5e4ab9990aa9fe506c750 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Mock.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d29ea4ccc4f3b41bb89d081e58aa2d3a 3 | folderAsset: yes 4 | timeCreated: 1583874014 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Mock/FakeGooglePlayConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b406e91f8127b4db5a3441a52fefedb0 3 | timeCreated: 1583823480 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/Runtime/Scripts/Mock/FakeGooglePlayStoreExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452f55d54a5784f4f9fa9d446fe16914 3 | timeCreated: 1583823268 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.billing/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0480476c7bb214312bbeea8ca92afd02 3 | timeCreated: 1582040938 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cadbfb1891964613b756218191e22ea 3 | folderAsset: yes 4 | timeCreated: 1580760879 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74aac366abb0b49c4ae35753bd593035 3 | timeCreated: 1584470389 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dc8d2f667bef4d6282f1ef78789563f 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/README.md: -------------------------------------------------------------------------------- 1 | # Google Play Common Package for Unity 2 | 3 | *com.google.play.common* 4 | 5 | ## Overview 6 | 7 | The Google Play Common package provides common files required by some Google 8 | Play packages, such as Play Instant. 9 | 10 | This package doesn't provide any features when installed separately. 11 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50396695ba7f40cebd28a120835f9ad 3 | timeCreated: 1584473221 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 975f8e9ecabe54f47b17e10650a63056 3 | folderAsset: yes 4 | timeCreated: 1576618908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Google.Play.Common.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Common", 3 | "includePlatforms": [ 4 | "Android", 5 | "Editor" 6 | ] 7 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Google.Play.Common.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4318b6f3695442c4983c360248781db 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ebf4305054a34c01a03231c713377b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Plugins/com.google.play.common.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.common/Runtime/Plugins/com.google.play.common.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Plugins/com.google.play.common.metadata.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f6da87c47a3043409535c04f2733829 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: {} 16 | - first: 17 | Any: 18 | second: 19 | enabled: 0 20 | settings: {} 21 | - first: 22 | Editor: Editor 23 | second: 24 | enabled: 0 25 | settings: 26 | DefaultValueInitialized: true 27 | userData: 28 | assetBundleName: 29 | assetBundleVariant: 30 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93def26183931461286e11aeb1034694 3 | folderAsset: yes 4 | timeCreated: 1580835047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e43abcde8c6454e9ac390000f5d9695 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/Internal/AndroidConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c40261b45b4a848379e77043c231bf64 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/Internal/PlayAsyncOperationImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4e6ba1afbc4eeca3d1a96d7c115e52 3 | timeCreated: 1566434163 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/LoadingScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 840ce5a886bda45e39e981eb29b5023d 3 | folderAsset: yes 4 | timeCreated: 1540331103 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/LoadingScreen/LoadingBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcbdd4679cf6e41568c661c1c762b33d 3 | timeCreated: 1539016701 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/LoadingScreen/LoadingScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 387db7af181f74e18ae5ac6796940d73 3 | timeCreated: 1539016701 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/LoadingScreen/ScrollingFillAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 781257c89d9b2471490603c8f2d3c8bf 3 | timeCreated: 1540231614 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/PlayAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d2af36ca1634e2cb69727786850bffb 3 | timeCreated: 1566426514 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/UnityPlayerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2924b88fc93a49d198487f00587c26b 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Scripts/VoidResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb64affac9f342c494796eef5685e62c 3 | timeCreated: 1573064807 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70dfdc0125ba34e1dbab06844cab909a 3 | folderAsset: yes 4 | timeCreated: 1540331103 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Textures/GooglePlayInstantLoadingTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.common/Runtime/Textures/GooglePlayInstantLoadingTile.png -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/Runtime/Textures/GooglePlayInstantRetryButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.common/Runtime/Textures/GooglePlayInstantRetryButton.png -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.common", 3 | "displayName": "Google Play Common", 4 | "description": "The Google Play Common package provides common files required by some Google Play packages, such as Play Instant.\n\nThis package doesn't provide any features when installed separately.", 5 | "version": "1.9.0", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.android.appbundle": "1.9.0" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.common/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c042cbf8b0ac343e3a978d389f5ae055 3 | timeCreated: 1576695771 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9d89e6859d604775a0ee02493c6b7c0 3 | folderAsset: yes 4 | timeCreated: 1580760879 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac1bedf82988a4d5c8268ea1c30ff8c0 3 | timeCreated: 1581039935 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bef99cf86b0874c9c88499eb1630ebf2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358959da479d4911a369fa0a55db666c 3 | timeCreated: 1632173877 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbf238c6951964b08ae437c67f5c96a8 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17ca008958db44a7eac7d11b53d28bb1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Proguard/common.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3c6f4e6fa6a485eae510a4a8382eae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/README.md: -------------------------------------------------------------------------------- 1 | # Google Play Core Plugin for Unity 2 | 3 | *com.google.play.core* 4 | 5 | ## Overview 6 | 7 | The Google Play Core package provides the 8 | [Play Core Library](//developer.android.com/guide/playcore) required by some 9 | Google Play packages, such as Play Asset Delivery. 10 | 11 | This package doesn't provide any features when installed separately. 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e875a0fb3431642b8a2dae76bdd988fa 3 | timeCreated: 1581040462 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76119807e4889426ea2830d82c74eb2d 3 | folderAsset: yes 4 | timeCreated: 1576618908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Google.Play.Core.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Core", 3 | "references": [], 4 | "includePlatforms": [ 5 | "Android", 6 | "Editor" 7 | ] 8 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Google.Play.Core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b649415412a3d4e8a83df256b07478bb 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dd9a783f2bbb457297456a06a08481d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Plugins/com.google.play.core.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.core/Runtime/Plugins/com.google.play.core.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Plugins/com.google.play.core.metadata.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75baa9228c5fa449eac1372d4ad2b5c4 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: {} 16 | - first: 17 | Any: 18 | second: 19 | enabled: 0 20 | settings: {} 21 | - first: 22 | Editor: Editor 23 | second: 24 | enabled: 0 25 | settings: 26 | DefaultValueInitialized: true 27 | userData: 28 | assetBundleName: 29 | assetBundleVariant: 30 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ce086e6077594a2293b3717d002b800 3 | folderAsset: yes 4 | timeCreated: 1580835047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84d31a25d624346459133b65425fd20b 3 | folderAsset: yes 4 | timeCreated: 1580835047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/ActivityResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8879ad8a300b4bde86c4f579dfede0d2 3 | timeCreated: 1566858727 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayCoreConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e622666acb2d4781a7584f92b9a2b2e 3 | timeCreated: 1549654052 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayCoreEventHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 051d5ab221b254fb3bb403a4eaae0df9 3 | timeCreated: 1555349623 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayCoreHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeadf4c79cb514f2c9b8a924b97d4b60 3 | timeCreated: 1550793799 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayCoreOnFailureListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 637ec35fe288545c4b13d394a08a0c70 3 | timeCreated: 1549660839 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayCoreOnSuccessListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef4772d6fe7446e9a4dcfabf3ea9e74 3 | timeCreated: 1549660825 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/PlayServicesTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9afdeebfe3f48029a48abd58942c338 3 | timeCreated: 1641857795 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/TaskOnFailureListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28db08947f4640aebf4a5f1c15012e4a 3 | timeCreated: 1641857543 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/Runtime/Scripts/Internal/TaskOnSuccessListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edce53eedcfb478f9738baa1e4a54319 3 | timeCreated: 1641857602 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.core", 3 | "displayName": "Google Play Core", 4 | "description": "The Google Play Core package provides the Play Core Library required by some Google Play packages, such as Play Asset Delivery.\n\nThis package doesn't provide any features when installed separately.", 5 | "version": "1.8.3", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.android.appbundle": "1.9.0", 12 | "com.google.external-dependency-manager": "1.2.172" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.core/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb49fa498ef3b4fd3938ce36a6f6bf72 3 | timeCreated: 1576695771 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7d884b286faf460f9f21862833563d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog for com.google.play.inputmapping 2 | 3 | ## [1.0.0-beta] - 2022-07-06 4 | ### New Features 5 | - Initial open beta release. 6 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 480ab8948224a4b85bc30b409db7295f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a23052d9b90c4938a447ceb778607e8f 3 | timeCreated: 1655246540 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36063f097442444a88cf3c8071fca0f6 3 | timeCreated: 1655246555 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07322b2be54304902a11f96d480e1371 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eff2f6d9a9b44faaa9dab50f22f0bde 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b59dc06f8c0584f77b758e96370d4680 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Google.Play.InputMapping.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.InputMapping", 3 | "references": [], 4 | "optionalUnityReferences": [], 5 | "includePlatforms": [ 6 | "Android", 7 | "Editor" 8 | ] 9 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Google.Play.InputMapping.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a771aa6ed5784ceab251bfd34fcf863 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23d0cc05f577b4a74b9bd55c891884b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/AndroidKeycode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31a614306fd774e1fb96db342a835158 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19c6bcae7f875420a9f7511704682321 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/InputMapHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3f0eeb89e5eb459e867bbe99347cb47 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/InputMapToJavaConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d66e84ca49971439b95117f9e732ff43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/InputMappingClientInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 184fccb0f3209439ea17b75e3e8dc63f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/InputMappingClientNoOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c6fecfec813c4526811b27097fa5f54 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/JavaConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee867574697dd4eebb600fa87a2247ad 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/Internal/UnityInputMappingProviderProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435be7b232d334175b02bbbe77e8804e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd1822d1b39e453dbf5a4e0fb24dc1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc8cfd4903194227a0640d6e47ae643 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputControls.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 000212c1b2cba466b87020fb39998447 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f46aa935073b4554b0566f812ddda72 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 402cb3527f6de4556b6d3f113de20b45 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputMappingClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 277bacabd53e047db9396bcfd98c1b13 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayInputMappingProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da4afd4d5137e48d5b2c889354b09083 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayMouseAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8e66aca6fbfc48d2bd4655f89e9c987 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/Runtime/Scripts/PlayMouseSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8e9a48db94dd4c78a739c991f4484a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.inputmapping", 3 | "displayName": "Google Play Input Mapping", 4 | "description": "Provides tools for exposing keyboard and mouse controls to the Android framework", 5 | "version": "1.0.0-beta", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.external-dependency-manager": "1.2.172" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.inputmapping/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d4c07d61bf394f24862f38096508cc7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c622168b73184e6ca08310d555506a6 3 | folderAsset: yes 4 | timeCreated: 1580759532 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 544006641e8a54d70b6c0a858a0366f6 3 | timeCreated: 1584470389 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f00eb10c70a4ae9b4a306aaf0bccbe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Google.Play.Instant.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Instant.Editor", 3 | "references": [ 4 | "Google.Android.AppBundle.Editor", 5 | "Google.Play.Common", 6 | "Google.Play.Instant" 7 | ], 8 | "includePlatforms": [ 9 | "Editor" 10 | ] 11 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Google.Play.Instant.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08ab4de8e17e544fc973ae9192cfa308 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a42583bec942482296dbc0b92478bb6 3 | folderAsset: yes 4 | timeCreated: 1580756138 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b357b78250364047935a38179cf4cf6 3 | folderAsset: yes 4 | timeCreated: 1580756138 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd3b899878a0414788aaa595f425f83d 3 | timeCreated: 1574459726 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/AndroidManifestHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74667fc7e56b4b4c8c30e6859ec8577f 3 | timeCreated: 1574450734 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/IAndroidManifestUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 300bffc6f109b439b958748a365f84f7 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/LegacyAndroidManifestUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 369b18c4a0efd43ce9ee8bd37f74496a 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/PlayInstantAssetPackManifestTransformer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 513c52cd32424eaaabfc99ec6d24adf8 3 | timeCreated: 1574716701 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/PlayInstantManifestConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8672314a6c924c8da6bb943ba5a965f3 3 | timeCreated: 1587582104 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/AndroidManifest/PostGenerateGradleProjectAndroidManifestUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2244addd668334badb48e83c8a07c728 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantAssetPackValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b646ac4c043b4dc89322c26f3672a2f1 3 | timeCreated: 1574729484 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantBuildConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c480f19133294555a409ea280c524bd4 3 | timeCreated: 1587585172 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantBuildHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 930d68ffbdbfb4038b828d6315c84451 3 | timeCreated: 1556920021 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantBuildModeProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf98a92d513c48f0aff547c66ff4bdbd 3 | timeCreated: 1574902046 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantBuildSettingsWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a14c068ed057455c89f5950940b5719e 3 | timeCreated: 1573685818 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantEditorMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c60088575430f48099969c0af126ea75 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0928808bcd00049ba8435d9cce4f410c 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayInstantSettingPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a473e0444b454b1fb1ef0ad847e4fef 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/PlayerSettingsWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f94d625d138f4293af8a834fa467f7c 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bf29c69580244a25b92016b8914128c 3 | folderAsset: yes 4 | timeCreated: 1540331103 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/AssetBundleBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d09c0e829cc54ad29e85a0cef6f72e7 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/DialogHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 559cef08fba8f41159be5130346d33b1 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/LoadingBarGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 284bfd3ad9b4c46f5885ef76b69db2b4 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/LoadingScreenGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8bf3b5f902894a709f68b32385534eb 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/PlayInstantSceneTreeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0eaa211edeee4fee8cdd3a73e16ab24 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/QuickDeployConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 183bf147c7cfd4f698a547c1b0a9859f 3 | timeCreated: 1540331104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/Internal/QuickDeploy/QuickDeployWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3814bcd15b50b42d8b718e1f055e4e47 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Scripts/PlayInstantBuildSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe283b7ce36944c9a837c9a2c6ef3cbf 3 | timeCreated: 1555699029 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f62a81dcdcd9245cd88418a0c8e351b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Tools/ia.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.instant/Editor/Tools/ia.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Editor/Tools/ia.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c052bb994bc2b4a92a30f18d8e390a51 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Any: 13 | second: 14 | enabled: 0 15 | settings: {} 16 | - first: 17 | Editor: Editor 18 | second: 19 | enabled: 1 20 | settings: 21 | DefaultValueInitialized: true 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a58b4c913b854a34a3d5b54256d3588 3 | timeCreated: 1583983813 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/README.md: -------------------------------------------------------------------------------- 1 | # Google Play Instant Plugin for Unity 2 | 3 | *com.google.play.instant* 4 | 5 | ## Overview 6 | 7 | The Google Play Instant Plugin for Unity simplifies conversion of a Unity-based 8 | Android app into an instant app that can be deployed through Google Play. 9 | 10 | Refer to the 11 | [documentation](//developer.android.com/topic/google-play-instant/getting-started/game-unity-plugin), 12 | [Runtime API reference](//developer.android.com/reference/unity/namespace/Google/Play/Instant), 13 | and 14 | [Editor API reference](//developer.android.com/reference/unity/namespace/Google/Play/Instant/Editor) 15 | for more information. 16 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92e4bcc11e55140a8bc7ab516f8f465b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e92563711c9344b783253bd7e260230 3 | folderAsset: yes 4 | timeCreated: 1576618908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Google.Play.Instant.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Instant", 3 | "references": [ 4 | "Google.Play.Common" 5 | ], 6 | "includePlatforms": [ 7 | "Android", 8 | "Editor" 9 | ] 10 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Google.Play.Instant.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c82ea3af6b149e0b26928ad6e7bdfc 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 742f028576c674a7a8dc634d2e2c387b 3 | folderAsset: yes 4 | timeCreated: 1580749599 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Scripts/CookieApi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a1ae95392644e1b8b9741fa809cf89 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Scripts/GooglePlayInstantUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6b567cec2e954105b9eda8f6d2d11d8 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Scripts/InstallLauncher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbf2c51e18b9f46df863aa9b6239a73c 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/Runtime/Scripts/PlaySignatureVerifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406725ff96ca84622843c9d10a09d3bc 3 | timeCreated: 1540331105 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.instant", 3 | "displayName": "Google Play Instant", 4 | "description": "The Google Play Instant package simplifies the conversion of an Android app into an instant app that can be deployed through Google Play.", 5 | "version": "1.8.0", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.android.appbundle": "1.8.0", 12 | "com.google.play.common": "1.8.0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.instant/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da75a32dc14614210b9c931e56ff2262 3 | timeCreated: 1576696792 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d6abdf0831b8446d956b62cdde83a52 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 657f00357425c480fb4b35fc0cbb4599 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f870afdee52444f389bfe0145a14b217 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b92e1d50c2734c3dbd6eb06417cf679 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f27377ace5a0467696432cf3cae2a2c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbed5498b24654f5bb396e403818eab0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Proguard/integrity.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c39e164d146b04fe4ad864a54a34d2e7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/README.md: -------------------------------------------------------------------------------- 1 | # Google Play Integrity API Plugin for Unity 2 | 3 | *com.google.play.integrity* 4 | 5 | ## Overview 6 | 7 | The Play Integrity API provides developers with security and anti-tampering features such as device attestation, 8 | licensing verification, etc. 9 | 10 | ## Documentation 11 | 12 | Refer to the 13 | [documentation](//developer.android.com/google/play/integrity) 14 | and 15 | [Runtime API reference](//developer.android.com/reference/unity/namespace/Google/Play/Integrity) 16 | for more information. -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 732f7a4b08c6142daa5855d56a3efdd5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fa0d2f3614914aefb125c1270fe90d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Google.Play.Integrity.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Integrity", 3 | "references": [ 4 | "Google.Play.Common", 5 | "Google.Play.Core" 6 | ], 7 | "includePlatforms": [ 8 | "Android", 9 | "Editor" 10 | ] 11 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Google.Play.Integrity.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8796b9028dabb43b9bf1b4f4670d6860 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e3e33ce533c1484085851d055c8eecd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Plugins/com.google.play.integrity.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.integrity/Runtime/Plugins/com.google.play.integrity.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Plugins/com.google.play.integrity.metadata.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6413aec18cc543bca134a6ea0715d89 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: {} 16 | - first: 17 | Any: 18 | second: 19 | enabled: 0 20 | settings: {} 21 | - first: 22 | Editor: Editor 23 | second: 24 | enabled: 0 25 | settings: 26 | DefaultValueInitialized: true 27 | userData: 28 | assetBundleName: 29 | assetBundleVariant: 30 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32bf24bd4de474969babc67bdd8747f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/IntegrityErrorCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 676bddb2fe67e4b6088d98cb383592b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/IntegrityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dbc909c85f64aa4bd3de7402819ab22 3 | timeCreated: 1621267657 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/IntegrityTokenRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f29188e8d16947f7884a4313c59455d4 3 | timeCreated: 1621027149 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/IntegrityTokenResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb3f4f73b84348159ffd0a45619101bc 3 | timeCreated: 1621027207 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8e03f89611df46b0adfd04c5e2fa794 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/IntegrityAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51e1783e78de04f66b30b87d63742de4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/PlayCoreIntegrityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 076e54734ca7f45cfa4cdb6a29ed32c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/PlayCoreStandardIntegrityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ffa9368cf374b91bc3b0899f653df29 3 | timeCreated: 1679669174 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/PlayCoreStandardIntegrityTokenProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc9e06c90054603a7005bb0731e93a1 3 | timeCreated: 1679923859 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/PlayCoreTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df479e0675744694b8f93ced4dad5f02 3 | timeCreated: 1621269808 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/Internal/StandardIntegrityAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f2fb47e23154defb3692f70288ba390 3 | timeCreated: 1679924406 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/PrepareIntegrityTokenRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83bc59f40aba4aeb960e888fda9a7bc7 3 | timeCreated: 1679661650 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/StandardIntegrityErrorCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85710df6d5fe4ebfbd685e52d987f4b9 3 | timeCreated: 1679662818 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/StandardIntegrityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b855c4924a4c4c06833aa9c448284577 3 | timeCreated: 1679662558 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/StandardIntegrityToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5728523cb4e645b88abe7093b6ef950e 3 | timeCreated: 1679662570 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/StandardIntegrityTokenProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb5cdef05aa1491aaf0e675c554943a4 3 | timeCreated: 1679662582 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/Runtime/Scripts/StandardIntegrityTokenRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ef9284576cd47cfb71370448d20f32e 3 | timeCreated: 1679662372 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.integrity", 3 | "displayName": "Google Play Integrity", 4 | "description": "Provides Play Integrity API support for Unity runtime", 5 | "version": "1.3.1", 6 | "unity": "2018.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.play.common": "1.8.1", 12 | "com.google.play.core": "1.8.3" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.integrity/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce1081cabaeb448a0ba0b756ac90a846 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45a17e1fd5c1946f6945f2927549146b 3 | folderAsset: yes 4 | timeCreated: 1580759555 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95fff94975a749f7bef28d93327588e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5770e333455d4f73a76451eb5ee2d2d8 3 | timeCreated: 1652822811 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Editor/Dependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Editor/Dependencies.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7f494f7a7e44b148f2bb77cb1d03644 3 | timeCreated: 1652822811 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 786780f9d79a44ee4854a7fba57775c2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Proguard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da1cefb4c2643469286d533c9d5cd27b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Proguard/review.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b73574917d64429cb6723f1205fad60 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/README.md: -------------------------------------------------------------------------------- 1 | # Google Play In-app Review Plugin for Unity 2 | 3 | *com.google.play.review* 4 | 5 | ## Overview 6 | 7 | The Google Play In-app Review Plugin for Unity lets you prompt users to submit 8 | Play Store ratings and reviews without the inconvenience of leaving your game. 9 | 10 | Refer to the 11 | [documentation](//developer.android.com/guide/playcore/in-app-review/unity) 12 | and 13 | [Runtime API reference](//developer.android.com/reference/unity/namespace/Google/Play/Review) 14 | for more information. 15 | 16 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b906ace36b36540da9120de67c820967 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093ba2959faf04c3d80a9db75ef2e77f 3 | folderAsset: yes 4 | timeCreated: 1576618908 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Google.Play.Review.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Google.Play.Review", 3 | "references": [ 4 | "Google.Play.Common", 5 | "Google.Play.Core" 6 | ], 7 | "includePlatforms": [ 8 | "Android", 9 | "Editor" 10 | ] 11 | } -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Google.Play.Review.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4139e191aa32f459e9eb2e331225ad7e 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab509ede17a84484cb25a23a8574875b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Plugins/com.google.play.review.metadata.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/play-unity-plugins/44826dae71af5266669e5d5c775ee44aa0eae518/GooglePlayPlugins/com.google.play.review/Runtime/Plugins/com.google.play.review.metadata.jar -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Plugins/com.google.play.review.metadata.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0874a819d0c54456eac65d83c88336c2 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: {} 16 | - first: 17 | Any: 18 | second: 19 | enabled: 0 20 | settings: {} 21 | - first: 22 | Editor: Editor 23 | second: 24 | enabled: 0 25 | settings: 26 | DefaultValueInitialized: true 27 | userData: 28 | assetBundleName: 29 | assetBundleVariant: 30 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6db3ce4a93bc64e22a8a293d5641fff3 3 | folderAsset: yes 4 | timeCreated: 1580756426 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3f59f9b904c45cfb8768cb3b650731a 3 | timeCreated: 1572618155 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/Internal/ReviewAsyncOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 712102038e5b4421a04765467c4ef720 3 | timeCreated: 1572619751 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/Internal/ReviewPlayServiceTaskManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb3a11b55c864d88a7cd5c388adc025 3 | timeCreated: 1572224730 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/PlayReviewInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 232034196a65477b95767555ac5dd868 3 | timeCreated: 1572628333 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/ReviewErrorCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4833bd36ea8437fa71bcc9432e429c7 3 | timeCreated: 1572619911 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/Runtime/Scripts/ReviewManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3cbddf63f14498585150b20288f05c5 3 | timeCreated: 1572620482 -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.google.play.review", 3 | "displayName": "Google Play In-app Review", 4 | "description": "The Google Play In-App Review package lets you prompt users to submit Play Store ratings and reviews without the inconvenience of leaving your game.", 5 | "version": "1.8.1", 6 | "unity": "2017.4", 7 | "author": { 8 | "name": "Google LLC" 9 | }, 10 | "dependencies": { 11 | "com.google.play.common": "1.8.1", 12 | "com.google.play.core": "1.8.1" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /GooglePlayPlugins/com.google.play.review/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f42d35432f9d47beab1f7343808b294 3 | timeCreated: 1576696792 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faa6cfa1a1c144b008af7de1b7e56011 3 | timeCreated: 1581100674 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac505d39f1184757ac97c1a36fcac4d 3 | timeCreated: 1581100674 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | --------------------------------------------------------------------------------