├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── ConsoleCommands │ │ ├── ConsoleCommands.dll │ │ ├── ConsoleCommands.pdb │ │ └── manifest.json │ ├── SMAPI │ │ ├── AndroidManifest.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── SMAPI.Toolkit.CoreInterfaces.dll │ │ ├── SMAPI.Toolkit.dll │ │ ├── StardewModdingAPI.dll │ │ ├── System.Data.dll │ │ ├── System.Numerics.dll │ │ ├── classes.dex │ │ └── debug.keystore │ ├── SaveBackup │ │ ├── SaveBackup.dll │ │ ├── SaveBackup.pdb │ │ └── manifest.json │ ├── Stardew │ │ ├── MonoGame.Framework.dll │ │ ├── SMAPI.Toolkit.CoreInterfaces.dll │ │ ├── SMAPI.Toolkit.dll │ │ ├── StardewModdingAPI.dll │ │ ├── StardewValley.dll │ │ ├── config.json │ │ ├── i18n │ │ │ ├── de.json │ │ │ ├── default.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── ja.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── tr.json │ │ │ └── zh.json │ │ ├── metadata.json │ │ └── mscorlib.dll │ ├── VirtualKeyboard │ │ ├── VirtualKeyboard.dll │ │ ├── VirtualKeyboard.pdb │ │ ├── assets │ │ │ └── togglebutton.png │ │ └── manifest.json │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── mipmap-xxxhdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── ic_launcher-web.png │ ├── java │ └── com │ │ └── MartyrPher │ │ └── smapiandroidinstaller │ │ ├── ApkExtractor.java │ │ ├── ApkInstall.java │ │ ├── BackgroundTask.java │ │ ├── ConfigAdapter.java │ │ ├── ConfigEditorFragment.java │ │ ├── CopyAssets.java │ │ ├── DialogFrag.java │ │ ├── GitHubFragment.java │ │ ├── InstallFragment.java │ │ ├── MainActivity.java │ │ ├── SignApk.java │ │ ├── TabAdapter.java │ │ ├── WriteApk.java │ │ └── apksigner │ │ ├── Base64.java │ │ ├── CertCreator.java │ │ ├── JKS.java │ │ ├── KeySet.java │ │ ├── KeyStoreFileManager.java │ │ ├── LoadKeystoreException.java │ │ ├── SignatureBlockGenerator.java │ │ ├── ZipSigner.java │ │ └── zipio │ │ ├── CentralEnd.java │ │ ├── ZioEntry.java │ │ ├── ZioEntryInputStream.java │ │ ├── ZioEntryOutputStream.java │ │ ├── ZipInput.java │ │ └── ZipOutput.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── arrow.png │ ├── button.9.png │ ├── button_original.png │ ├── community_center_actual_right.png │ ├── community_center_farthest_right.png │ ├── community_center_right.png │ ├── ic_launcher_background.xml │ ├── layout_background.xml │ ├── text_box.9.png │ └── text_box_original.png │ ├── layout │ ├── activity_main.xml │ ├── config_editing.xml │ ├── config_view.xml │ ├── github_layout.xml │ ├── progress_bar_dialog.xml │ └── view_pager.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values-en │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-zh │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── provider_paths.xml ├── current_scheme.PNG ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/ConsoleCommands/ConsoleCommands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/ConsoleCommands/ConsoleCommands.dll -------------------------------------------------------------------------------- /app/src/main/assets/ConsoleCommands/ConsoleCommands.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/ConsoleCommands/ConsoleCommands.pdb -------------------------------------------------------------------------------- /app/src/main/assets/ConsoleCommands/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/ConsoleCommands/manifest.json -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/SMAPI.Toolkit.CoreInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/SMAPI.Toolkit.CoreInterfaces.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/SMAPI.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/SMAPI.Toolkit.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/StardewModdingAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/StardewModdingAPI.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/System.Data.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/System.Numerics.dll -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/classes.dex -------------------------------------------------------------------------------- /app/src/main/assets/SMAPI/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SMAPI/debug.keystore -------------------------------------------------------------------------------- /app/src/main/assets/SaveBackup/SaveBackup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SaveBackup/SaveBackup.dll -------------------------------------------------------------------------------- /app/src/main/assets/SaveBackup/SaveBackup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SaveBackup/SaveBackup.pdb -------------------------------------------------------------------------------- /app/src/main/assets/SaveBackup/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/SaveBackup/manifest.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/MonoGame.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/MonoGame.Framework.dll -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/SMAPI.Toolkit.CoreInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/SMAPI.Toolkit.CoreInterfaces.dll -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/SMAPI.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/SMAPI.Toolkit.dll -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/StardewModdingAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/StardewModdingAPI.dll -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/StardewValley.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/StardewValley.dll -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/config.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/de.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/default.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/es.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/fr.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/ja.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/pt.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/ru.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/i18n/tr.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/i18n/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "warn.invalid-content-removed": "非法内容已移除以防游戏闪退(查看SMAPI控制台获得更多信息)" 3 | } 4 | -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/metadata.json -------------------------------------------------------------------------------- /app/src/main/assets/Stardew/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/Stardew/mscorlib.dll -------------------------------------------------------------------------------- /app/src/main/assets/VirtualKeyboard/VirtualKeyboard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/VirtualKeyboard/VirtualKeyboard.dll -------------------------------------------------------------------------------- /app/src/main/assets/VirtualKeyboard/VirtualKeyboard.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/VirtualKeyboard/VirtualKeyboard.pdb -------------------------------------------------------------------------------- /app/src/main/assets/VirtualKeyboard/assets/togglebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/VirtualKeyboard/assets/togglebutton.png -------------------------------------------------------------------------------- /app/src/main/assets/VirtualKeyboard/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/VirtualKeyboard/manifest.json -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xhdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxhdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/assets/mipmap-xxxhdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/ApkExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/ApkExtractor.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/ApkInstall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/ApkInstall.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/BackgroundTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/BackgroundTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/ConfigAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/ConfigAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/ConfigEditorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/ConfigEditorFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/CopyAssets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/CopyAssets.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/DialogFrag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/DialogFrag.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/GitHubFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/GitHubFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/InstallFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/InstallFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/SignApk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/SignApk.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/TabAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/TabAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/WriteApk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/WriteApk.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/Base64.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/CertCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/CertCreator.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/JKS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/JKS.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/KeySet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/KeySet.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/KeyStoreFileManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/KeyStoreFileManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/LoadKeystoreException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/LoadKeystoreException.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/SignatureBlockGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/SignatureBlockGenerator.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/ZipSigner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/ZipSigner.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/CentralEnd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/CentralEnd.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntry.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntryInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntryInputStream.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntryOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZioEntryOutputStream.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZipInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZipInput.java -------------------------------------------------------------------------------- /app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZipOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/java/com/MartyrPher/smapiandroidinstaller/apksigner/zipio/ZipOutput.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/button.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/button_original.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/community_center_actual_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/community_center_actual_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/community_center_farthest_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/community_center_farthest_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/community_center_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/community_center_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/layout_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/text_box.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/text_box.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/text_box_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/drawable/text_box_original.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_editing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/config_editing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/config_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/github_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/github_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/progress_bar_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/progress_bar_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_pager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/layout/view_pager.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values-en/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /current_scheme.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/current_scheme.PNG -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyrPher/SMAPI-Android-Installer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------