├── .gitignore ├── AppStarterProject ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── AppStarter │ ├── .gitignore │ ├── AppStarter.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── firetv-home-icon.png │ │ └── firetv-settings-icon.png │ │ ├── java │ │ └── de │ │ │ └── belu │ │ │ └── appstarter │ │ │ ├── gui │ │ │ ├── AppActivity.java │ │ │ ├── AppSettingsOverlayDialog.java │ │ │ ├── CustomFragment.java │ │ │ ├── FileDialog.java │ │ │ ├── InfoOverlayDialog.java │ │ │ ├── InfosPrefActivity.java │ │ │ ├── InstalledAppsAdapter.java │ │ │ ├── LeftBarItemsListAdapter.java │ │ │ ├── MainActivity.java │ │ │ ├── PreferenceActivity.java │ │ │ ├── ResizeWidthAnimation.java │ │ │ ├── UpdaterActivity.java │ │ │ ├── UpdaterAppsAdapter.java │ │ │ ├── UpdaterDialogHandler.java │ │ │ └── WallpaperSelectDialog.java │ │ │ ├── tests │ │ │ └── KodiTests.java │ │ │ └── tools │ │ │ ├── AppInfo.java │ │ │ ├── AppStarter.java │ │ │ ├── AppStarterUpdater.java │ │ │ ├── KodiUpdater.java │ │ │ ├── SPMCUpdater.java │ │ │ ├── SettingsProvider.java │ │ │ ├── Tools.java │ │ │ ├── Updater.java │ │ │ └── ZipDirectory.java │ │ └── res │ │ ├── anim │ │ ├── appsettings_overlay_in.xml │ │ └── appsettings_overlay_out.xml │ │ ├── drawable │ │ ├── appdrawergriditembackground.xml │ │ ├── appselector.xml │ │ ├── appsettingsbackground.xml │ │ ├── appsettingsselector.xml │ │ ├── infooverlaybackground.xml │ │ ├── itemselector.xml │ │ ├── itemtextselector.xml │ │ └── mainbackground.xml │ │ ├── layout │ │ ├── appactivity.xml │ │ ├── appdrawergriditemlayout.xml │ │ ├── appdrawergriditemlayout_withbackground.xml │ │ ├── appsettingsoverlaydialog.xml │ │ ├── appupdateritemlayout.xml │ │ ├── infooverlaydialog.xml │ │ ├── leftbarlistitemlayout.xml │ │ ├── mainactivity.xml │ │ └── updateractivity.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-nodpi │ │ ├── app_settings.png │ │ ├── app_sort.png │ │ ├── appstarter_logo_only_white.png │ │ ├── appstarter_logo_only_white_middle.png │ │ └── appstarter_logo_only_white_small.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-cn │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── infoprefactivity.xml │ │ └── preferencesactivity.xml ├── AppStarterProject.iml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md └── Screenshots ├── INSTALLTUT ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png ├── 06.png ├── 07.png ├── 08.png ├── 09.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.1.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 20.png ├── 21.png ├── 22.png ├── 23.png ├── 24.png └── 25.png ├── appstarter-logo.png ├── appstarter-logo_small.png ├── appstarter_screenshot_01.png ├── appstarter_screenshot_01_small.png ├── appstarter_screenshot_02.png ├── appstarter_screenshot_02_small.png ├── appstarter_screenshot_04.png ├── appstarter_screenshot_04_small.png ├── appstarter_screenshot_05.png └── appstarter_screenshot_05_small.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /AppStarterProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.gitignore -------------------------------------------------------------------------------- /AppStarterProject/.idea/.name: -------------------------------------------------------------------------------- 1 | AppStarterProject -------------------------------------------------------------------------------- /AppStarterProject/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/compiler.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/encodings.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/gradle.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/misc.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/modules.xml -------------------------------------------------------------------------------- /AppStarterProject/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/AppStarter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/AppStarter.iml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/build.gradle -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/proguard-rules.pro -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/assets/firetv-home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/assets/firetv-home-icon.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/assets/firetv-settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/assets/firetv-settings-icon.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/AppActivity.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/AppSettingsOverlayDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/AppSettingsOverlayDialog.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/CustomFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/CustomFragment.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/FileDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/FileDialog.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InfoOverlayDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InfoOverlayDialog.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InfosPrefActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InfosPrefActivity.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InstalledAppsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/InstalledAppsAdapter.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/LeftBarItemsListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/LeftBarItemsListAdapter.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/MainActivity.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/PreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/PreferenceActivity.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/ResizeWidthAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/ResizeWidthAnimation.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterActivity.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterAppsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterAppsAdapter.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterDialogHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/UpdaterDialogHandler.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/WallpaperSelectDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/gui/WallpaperSelectDialog.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tests/KodiTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tests/KodiTests.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppInfo.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppStarter.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppStarterUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/AppStarterUpdater.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/KodiUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/KodiUpdater.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/SPMCUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/SPMCUpdater.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/SettingsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/SettingsProvider.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/Tools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/Tools.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/Updater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/Updater.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/ZipDirectory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/java/de/belu/appstarter/tools/ZipDirectory.java -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/anim/appsettings_overlay_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/anim/appsettings_overlay_in.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/anim/appsettings_overlay_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/anim/appsettings_overlay_out.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/appdrawergriditembackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/appdrawergriditembackground.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/appselector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/appselector.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/appsettingsbackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/appsettingsbackground.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/appsettingsselector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/appsettingsselector.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/infooverlaybackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/infooverlaybackground.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/itemselector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/itemselector.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/itemtextselector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/itemtextselector.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/drawable/mainbackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/drawable/mainbackground.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/appactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/appactivity.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/appdrawergriditemlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/appdrawergriditemlayout.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/appdrawergriditemlayout_withbackground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/appdrawergriditemlayout_withbackground.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/appsettingsoverlaydialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/appsettingsoverlaydialog.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/appupdateritemlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/appupdateritemlayout.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/infooverlaydialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/infooverlaydialog.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/leftbarlistitemlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/leftbarlistitemlayout.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/mainactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/mainactivity.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/layout/updateractivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/layout/updateractivity.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/app_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/app_settings.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/app_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/app_sort.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white_middle.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-nodpi/appstarter_logo_only_white_small.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values-cn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values-cn/strings.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/xml/infoprefactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/xml/infoprefactivity.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarter/src/main/res/xml/preferencesactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarter/src/main/res/xml/preferencesactivity.xml -------------------------------------------------------------------------------- /AppStarterProject/AppStarterProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/AppStarterProject.iml -------------------------------------------------------------------------------- /AppStarterProject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/build.gradle -------------------------------------------------------------------------------- /AppStarterProject/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/gradle.properties -------------------------------------------------------------------------------- /AppStarterProject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AppStarterProject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AppStarterProject/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/gradlew -------------------------------------------------------------------------------- /AppStarterProject/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/AppStarterProject/gradlew.bat -------------------------------------------------------------------------------- /AppStarterProject/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':AppStarter' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/01.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/02.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/03.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/04.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/05.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/06.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/07.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/08.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/09.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/10.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/11.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/12.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/13.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/14.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/14.1.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/14.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/15.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/16.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/17.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/18.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/19.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/20.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/21.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/22.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/23.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/24.png -------------------------------------------------------------------------------- /Screenshots/INSTALLTUT/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/INSTALLTUT/25.png -------------------------------------------------------------------------------- /Screenshots/appstarter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter-logo.png -------------------------------------------------------------------------------- /Screenshots/appstarter-logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter-logo_small.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_01.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_01_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_01_small.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_02.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_02_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_02_small.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_04.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_04_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_04_small.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_05.png -------------------------------------------------------------------------------- /Screenshots/appstarter_screenshot_05_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx02/AppStarter/HEAD/Screenshots/appstarter_screenshot_05_small.png --------------------------------------------------------------------------------