├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── PlayCore.sln ├── PlayCore ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── playcore-1.10.2.aar ├── PlayCore.csproj ├── PlayCore.nuspec ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── build │ └── monoandroid90 │ │ └── PlayCore.targets └── proguard │ └── proguard.txt ├── PlayCoreUpdateTest ├── PlayCoreUpdateTest.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── InAppReviewService.cs │ ├── MainActivity.cs │ ├── PlayCoreUpdateTest.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── proguard.txt └── PlayCoreUpdateTest │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── IInAppReview.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── PlayCoreUpdateTest.csproj ├── README.md ├── Screenshots ├── 93619419-8802e580-f9a6-11ea-9c80-920f8a3fb196.png ├── Screenshot_20200924-222055_Google Play Store.jpg └── Screenshot_20200924-222114_Google Play Store.jpg └── docs └── privacy.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore.sln -------------------------------------------------------------------------------- /PlayCore/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /PlayCore/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Jars/AboutJars.txt -------------------------------------------------------------------------------- /PlayCore/Jars/playcore-1.10.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Jars/playcore-1.10.2.aar -------------------------------------------------------------------------------- /PlayCore/PlayCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/PlayCore.csproj -------------------------------------------------------------------------------- /PlayCore/PlayCore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/PlayCore.nuspec -------------------------------------------------------------------------------- /PlayCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlayCore/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /PlayCore/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /PlayCore/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/Transforms/Metadata.xml -------------------------------------------------------------------------------- /PlayCore/build/monoandroid90/PlayCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/build/monoandroid90/PlayCore.targets -------------------------------------------------------------------------------- /PlayCore/proguard/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCore/proguard/proguard.txt -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/InAppReviewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/InAppReviewService.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/MainActivity.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/PlayCoreUpdateTest.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/PlayCoreUpdateTest.Android.csproj -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest.Android/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest.Android/proguard.txt -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/App.xaml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/App.xaml.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/IInAppReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/IInAppReview.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/MainPage.xaml -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/MainPage.xaml.cs -------------------------------------------------------------------------------- /PlayCoreUpdateTest/PlayCoreUpdateTest/PlayCoreUpdateTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/PlayCoreUpdateTest/PlayCoreUpdateTest/PlayCoreUpdateTest.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/93619419-8802e580-f9a6-11ea-9c80-920f8a3fb196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/Screenshots/93619419-8802e580-f9a6-11ea-9c80-920f8a3fb196.png -------------------------------------------------------------------------------- /Screenshots/Screenshot_20200924-222055_Google Play Store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/Screenshots/Screenshot_20200924-222055_Google Play Store.jpg -------------------------------------------------------------------------------- /Screenshots/Screenshot_20200924-222114_Google Play Store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/Screenshots/Screenshot_20200924-222114_Google Play Store.jpg -------------------------------------------------------------------------------- /docs/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatGet/XamarinPlayCoreUpdater/HEAD/docs/privacy.html --------------------------------------------------------------------------------