├── .gitattributes
├── .gitignore
├── LICENSE.md
├── README.md
├── app
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── kotlin
│ └── com
│ │ └── andreacioccarelli
│ │ └── androoster
│ │ ├── App.kt
│ │ ├── core
│ │ ├── Core.java
│ │ ├── CoreBase.kt
│ │ ├── FrameworkSurface.kt
│ │ ├── HardwareCore.kt
│ │ ├── RootFile.kt
│ │ └── TerminalCore.kt
│ │ ├── dataset
│ │ ├── KeyStore.kt
│ │ └── XmlKeys.kt
│ │ ├── interfaces
│ │ ├── BillingCodes.kt
│ │ ├── ClickListener.kt
│ │ ├── Governors.kt
│ │ └── RootCodes.kt
│ │ ├── service
│ │ ├── BootService.kt
│ │ └── IconImageView.java
│ │ ├── tools
│ │ ├── CPUGovernorDocs.kt
│ │ ├── ConnectionsManager.kt
│ │ ├── CryptoFactory.kt
│ │ ├── FabManager.java
│ │ ├── GradientGenerator.kt
│ │ ├── LaunchManager.kt
│ │ ├── LaunchStruct.kt
│ │ ├── LicenseManager.java
│ │ ├── PreferencesBuilder.java
│ │ ├── RebootDialog.kt
│ │ └── UI.java
│ │ └── ui
│ │ ├── UIBattery.kt
│ │ ├── UICpu.kt
│ │ ├── UIDebug.kt
│ │ ├── UIGeneral.kt
│ │ ├── UIGps.kt
│ │ ├── UIGraphic.kt
│ │ ├── UIHardware.kt
│ │ ├── UIKernel.kt
│ │ ├── UINetworking.kt
│ │ ├── UIRam.kt
│ │ ├── UIStorage.kt
│ │ ├── about
│ │ ├── LicensesTouchListener.java
│ │ ├── RecyclerViewTouchListener.java
│ │ └── UIAbout.kt
│ │ ├── backup
│ │ ├── BackupManager.kt
│ │ ├── BackupPreferencesPatcher.kt
│ │ └── DateGenerator.kt
│ │ ├── base
│ │ └── BaseActivity.kt
│ │ ├── boot
│ │ ├── RootEnvironmentMapper.kt
│ │ └── UIBoot.kt
│ │ ├── dashboard
│ │ ├── RecentWidget.java
│ │ ├── RecentWidgetProvider.kt
│ │ └── UIDashboard.kt
│ │ ├── settings
│ │ ├── BuiltInThemes.kt
│ │ ├── PasswordChecker.kt
│ │ ├── SettingStore.kt
│ │ ├── SettingsReflector.kt
│ │ ├── SettingsWrapper.java
│ │ └── UISettings.kt
│ │ ├── upgrade
│ │ ├── BillingKeys.kt
│ │ ├── SecurityContext.kt
│ │ └── UIUpgrade.kt
│ │ └── wizard
│ │ └── UIWizard.kt
│ └── res
│ ├── anim
│ ├── activity_slide_right.xml
│ └── fab_full.xml
│ ├── drawable-hdpi
│ ├── add.png
│ ├── battery.png
│ ├── boost.png
│ ├── close.png
│ ├── close_activity.png
│ ├── connection_cell_icon.png
│ ├── connection_offline_icon.png
│ ├── connection_wifi_icon.png
│ ├── cpu.png
│ ├── dashboard.png
│ ├── dashboard_adb.png
│ ├── dashboard_memory.png
│ ├── debug.png
│ ├── drawer_backup_black.png
│ ├── drawer_backup_white.png
│ ├── drawer_black_about.png
│ ├── drawer_black_battery_100.png
│ ├── drawer_black_buy.png
│ ├── drawer_black_cpu.png
│ ├── drawer_black_dashboard.png
│ ├── drawer_black_debug.png
│ ├── drawer_black_gps.png
│ ├── drawer_black_graphic.png
│ ├── drawer_black_hardware.png
│ ├── drawer_black_internet.png
│ ├── drawer_black_kernel.png
│ ├── drawer_black_ram.png
│ ├── drawer_black_settings.png
│ ├── drawer_black_storage.png
│ ├── drawer_black_tweaks.png
│ ├── drawer_white_about.png
│ ├── drawer_white_battery_100.png
│ ├── drawer_white_buy.png
│ ├── drawer_white_cpu.png
│ ├── drawer_white_dashboard.png
│ ├── drawer_white_debug.png
│ ├── drawer_white_gps.png
│ ├── drawer_white_graphic.png
│ ├── drawer_white_hardware.png
│ ├── drawer_white_internet.png
│ ├── drawer_white_kernel.png
│ ├── drawer_white_ram.png
│ ├── drawer_white_settings.png
│ ├── drawer_white_storage.png
│ ├── drawer_white_tweaks.png
│ ├── error.png
│ ├── gps.png
│ ├── gpu.png
│ ├── graphic.png
│ ├── hardware.png
│ ├── heart.png
│ ├── icon_error.png
│ ├── icon_fingerprint.png
│ ├── icon_password.png
│ ├── icon_pin.png
│ ├── icon_success.png
│ ├── icon_warning.png
│ ├── internet.png
│ ├── kernel.png
│ ├── menu_delete.png
│ ├── menu_restore.png
│ ├── new_backup.png
│ ├── notification_default.png
│ ├── off.png
│ ├── on.png
│ ├── ram.png
│ ├── storage.png
│ ├── translators.png
│ ├── tweaks.png
│ ├── update.png
│ ├── warning_red.png
│ └── wipe_stats.png
│ ├── drawable-mdpi
│ ├── add.png
│ ├── battery.png
│ ├── boost.png
│ ├── close.png
│ ├── close_activity.png
│ ├── connection_cell_icon.png
│ ├── connection_offline_icon.png
│ ├── connection_wifi_icon.png
│ ├── cpu.png
│ ├── dashboard.png
│ ├── dashboard_adb.png
│ ├── dashboard_memory.png
│ ├── debug.png
│ ├── drawer_backup_black.png
│ ├── drawer_backup_white.png
│ ├── drawer_black_about.png
│ ├── drawer_black_battery_100.png
│ ├── drawer_black_buy.png
│ ├── drawer_black_cpu.png
│ ├── drawer_black_dashboard.png
│ ├── drawer_black_debug.png
│ ├── drawer_black_gps.png
│ ├── drawer_black_graphic.png
│ ├── drawer_black_hardware.png
│ ├── drawer_black_internet.png
│ ├── drawer_black_kernel.png
│ ├── drawer_black_ram.png
│ ├── drawer_black_settings.png
│ ├── drawer_black_storage.png
│ ├── drawer_black_tweaks.png
│ ├── drawer_white_about.png
│ ├── drawer_white_battery_100.png
│ ├── drawer_white_buy.png
│ ├── drawer_white_cpu.png
│ ├── drawer_white_dashboard.png
│ ├── drawer_white_debug.png
│ ├── drawer_white_gps.png
│ ├── drawer_white_graphic.png
│ ├── drawer_white_hardware.png
│ ├── drawer_white_internet.png
│ ├── drawer_white_kernel.png
│ ├── drawer_white_ram.png
│ ├── drawer_white_settings.png
│ ├── drawer_white_storage.png
│ ├── drawer_white_tweaks.png
│ ├── error.png
│ ├── gps.png
│ ├── gpu.png
│ ├── graphic.png
│ ├── hardware.png
│ ├── heart.png
│ ├── icon_error.png
│ ├── icon_fingerprint.png
│ ├── icon_password.png
│ ├── icon_pin.png
│ ├── icon_success.png
│ ├── icon_warning.png
│ ├── internet.png
│ ├── kernel.png
│ ├── menu_delete.png
│ ├── menu_restore.png
│ ├── new_backup.png
│ ├── notification_default.png
│ ├── off.png
│ ├── on.png
│ ├── ram.png
│ ├── storage.png
│ ├── translators.png
│ ├── tweaks.png
│ ├── update.png
│ ├── warning_red.png
│ └── wipe_stats.png
│ ├── drawable-v21
│ ├── rect_selector_dark.xml
│ ├── rect_selector_strong_dark.xml
│ ├── round_selector_dark.xml
│ └── round_selector_mask.xml
│ ├── drawable-xhdpi
│ ├── add.png
│ ├── battery.png
│ ├── boost.png
│ ├── close.png
│ ├── close_activity.png
│ ├── connection_cell_icon.png
│ ├── connection_offline_icon.png
│ ├── connection_wifi_icon.png
│ ├── cpu.png
│ ├── dashboard.png
│ ├── dashboard_adb.png
│ ├── dashboard_memory.png
│ ├── debug.png
│ ├── drawer_backup_black.png
│ ├── drawer_backup_white.png
│ ├── drawer_black_about.png
│ ├── drawer_black_battery_100.png
│ ├── drawer_black_buy.png
│ ├── drawer_black_cpu.png
│ ├── drawer_black_dashboard.png
│ ├── drawer_black_debug.png
│ ├── drawer_black_gps.png
│ ├── drawer_black_graphic.png
│ ├── drawer_black_hardware.png
│ ├── drawer_black_internet.png
│ ├── drawer_black_kernel.png
│ ├── drawer_black_ram.png
│ ├── drawer_black_settings.png
│ ├── drawer_black_storage.png
│ ├── drawer_black_tweaks.png
│ ├── drawer_white_about.png
│ ├── drawer_white_battery_100.png
│ ├── drawer_white_buy.png
│ ├── drawer_white_cpu.png
│ ├── drawer_white_dashboard.png
│ ├── drawer_white_debug.png
│ ├── drawer_white_gps.png
│ ├── drawer_white_graphic.png
│ ├── drawer_white_hardware.png
│ ├── drawer_white_internet.png
│ ├── drawer_white_kernel.png
│ ├── drawer_white_ram.png
│ ├── drawer_white_settings.png
│ ├── drawer_white_storage.png
│ ├── drawer_white_tweaks.png
│ ├── error.png
│ ├── gps.png
│ ├── gpu.png
│ ├── graphic.png
│ ├── hardware.png
│ ├── heart.png
│ ├── icon_error.png
│ ├── icon_fingerprint.png
│ ├── icon_password.png
│ ├── icon_pin.png
│ ├── icon_success.png
│ ├── icon_warning.png
│ ├── internet.png
│ ├── kernel.png
│ ├── menu_delete.png
│ ├── menu_restore.png
│ ├── new_backup.png
│ ├── notification_default.png
│ ├── off.png
│ ├── on.png
│ ├── ram.png
│ ├── storage.png
│ ├── translators.png
│ ├── tweaks.png
│ ├── update.png
│ ├── warning_red.png
│ └── wipe_stats.png
│ ├── drawable-xxhdpi
│ ├── add.png
│ ├── battery.png
│ ├── boost.png
│ ├── close.png
│ ├── close_activity.png
│ ├── connection_cell_icon.png
│ ├── connection_offline_icon.png
│ ├── connection_wifi_icon.png
│ ├── cpu.png
│ ├── dashboard.png
│ ├── dashboard_adb.png
│ ├── dashboard_memory.png
│ ├── debug.png
│ ├── drawer_backup_black.png
│ ├── drawer_backup_white.png
│ ├── drawer_black_about.png
│ ├── drawer_black_battery_100.png
│ ├── drawer_black_buy.png
│ ├── drawer_black_cpu.png
│ ├── drawer_black_dashboard.png
│ ├── drawer_black_debug.png
│ ├── drawer_black_gps.png
│ ├── drawer_black_graphic.png
│ ├── drawer_black_hardware.png
│ ├── drawer_black_internet.png
│ ├── drawer_black_kernel.png
│ ├── drawer_black_ram.png
│ ├── drawer_black_settings.png
│ ├── drawer_black_storage.png
│ ├── drawer_black_tweaks.png
│ ├── drawer_white_about.png
│ ├── drawer_white_battery_100.png
│ ├── drawer_white_buy.png
│ ├── drawer_white_cpu.png
│ ├── drawer_white_dashboard.png
│ ├── drawer_white_debug.png
│ ├── drawer_white_gps.png
│ ├── drawer_white_graphic.png
│ ├── drawer_white_hardware.png
│ ├── drawer_white_internet.png
│ ├── drawer_white_kernel.png
│ ├── drawer_white_ram.png
│ ├── drawer_white_settings.png
│ ├── drawer_white_storage.png
│ ├── drawer_white_tweaks.png
│ ├── error.png
│ ├── gps.png
│ ├── gpu.png
│ ├── graphic.png
│ ├── hardware.png
│ ├── heart.png
│ ├── icon_error.png
│ ├── icon_fingerprint.png
│ ├── icon_password.png
│ ├── icon_pin.png
│ ├── icon_success.png
│ ├── icon_warning.png
│ ├── internet.png
│ ├── kernel.png
│ ├── menu_delete.png
│ ├── menu_restore.png
│ ├── new_backup.png
│ ├── notification_default.png
│ ├── off.png
│ ├── on.png
│ ├── ram.png
│ ├── storage.png
│ ├── translators.png
│ ├── tweaks.png
│ ├── update.png
│ ├── warning_red.png
│ └── wipe_stats.png
│ ├── drawable-xxxhdpi
│ ├── add.png
│ ├── battery.png
│ ├── boost.png
│ ├── close.png
│ ├── close_activity.png
│ ├── connection_cell_icon.png
│ ├── connection_offline_icon.png
│ ├── connection_wifi_icon.png
│ ├── cpu.png
│ ├── dashboard.png
│ ├── dashboard_adb.png
│ ├── dashboard_memory.png
│ ├── debug.png
│ ├── drawer_backup_black.png
│ ├── drawer_backup_white.png
│ ├── drawer_black_about.png
│ ├── drawer_black_battery_100.png
│ ├── drawer_black_buy.png
│ ├── drawer_black_cpu.png
│ ├── drawer_black_dashboard.png
│ ├── drawer_black_debug.png
│ ├── drawer_black_gps.png
│ ├── drawer_black_graphic.png
│ ├── drawer_black_hardware.png
│ ├── drawer_black_internet.png
│ ├── drawer_black_kernel.png
│ ├── drawer_black_ram.png
│ ├── drawer_black_settings.png
│ ├── drawer_black_storage.png
│ ├── drawer_black_tweaks.png
│ ├── drawer_white_about.png
│ ├── drawer_white_battery_100.png
│ ├── drawer_white_buy.png
│ ├── drawer_white_cpu.png
│ ├── drawer_white_dashboard.png
│ ├── drawer_white_debug.png
│ ├── drawer_white_gps.png
│ ├── drawer_white_graphic.png
│ ├── drawer_white_hardware.png
│ ├── drawer_white_internet.png
│ ├── drawer_white_kernel.png
│ ├── drawer_white_ram.png
│ ├── drawer_white_settings.png
│ ├── drawer_white_storage.png
│ ├── drawer_white_tweaks.png
│ ├── error.png
│ ├── gps.png
│ ├── gpu.png
│ ├── graphic.png
│ ├── hardware.png
│ ├── heart.png
│ ├── icon_error.png
│ ├── icon_fingerprint.png
│ ├── icon_password.png
│ ├── icon_pin.png
│ ├── icon_success.png
│ ├── icon_warning.png
│ ├── internet.png
│ ├── kernel.png
│ ├── menu_delete.png
│ ├── menu_restore.png
│ ├── new_backup.png
│ ├── notification_default.png
│ ├── off.png
│ ├── on.png
│ ├── ram.png
│ ├── storage.png
│ ├── translators.png
│ ├── tweaks.png
│ ├── update.png
│ ├── warning_red.png
│ └── wipe_stats.png
│ ├── drawable
│ ├── about_branch.xml
│ ├── about_bug_report.xml
│ ├── about_changelog.xml
│ ├── about_circle_google_plus.xml
│ ├── about_github.xml
│ ├── about_google_plus.xml
│ ├── about_license.xml
│ ├── about_mail.xml
│ ├── about_me.xml
│ ├── about_open_in_browser.xml
│ ├── about_packagename.xml
│ ├── about_rate.xml
│ ├── about_settings.xml
│ ├── about_twitter.xml
│ ├── about_version.xml
│ ├── base.png
│ ├── code.xml
│ ├── intro_image_1.png
│ ├── intro_image_2.png
│ ├── intro_image_3.png
│ ├── intro_image_4.png
│ ├── launcher.png
│ ├── launcher_light.png
│ ├── rect_selector_dark.xml
│ ├── rect_selector_strong_dark.xml
│ ├── round_selected_dark.xml
│ ├── round_selector_dark.xml
│ ├── sdmaid.png
│ ├── upgrade_icon_key.xml
│ ├── upgrade_icon_lock.xml
│ ├── upgrade_icon_palette.xml
│ └── upgrade_icon_support.xml
│ ├── layout-small
│ └── boot.xml
│ ├── layout-sw600dp
│ ├── battery_content.xml
│ ├── cpu_content.xml
│ ├── dashboard_content.xml
│ ├── debug_content.xml
│ ├── general_content.xml
│ ├── gps_content.xml
│ ├── graph_content.xml
│ ├── hardware_content.xml
│ ├── kernel_content.xml
│ ├── network_content.xml
│ ├── ram_content.xml
│ ├── storage_content.xml
│ └── upgrade_content_v2.xml
│ ├── layout-w640dp
│ └── activity_about_content.xml
│ ├── layout-xlarge
│ └── boot.xml
│ ├── layout
│ ├── activity_about.xml
│ ├── activity_about_content.xml
│ ├── activity_preferences.xml
│ ├── auth_setup.xml
│ ├── battery.xml
│ ├── battery_content.xml
│ ├── boot.xml
│ ├── card_about_app.xml
│ ├── card_actions.xml
│ ├── card_author.xml
│ ├── card_special_thanks.xml
│ ├── cpu.xml
│ ├── cpu_content.xml
│ ├── dashboard.xml
│ ├── dashboard_content.xml
│ ├── debug.xml
│ ├── debug_content.xml
│ ├── dialog_changelog.xml
│ ├── dialog_licenses.xml
│ ├── dialog_translators.xml
│ ├── drawer_header.xml
│ ├── edit_dialog.xml
│ ├── edit_dialog_spinner.xml
│ ├── edit_seekbar.xml
│ ├── general.xml
│ ├── general_content.xml
│ ├── gps.xml
│ ├── gps_content.xml
│ ├── graph.xml
│ ├── graph_content.xml
│ ├── hardware.xml
│ ├── hardware_content.xml
│ ├── kernel.xml
│ ├── kernel_content.xml
│ ├── license_item.xml
│ ├── login_fingerprint_dialog.xml
│ ├── login_password_dialog.xml
│ ├── network.xml
│ ├── network_content.xml
│ ├── ram.xml
│ ├── ram_content.xml
│ ├── storage.xml
│ ├── storage_content.xml
│ ├── translator_item.xml
│ ├── upgrade_activity_v2.xml
│ └── upgrade_content_v2.xml
│ ├── menu
│ ├── overflow.xml
│ └── upgrade.xml
│ ├── mipmap-hdpi
│ └── ic_launcher.png
│ ├── mipmap-mdpi
│ └── ic_launcher.png
│ ├── mipmap-xhdpi
│ └── ic_launcher.png
│ ├── mipmap-xxhdpi
│ └── ic_launcher.png
│ ├── mipmap-xxxhdpi
│ └── ic_launcher.png
│ ├── values-it
│ └── strings.xml
│ ├── values-w820dp
│ └── dimens.xml
│ ├── values-zh-rCN
│ └── strings.xml
│ ├── values
│ ├── arrays.xml
│ ├── attrs.xml
│ ├── colors.xml
│ ├── dimens.xml
│ ├── drawables.xml
│ ├── settings.xml
│ ├── strings.xml
│ ├── styles.xml
│ └── themes.xml
│ └── xml
│ ├── pref_animations.xml
│ ├── pref_general.xml
│ ├── pref_menu.xml
│ ├── pref_security.xml
│ └── pref_theme.xml
├── build.gradle
├── fastlane
└── metadata
│ └── android
│ └── en-US
│ ├── changelogs
│ └── 62.txt
│ ├── full_description.txt
│ ├── images
│ ├── icon.png
│ └── phoneScreenshots
│ │ ├── 1.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ ├── 4.png
│ │ ├── 6.png
│ │ ├── 7.png
│ │ └── 8.png
│ ├── short_description.txt
│ └── title.txt
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── packages.txt
└── settings.gradle
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Built application files
2 | *.apk
3 | *.ap_
4 |
5 | # Mac Files
6 | *.DS_Store
7 |
8 | # Files for the ART/Dalvik VM
9 | *.dex
10 |
11 | # Java class files
12 | *.class
13 |
14 | # Generated files
15 | bin/
16 | gen/
17 | out/
18 |
19 | # Gradle files
20 | .gradle/
21 | build/
22 |
23 | # Local configuration file (sdk path, etc)
24 | local.properties
25 |
26 | # Proguard folder generated by Eclipse
27 | proguard/
28 |
29 | # Log Files
30 | *.log
31 |
32 | # Android Studio Navigation editor temp files
33 | .navigation/
34 |
35 | # Android Studio captures folder
36 | captures/
37 |
38 | # IntelliJ
39 | *.iml
40 | .idea/workspace.xml
41 | .idea/tasks.xml
42 | .idea/gradle.xml
43 | .idea/assetWizardSettings.xml
44 | .idea/dictionaries
45 | .idea/libraries
46 | .idea/caches
47 |
48 | # Keystore files
49 | # Uncomment the following line if you do not want to check your keystore files in.
50 | #*.jks
51 |
52 | # External native build folder generated in Android Studio 2.2 and later
53 | .externalNativeBuild
54 |
55 | # Google Services (e.g. APIs or Firebase)
56 | google-services.json
57 |
58 | # Freeline
59 | freeline.py
60 | freeline/
61 | freeline_project_description.json
62 |
63 | # fastlane
64 | fastlane/report.xml
65 | fastlane/Preview.html
66 | fastlane/screenshots
67 | fastlane/test_output
68 | fastlane/readme.md
69 |
70 | # Extra
71 | .gradle
72 | .idea
73 | build
74 | .git
75 | app/release/output.json
76 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 | /release
3 | /.externalNativeBuild
4 |
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/andrea/Library/Android/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class KEY to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
19 |
20 | -keepattributes SourceFile, LineNumberTable
21 |
22 | -keep class com.android.vending.billing.**
23 |
24 | -keep class android.support.v7.widget.** { *; }
25 | -keep interface android.support.v7.widget.**
26 |
27 | -keep class android.support.v13.app.** { *; }
28 | -keep interface android.support.v13.app.**
29 |
30 | -keep class android.support.v7.** { *; }
31 | -keep interface android.support.v7.**
32 |
33 | -keep class android.support.v4.app.** { *; }
34 | -keep interface android.support.v4.app.** { *; }
35 |
36 | -dontwarn android.support.**
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/App.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster
2 |
3 | import android.support.multidex.MultiDexApplication
4 |
5 | class App : MultiDexApplication()
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/dataset/KeyStore.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.dataset
2 |
3 | object KeyStore {
4 | var hashedDecryptionKey = "92cf3955f1fc9a89d3874751272d6c21298b2a8e2364af4aae6169b992cb6f7f"
5 | }
6 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/dataset/XmlKeys.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.dataset
2 |
3 |
4 | object XmlKeys {
5 | val DARK_THEME_APPLIED = "darkThemeApplied"
6 | val WIFI_EDITED_TEXT_CACHE = "WifiEditCachedText"
7 | val RECENTLY_WIDGET_NOT_INITIALIZED = "isRecentlyNotInitialized"
8 | val RECENTLY_WIDGET_DATASET = "recently"
9 | val LAST_OPENED = "last_opened"
10 | val SETTINGS_AUTO_CONFIG = "settingsAutoConfig"
11 | val CACHE_MODE_COUNTER = "cacheModeTimes"
12 | val LAST_VERSION_CODE = "lastVersionCode"
13 | val LAST_IS_TEST_RELEASE = "lastValueIsTestRelease"
14 | val ACTIVATED_FOR_TESTING = "isBuildConfiguredForTesting"
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/interfaces/BillingCodes.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.interfaces
2 |
3 | interface BillingCodes {
4 | companion object {
5 | val BILLING_RESPONSE_RESULT_OK = 0 // Success
6 | val BILLING_RESPONSE_RESULT_USER_CANCELED = 1 // User pressed back or canceled a dialog
7 | val BILLING_RESPONSE_RESULT_SERVICE_UNAVAILABLE = 2 // Network connection is down
8 | val BILLING_RESPONSE_RESULT_BILLING_UNAVAILABLE = 3 // Billing API version is not supported for the type requested
9 | val BILLING_RESPONSE_RESULT_ITEM_UNAVAILABLE = 4 // Requested product is not available for purchase
10 | val BILLING_RESPONSE_RESULT_DEVELOPER_ERROR = 5 // Invalid arguments provided to the API. This error can also indicate that the application was not correctly signed or properly set up for In-app Billing in Google Play, or does not have the necessary permissions in its manifest
11 | val BILLING_RESPONSE_RESULT_ERROR = 6 // Fatal error during the API action
12 | val BILLING_RESPONSE_RESULT_ITEM_ALREADY_OWNED = 7 // Failure to purchase since item is already owned
13 | val BILLING_RESPONSE_RESULT_ITEM_NOT_OWNED = 8 // Failure to consume since item is not owned
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/interfaces/ClickListener.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.interfaces
2 |
3 | import android.view.View
4 |
5 | interface ClickListener {
6 | fun onClick(view: View, position: Int)
7 |
8 | fun onLongClick(view: View, position: Int)
9 | }
10 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/interfaces/Governors.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.interfaces
2 |
3 | import android.annotation.SuppressLint
4 |
5 | @SuppressLint("SdCardPath")
6 | interface Governors {
7 | companion object {
8 | const val USERSPACE = "userspace"
9 | const val PERFORMANCES = "performances"
10 | const val INTERACTIVE = "interactive"
11 | const val POWERSAVE = "powersave"
12 | const val MIN_MAX = "minmax"
13 | const val CONSERVATIVE = "conservative"
14 | const val ONDEMAND = "ondemand"
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/interfaces/RootCodes.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.interfaces
2 |
3 | object RootCodes {
4 | const val NOT_INSTALLED = -1
5 | const val NULL = 0
6 | const val BROKEN = 1
7 | const val SUPERSU_CODE = 11
8 | const val KINGROOT_CODE = 12
9 | const val KINGOROOT_CODE = 13
10 | const val MAGISK_CODE = 14
11 | const val IROOT_CODE = 15
12 | const val MYSU_CODE = 16
13 | const val CWM_CODE = 17
14 | const val CHAINSDD_CODE = 18
15 | const val ROOT_CODE = 20
16 | const val JRUMMY_CODE = 30
17 | const val STERICSON = 31
18 | const val UNKNWON_BUSYBOX_CODE = 32
19 | const val stericscon_packageName = "stericson.busybox"
20 | const val stericscon_packageNamePro = "stericson.busybox.donate"
21 | const val jrummy_packageName = "com.jrummy.busybox.installer"
22 | const val jrummy_packageNamePro = "com.jrummy.busybox.installer.pro"
23 | const val SuperSuPackageName = "eu.chainfire.supersu"
24 | const val KingRootPackageName = "com.kingroot.kinguser"
25 | const val MagiskPackageName = "com.topjohnwu.magisk"
26 | const val KingoRootPackageName = "com.kingoapp.root"
27 | const val iRootPackageName = "com.mgyun.shua.su"
28 | const val MySuPackageName = "com.kryptosmobile.SU"
29 | const val CWMPackageName = "com.koushikdutta.superuser"
30 | const val ChainsDDPackageName = "com.noshufou.android.su"
31 | const val DevSuperSu = "Chainfire"
32 | const val DevKingroot = "Kingroot Studio"
33 | const val DevMagisk = "Topjohnwu"
34 | const val DevKingoroot = "FingerPower Digital Technology Ltd"
35 | const val DevIRoot = "iRoot Technology Ltd"
36 | const val DevMySu = "AppGorser"
37 | const val DevCWM = "ClockworkMod LLC"
38 | const val DevChainsDD = "ChainsDD"
39 | }
40 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/service/IconImageView.java:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.service;
2 |
3 | import android.content.Context;
4 | import android.graphics.PorterDuff;
5 | import android.support.annotation.Keep;
6 | import android.support.v7.widget.AppCompatImageView;
7 | import android.util.AttributeSet;
8 |
9 | import com.andreacioccarelli.androoster.R;
10 | import com.kabouzeid.appthemehelper.util.ATHUtil;
11 |
12 | @Keep
13 | public class IconImageView extends AppCompatImageView {
14 | public IconImageView(Context context) {
15 | super(context);
16 | init(context);
17 | }
18 |
19 | public IconImageView(Context context, AttributeSet attrs) {
20 | super(context, attrs);
21 | init(context);
22 | }
23 |
24 | public IconImageView(Context context, AttributeSet attrs, int defStyleAttr) {
25 | super(context, attrs, defStyleAttr);
26 | init(context);
27 | }
28 |
29 | private void init(Context context) {
30 | if (context == null) return;
31 | setColorFilter(ATHUtil.resolveColor(context, R.attr.iconColor), PorterDuff.Mode.SRC_IN);
32 | }
33 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/CPUGovernorDocs.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | import android.support.annotation.StringRes
4 | import com.andreacioccarelli.androoster.R
5 |
6 | /**
7 | * Created by andrea on 2018/Jun.
8 | * Part of the package com.andreacioccarelli.androoster.tools
9 | */
10 | object CPUGovernorDocs {
11 |
12 | @StringRes
13 | fun grab(governor: String): Int {
14 | return when (governor.lowercase()) {
15 | "ondemand" -> R.string.cpu_governor_content_ondemand
16 | "ondemandx" -> R.string.cpu_governor_content_ondemandx
17 | "performance" -> R.string.cpu_governor_content_performance
18 | "powersave" -> R.string.cpu_governor_content_powersave
19 | "conservative" -> R.string.cpu_governor_content_conservative
20 | "userspace" -> R.string.cpu_governor_content_userspace
21 | "minmax" -> R.string.cpu_governor_content_minmax
22 | "interactive" -> R.string.cpu_governor_content_interactive
23 | else -> R.string.cpu_governor_content_unknown
24 | }
25 | }
26 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/ConnectionsManager.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | import android.content.Context
4 | import android.net.ConnectivityManager
5 | import android.net.wifi.WifiManager
6 |
7 |
8 | /**
9 | * Created by andrea on 2018/mar.
10 | * Part of the package com.andreacioccarelli.androoster.ui.network
11 | */
12 | object ConnectionsManager {
13 |
14 | fun isDataOn(context: Context, connectionsManager: ConnectivityManager): Boolean {
15 | val cm = context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
16 | return try {
17 | val cmClass = Class.forName(cm.javaClass.name)
18 | val method = cmClass.getDeclaredMethod("getMobileDataEnabled")
19 | method.isAccessible = true // Make the method callable
20 | // get the setting for "mobile data"
21 | method.invoke(cm) as Boolean
22 | } catch (e: Exception) {
23 | connectionsManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE)?.isConnected ?: false
24 | }
25 | }
26 |
27 | fun isWifiOn(context: Context): Boolean {
28 | val wifi = context.applicationContext.getSystemService(Context.WIFI_SERVICE) as WifiManager
29 | return wifi.isWifiEnabled
30 | }
31 |
32 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/CryptoFactory.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | import java.math.BigInteger
4 | import java.security.MessageDigest
5 | import java.security.NoSuchAlgorithmException
6 |
7 |
8 | object CryptoFactory {
9 |
10 | fun sha256(str: String): String {
11 | val md: MessageDigest
12 | try {
13 | md = MessageDigest.getInstance("SHA-256")
14 | val messageDigest = md.digest(str.toByteArray())
15 | val number = BigInteger(1, messageDigest)
16 | return number.toString(16)
17 | } catch (e: NoSuchAlgorithmException) {
18 | throw IllegalStateException("Cannot encrypt using SHA-256. ${e.stackTrace}")
19 | }
20 |
21 | }
22 |
23 | fun sha1(str: String): String {
24 | val md: MessageDigest
25 | try {
26 | md = MessageDigest.getInstance("SHA-1")
27 | val messageDigest = md.digest(str.toByteArray())
28 | val number = BigInteger(1, messageDigest)
29 | return number.toString(16)
30 | } catch (e: NoSuchAlgorithmException) {
31 | throw IllegalStateException("Cannot encrypt using SHA-1. ${e.stackTrace}")
32 | }
33 |
34 | }
35 |
36 | fun md5(str: String): String {
37 | val md: MessageDigest
38 | try {
39 | md = MessageDigest.getInstance("md5")
40 | val messageDigest = md.digest(str.toByteArray())
41 | val number = BigInteger(1, messageDigest)
42 | return number.toString(16)
43 | } catch (e: NoSuchAlgorithmException) {
44 | throw IllegalStateException("Cannot encrypt using md5. ${e.stackTrace}")
45 | }
46 | }
47 |
48 | fun serialEncrypt(str: String): String {
49 | return sha1(md5(str))
50 | }
51 |
52 |
53 | }
54 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/GradientGenerator.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | import android.content.Context
4 | import android.graphics.drawable.GradientDrawable
5 |
6 | import com.kabouzeid.appthemehelper.ThemeStore
7 |
8 | object GradientGenerator {
9 | fun get(ctx: Context): GradientDrawable {
10 | val primaryColor = ThemeStore.primaryColor(ctx)
11 | val accentColor = ThemeStore.accentColor(ctx)
12 | val gd = GradientDrawable(GradientDrawable.Orientation.TL_BR,
13 | intArrayOf(accentColor, primaryColor))
14 | gd.cornerRadius = 0f
15 | return gd
16 | }
17 |
18 |
19 | fun get(ctx: Context, orientation: GradientDrawable.Orientation = GradientDrawable.Orientation.TL_BR,
20 | cornerRadius: Float = 0f): GradientDrawable {
21 | val primaryColor = ThemeStore.primaryColor(ctx)
22 | val accentColor = ThemeStore.accentColor(ctx)
23 | val gd = GradientDrawable(orientation,
24 | intArrayOf(accentColor, primaryColor))
25 | gd.cornerRadius = cornerRadius
26 | return gd
27 | }
28 |
29 |
30 | fun get(startColor: Int, endColor: Int,
31 | orientation: GradientDrawable.Orientation = GradientDrawable.Orientation.TL_BR,
32 | cornerRadius: Float = 0f): GradientDrawable {
33 | val gd = GradientDrawable(orientation, intArrayOf(startColor, endColor))
34 | gd.cornerRadius = cornerRadius
35 | return gd
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/LaunchStruct.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | interface LaunchStruct {
4 | companion object {
5 | val NULL = -1
6 | val DASHBOARD_ACTIVITY = 0
7 | val SETTINGS_ACTIVITY = 1
8 | val CPU_ACTIVITY = 2
9 | val RAM_ACTIVITY = 3
10 | val BATTERY_ACTIVITY = 4
11 | val KERNEL_ACTIVITY = 5
12 | val GENERAL_ACTIVITY = 6
13 | val STORAGE_ACTIVITY = 7
14 | val INTERNET_ACTIVITY = 8
15 | val DEBUG_ACTIVITY = 9
16 | val GPS_ACTIVITY = 10
17 | val HARDWARE_ACTIVITY = 11
18 | val GRAPHICS_ACTIVITY = 12
19 | val UPGRADE_ACTIVITY = 13
20 | val ABOUT_ACTIVITY = 14
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/LicenseManager.java:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools;
2 |
3 | import android.content.Context;
4 | import android.content.Intent;
5 |
6 | import com.andreacioccarelli.androoster.dataset.KeyStore;
7 | import com.andreacioccarelli.androoster.ui.upgrade.UIUpgrade;
8 | import com.mikepenz.materialdrawer.Drawer;
9 |
10 | @SuppressWarnings({"unused", "SimplifiableIfStatement"})
11 | public class LicenseManager {
12 |
13 | final static private String default_key = "YW5kcmVh";
14 |
15 | public static void startProActivity(Context ctx, Context Activity, Drawer drawer) {
16 | try {
17 | if (drawer.isDrawerOpen()) drawer.closeDrawer();
18 | drawer.deselect();
19 | } catch (RuntimeException wt) {
20 | wt.printStackTrace();
21 | }
22 | ctx.startActivity(new Intent(ctx, UIUpgrade.class));
23 | }
24 | public static boolean isPro(Context ctx) {
25 | final PreferencesBuilder mBuilder = new PreferencesBuilder(ctx, PreferencesBuilder.defaultFilename);
26 |
27 | return mBuilder.getBoolean("pro", false);
28 | }
29 |
30 | public static void finishProUpgrade(Context ctx) {
31 | final PreferencesBuilder mBuilder = new PreferencesBuilder(ctx, PreferencesBuilder.defaultFilename);
32 | final PreferencesBuilder hashBuilder = new PreferencesBuilder(ctx, PreferencesBuilder.Hashes, CryptoFactory.INSTANCE.md5(KeyStore.INSTANCE.getHashedDecryptionKey()));
33 |
34 | mBuilder.putBoolean("just_bought", true);
35 | mBuilder.putBoolean("pro",true);
36 | }
37 |
38 | public static void clearHashes(Context ctx) {
39 | final PreferencesBuilder hashBuilder = new PreferencesBuilder(ctx, PreferencesBuilder.Hashes, CryptoFactory.INSTANCE.md5(KeyStore.INSTANCE.getHashedDecryptionKey()));
40 | hashBuilder.erasePreferences();
41 | }
42 |
43 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/tools/RebootDialog.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.tools
2 |
3 | import android.content.Context
4 | import com.afollestad.materialdialogs.MaterialDialog
5 | import com.andreacioccarelli.androoster.R
6 | import com.jrummyapps.android.shell.Shell
7 |
8 | /**
9 | * Created by andrea on 2018/May.
10 | * Part of the package com.andreacioccarelli.androoster.tools
11 | */
12 | object RebootDialog {
13 | fun show(context: Context) {
14 | MaterialDialog.Builder(context)
15 | .title(R.string.dialog_reboot_title)
16 | .positiveText(R.string.action_confirm)
17 | .items(R.array.reboot)
18 | .itemsCallbackSingleChoice(-1) { dialog, view, which, text ->
19 |
20 | when (which) {
21 | 0 -> Shell.SU.run("reboot")
22 | 1 -> Shell.SU.run("reboot recovery")
23 | 2 -> Shell.SU.run("reboot bootloader")
24 | 3 -> Shell.SU.run("setprop ctl.restart zygote","killall system_server")
25 | }
26 |
27 | true
28 | }
29 | .show()
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/about/LicensesTouchListener.java:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.about;
2 |
3 | import android.content.Context;
4 | import android.support.v7.widget.RecyclerView;
5 | import android.view.GestureDetector;
6 | import android.view.MotionEvent;
7 | import android.view.View;
8 |
9 | import com.andreacioccarelli.androoster.interfaces.ClickListener;
10 |
11 | public class LicensesTouchListener implements RecyclerView.OnItemTouchListener {
12 |
13 | private GestureDetector gestureDetector;
14 | private ClickListener clickListener;
15 |
16 | public LicensesTouchListener(Context context, final RecyclerView recyclerView, final ClickListener clickListener) {
17 | this.clickListener = clickListener;
18 | gestureDetector = new GestureDetector(context, new GestureDetector.SimpleOnGestureListener() {
19 | @Override
20 | public boolean onSingleTapUp(MotionEvent e) {
21 | return true;
22 | }
23 |
24 | @Override
25 | public void onLongPress(MotionEvent e) {
26 | View child = recyclerView.findChildViewUnder(e.getX(), e.getY());
27 | if (child != null && clickListener != null) {
28 | clickListener.onLongClick(child, recyclerView.getChildPosition(child));
29 | }
30 | }
31 | });
32 | }
33 |
34 | @Override
35 | public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
36 |
37 | View child = rv.findChildViewUnder(e.getX(), e.getY());
38 | if (child != null && clickListener != null && gestureDetector.onTouchEvent(e)) {
39 | clickListener.onClick(child, rv.getChildPosition(child));
40 | }
41 | return false;
42 | }
43 |
44 | @Override
45 | public void onTouchEvent(RecyclerView rv, MotionEvent e) {
46 | }
47 |
48 | @Override
49 | public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
50 |
51 | }
52 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/about/RecyclerViewTouchListener.java:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.about;
2 |
3 | import android.content.Context;
4 | import android.support.v7.widget.RecyclerView;
5 | import android.view.GestureDetector;
6 | import android.view.MotionEvent;
7 | import android.view.View;
8 |
9 | import com.andreacioccarelli.androoster.interfaces.ClickListener;
10 |
11 | public class RecyclerViewTouchListener implements RecyclerView.OnItemTouchListener {
12 |
13 | private GestureDetector gestureDetector;
14 | private ClickListener clickListener;
15 |
16 | public RecyclerViewTouchListener(Context context, final RecyclerView recyclerView, final ClickListener clickListener) {
17 | this.clickListener = clickListener;
18 | gestureDetector = new GestureDetector(context, new GestureDetector.SimpleOnGestureListener() {
19 | @Override
20 | public boolean onSingleTapUp(MotionEvent e) {
21 | return true;
22 | }
23 |
24 | @Override
25 | public void onLongPress(MotionEvent e) {
26 | View child = recyclerView.findChildViewUnder(e.getX(), e.getY());
27 | if (child != null && clickListener != null) {
28 | clickListener.onLongClick(child, recyclerView.getChildPosition(child));
29 | }
30 | }
31 | });
32 | }
33 |
34 | @Override
35 | public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
36 |
37 | View child = rv.findChildViewUnder(e.getX(), e.getY());
38 | if (child != null && clickListener != null && gestureDetector.onTouchEvent(e)) {
39 | clickListener.onClick(child, rv.getChildPosition(child));
40 | }
41 | return false;
42 | }
43 |
44 | @Override
45 | public void onTouchEvent(RecyclerView rv, MotionEvent e) {
46 | }
47 |
48 | @Override
49 | public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
50 |
51 | }
52 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/backup/DateGenerator.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.backup
2 |
3 | import java.text.SimpleDateFormat
4 | import java.util.*
5 |
6 | /**
7 | * Created by andrea on 2018/apr.
8 | * Part of the package com.andreacioccarelli.androoster.tools
9 | */
10 |
11 | object DateGenerator {
12 | private const val datePattern = "dd_MM_yyyy_HH:mm:ss" // 07_01_2018_12:10:56
13 | private const val displayPattern = "EEEE d, MMMM yyyy (h:m a)" // 07_01_2018_12:10:56
14 |
15 | private fun fixMonth(brokenDate: Int): String {
16 | var month = (brokenDate + 1).toString()
17 |
18 | if (month.length == 1) {
19 | month = "0$month"
20 | }
21 |
22 | return month
23 | }
24 |
25 | fun getNowStringDate(): String {
26 | val calendar = Calendar.getInstance(TimeZone.getDefault(), Locale.getDefault())
27 |
28 | return "${calendar.get(Calendar.DAY_OF_MONTH)}_" +
29 | "${fixMonth(calendar.get(Calendar.MONTH))}_" +
30 | "${calendar.get(Calendar.YEAR)}_" +
31 | "${calendar.get(Calendar.HOUR_OF_DAY)}:" +
32 | "${calendar.get(Calendar.MINUTE)}:" +
33 | "${calendar.get(Calendar.SECOND)}"
34 | }
35 |
36 | fun parseString(str: String): Date {
37 | val formatter = SimpleDateFormat(datePattern, Locale.getDefault())
38 | return formatter.parse(str)
39 | }
40 |
41 | fun toHumanDate(str: String): String {
42 | val dateFormatter = SimpleDateFormat(displayPattern, Locale.getDefault())
43 | return dateFormatter.format(parseString(str))
44 | }
45 | }
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/settings/PasswordChecker.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.settings
2 |
3 | object PasswordChecker {
4 |
5 | fun isWeak(auth_password: String): Boolean {
6 | when (auth_password.lowercase()) {
7 | "1234", "4321", "0000", "1111", "2222", "3333", "4444", "5555", "6666", "7777", "8888", "9999",
8 |
9 |
10 | "12345", "54321", "43210", "00000", "11111", "22222", "33333", "44444", "55555", "66666", "77777", "88888", "99999",
11 |
12 |
13 | "123456", "654321", "543210", "000000", "111111", "222222", "333333", "444444", "555555", "666666", "777777", "888888", "999999",
14 |
15 |
16 | "123456789", "1234567890", "1234567", "123123", "987654321", "123321",
17 |
18 |
19 | "password", "qwerty", "qwertyuiop", "asdf", "asdfghjkl", "lmno", "google", "starwars", "monkey", "football", "mynoob", "aaaaaa", "aaaa", "aaaaa" -> return true
20 | }
21 |
22 |
23 | return false
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/settings/SettingStore.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.settings
2 |
3 | @Suppress("ClassName")
4 | class SettingStore {
5 | object GENERAL {
6 | const val START_PAGE = "default_start_page"
7 | const val PRESS_TWICE_TO_EXIT = "press_twice_for_exit"
8 | const val SHOW_OPEN_DRAWER_FAB = "show_open_drawer_fab"
9 | const val OPEN_DRAWER_FAB_POSITION = "open_drawer_fab_position"
10 | const val ENABLE_ANIMATIONS = "enable_animations"
11 | const val SHOW_SETTINGS_IN_TOOLBAR = "settings_in_toolbar"
12 | const val STICKY_SETTINGS = "sticky_settings"
13 | const val SHOW_BACKUP = "show_backup_drawer"
14 | const val HIDE_BOOT_NOTIFICATION = "hide_notification_boot"
15 | }
16 |
17 | object ANIMATIONS {
18 | const val ENABLE_ANIMATIONS = "enable_animations"
19 | const val ANIMATION_ORIENTATION = "animation_orientation"
20 | const val ANIMATION_SPEED = "animation_speed"
21 | }
22 |
23 | object THEME {
24 | const val PRIMARY_COLOR = "primary_color"
25 | const val ACCENT_COLOR = "accent_color"
26 | const val THEME = "activity_theme"
27 | const val SHOW_COLORED_TOASTS = "theme_toasts"
28 | const val DYNAMICALLY_THEME_TOASTS = "dynamically_theme_toasts"
29 | const val TINT_NAVIGATION_BAR = "theme_navbar"
30 | const val BUILT_IN_THEME = "builtin_activity_theme"
31 | }
32 |
33 | object MENU {
34 | const val SETTINGS = "menu_item_settings"
35 | const val ABOUT = "menu_item_about"
36 | const val DASHBOARD = "menu_item_dashboard"
37 | const val OPEN_DRAWER = "menu_item_drawer"
38 | const val REBOOT = "menu_item_reboot"
39 | }
40 |
41 | object LOGIN {
42 | const val LOCK_ENABLED = "lock_enabled"
43 | const val ALLOW_FINGERPRINT = "allow_fingerprint"
44 | const val CHANGE_PASSWORD = "change_password"
45 | const val CHANGE_HINT = "change_hint"
46 | const val SHOW_PASSWORD_HINT = "show_password_hint"
47 | const val MASK_PASSWORDS = "mask_password"
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/settings/SettingsReflector.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.settings
2 |
3 | import android.view.Menu
4 | import android.view.MenuItem
5 |
6 | import com.andreacioccarelli.androoster.tools.PreferencesBuilder
7 |
8 | object SettingsReflector {
9 | fun updateMenu(menu: Menu, preferenceBuilder: PreferencesBuilder) {
10 | try {
11 | menu.getItem(0).isVisible = preferenceBuilder.getPreferenceBoolean(SettingStore.MENU.SETTINGS, true)
12 | menu.getItem(1).isVisible = preferenceBuilder.getPreferenceBoolean(SettingStore.MENU.ABOUT, true)
13 | menu.getItem(2).isVisible = preferenceBuilder.getPreferenceBoolean(SettingStore.MENU.DASHBOARD, true)
14 | menu.getItem(3).isVisible = preferenceBuilder.getPreferenceBoolean(SettingStore.MENU.OPEN_DRAWER, true)
15 | menu.getItem(4).isVisible = preferenceBuilder.getPreferenceBoolean(SettingStore.MENU.REBOOT, false)
16 | } catch (npe: NullPointerException) {}
17 | }
18 |
19 | fun updateDashboardMenu(menu: Menu?, preferencesBuilder: PreferencesBuilder) {
20 | if (menu == null) {
21 | return
22 | }
23 |
24 | try {
25 | if (preferencesBuilder.getPreferenceBoolean(SettingStore.GENERAL.SHOW_SETTINGS_IN_TOOLBAR, false)) {
26 | menu.getItem(0).setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS)
27 | } else {
28 | menu.getItem(0).setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER)
29 | }
30 | menu.getItem(0).isVisible = true
31 | menu.getItem(1).isVisible = preferencesBuilder.getPreferenceBoolean(SettingStore.MENU.ABOUT, true)
32 | menu.getItem(2).isVisible = false
33 | menu.getItem(3).isVisible = preferencesBuilder.getPreferenceBoolean(SettingStore.MENU.OPEN_DRAWER, true)
34 | menu.getItem(4).isVisible = preferencesBuilder.getPreferenceBoolean(SettingStore.MENU.REBOOT, false)
35 | } catch (_: NullPointerException) {}
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/settings/SettingsWrapper.java:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.settings;
2 |
3 | import android.content.Context;
4 | import android.content.SharedPreferences;
5 | import android.preference.PreferenceManager;
6 | import android.support.annotation.NonNull;
7 | import android.support.annotation.StyleRes;
8 |
9 | import com.andreacioccarelli.androoster.R;
10 |
11 | public class SettingsWrapper {
12 |
13 | private static SettingsWrapper sInstance;
14 |
15 | private final SharedPreferences mPreferences;
16 |
17 | private SettingsWrapper(@NonNull final Context context) {
18 | mPreferences = PreferenceManager.getDefaultSharedPreferences(context);
19 | }
20 |
21 | public static SettingsWrapper getInstance(@NonNull final Context context) {
22 | if (sInstance == null) {
23 | sInstance = new SettingsWrapper(context.getApplicationContext());
24 | }
25 | return sInstance;
26 | }
27 |
28 | public void registerOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) {
29 | mPreferences.registerOnSharedPreferenceChangeListener(sharedPreferenceChangeListener);
30 | }
31 |
32 | public void unregisterOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) {
33 | mPreferences.unregisterOnSharedPreferenceChangeListener(sharedPreferenceChangeListener);
34 | }
35 |
36 | @StyleRes
37 | public int getGeneralTheme() {
38 | return getThemeResFromPrefValue(mPreferences.getString(SettingStore.THEME.THEME, "light"));
39 | }
40 |
41 | public boolean isDark() {
42 | return (getThemeResFromPrefValue(mPreferences.getString(SettingStore.THEME.THEME, "light")) == R.style.Theme_Androoster_Dark);
43 | }
44 |
45 | @StyleRes
46 | public static int getThemeResFromPrefValue(String themePrefValue) {
47 | switch (themePrefValue) {
48 | case "dark":
49 | return R.style.Theme_Androoster_Dark;
50 | case "light":
51 | return R.style.Theme_Androoster_Light;
52 | }
53 | return R.style.Theme_Androoster_Light;
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/upgrade/BillingKeys.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.upgrade
2 |
3 | /**
4 | * Created by andrea on 2018/May.
5 | * Part of the package com.andreacioccarelli.androoster.ui.upgrade
6 | */
7 |
8 |
9 | val base64DeveloperKey = "TUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFsck81SUNQaUNLdXk1RWtKU2pUNUxWOWNhTEo5SmpLSHpWVDI0VldzdFVpOE0rOHRGZmc3L3VGREkyWndTNHlJWHo1MUdsNFlOUXhLSnBUdXRQQmxLbUZXekFhZGZJOEVkZk5yVTBkcmZ5MURpMk80dGg3NmpBRC9hM0NSMENtenBlc1Rpc2pqTG9kS1BRWjVld1l2QTFnYWp1NisxM00ySTlEWUl3WnRxV25wd0VTMm1TUXJmb1FMWDh4T1U2cDkzdEYyUWFCcnlxMExwTWV5Z09kN3dMK1g4TGNFUkdSVERSY3FFdks0VVprOXc1Zm9Ralp5QUZqOVZBcHRrR04zcG1VMTBsNFc0aU9nN1lnM1hnWXQ2VGNsOG5GcHMzODNFWDY5c2NRL0xIc1hvTjRHMmMrT1gxZDlwV1pLMnlCRXRlYSs2M1plRVBDTmNVVGxNRWJYNndJREFRQUI="
10 | val upgradeSku = "androoster_pro"
11 |
12 | @Deprecated(message = "Old upgrade SKU")
13 | val oldUpgradeSku = "upgrade_pro"
--------------------------------------------------------------------------------
/app/src/main/kotlin/com/andreacioccarelli/androoster/ui/upgrade/SecurityContext.kt:
--------------------------------------------------------------------------------
1 | package com.andreacioccarelli.androoster.ui.upgrade
2 |
3 | import android.app.Activity
4 | import android.content.Context
5 | import android.content.Intent
6 | import android.content.pm.PackageManager
7 |
8 | /**
9 | * Created by andrea on 2018/May.
10 | * Part of the package com.andreacioccarelli.androoster.ui.upgrade_v2
11 | */
12 |
13 | private val pirateApps = arrayOf(
14 | "com.chelpus.lackypatch",
15 | "com.dimonvideo.luckypatcher",
16 | "com.forpda.lp",
17 | "com.android.vending.billing.InAppBillingService",
18 | "jase.freedom",
19 | "uret.jasi2169.patcher",
20 | "madkite.freedom",
21 | "org.creeplays.hack",
22 | "com.android.vendinc",
23 | "apps.zhasik007.hack",
24 | "com.leo.playcard",
25 | "com.appsara.app")
26 |
27 |
28 | fun arePirateAppsInstalled(context: Context): Boolean {
29 | for (app in context.packageManager.getInstalledApplications(PackageManager.GET_META_DATA)) {
30 | for (piratePackage in pirateApps) {
31 | if (app.packageName.contains(piratePackage)) return true
32 | }
33 | }
34 | return false
35 | }
36 |
37 |
38 |
39 | fun openApplicationSettings(activity: Activity) {
40 | activity.startActivityForResult(Intent(android.provider.Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS), 0)
41 | }
--------------------------------------------------------------------------------
/app/src/main/res/anim/activity_slide_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
9 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/fab_full.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/boost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/boost.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/close_activity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/close_activity.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/connection_cell_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/connection_cell_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/connection_offline_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/connection_offline_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/connection_wifi_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/connection_wifi_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dashboard_adb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/dashboard_adb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dashboard_memory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/dashboard_memory.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_backup_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_backup_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_backup_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_backup_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_black_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_black_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/drawer_white_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/drawer_white_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/gpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/gpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_fingerprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_fingerprint.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_password.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_pin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_success.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/icon_warning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/menu_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/menu_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/menu_restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/menu_restore.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/new_backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/new_backup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/notification_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/notification_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/translators.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/translators.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/update.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/warning_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/warning_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/wipe_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-hdpi/wipe_stats.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/boost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/boost.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/close_activity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/close_activity.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/connection_cell_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/connection_cell_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/connection_offline_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/connection_offline_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/connection_wifi_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/connection_wifi_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dashboard_adb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/dashboard_adb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dashboard_memory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/dashboard_memory.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_backup_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_backup_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_backup_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_backup_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_black_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_black_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/drawer_white_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/drawer_white_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/gpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/gpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_fingerprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_fingerprint.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_password.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_pin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_success.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/icon_warning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/menu_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/menu_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/menu_restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/menu_restore.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/new_backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/new_backup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/notification_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/notification_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/translators.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/translators.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/update.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/warning_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/warning_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/wipe_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-mdpi/wipe_stats.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/rect_selector_dark.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 | -
8 |
9 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/rect_selector_strong_dark.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 | -
8 |
9 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/round_selector_dark.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/round_selector_mask.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/boost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/boost.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/close_activity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/close_activity.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/connection_cell_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/connection_cell_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/connection_offline_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/connection_offline_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/connection_wifi_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/connection_wifi_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dashboard_adb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/dashboard_adb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dashboard_memory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/dashboard_memory.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_backup_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_backup_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_backup_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_backup_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_black_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_black_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/drawer_white_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/drawer_white_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/gpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/gpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_fingerprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_fingerprint.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_password.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_pin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_success.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/icon_warning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/menu_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/menu_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/menu_restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/menu_restore.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/new_backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/new_backup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/notification_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/notification_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/translators.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/translators.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/update.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/warning_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/warning_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/wipe_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xhdpi/wipe_stats.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/boost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/boost.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/close_activity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/close_activity.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/connection_cell_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/connection_cell_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/connection_offline_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/connection_offline_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/connection_wifi_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/connection_wifi_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dashboard_adb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/dashboard_adb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dashboard_memory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/dashboard_memory.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_backup_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_backup_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_backup_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_backup_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_black_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_black_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/drawer_white_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/drawer_white_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/gpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/gpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_fingerprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_fingerprint.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_password.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_pin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_success.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/icon_warning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/menu_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/menu_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/menu_restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/menu_restore.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/new_backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/new_backup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/notification_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/notification_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/translators.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/translators.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/update.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/warning_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/warning_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/wipe_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxhdpi/wipe_stats.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/add.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/boost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/boost.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/close_activity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/close_activity.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/connection_cell_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/connection_cell_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/connection_offline_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/connection_offline_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/connection_wifi_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/connection_wifi_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dashboard_adb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/dashboard_adb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dashboard_memory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/dashboard_memory.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_backup_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_backup_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_backup_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_backup_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_black_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_black_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_buy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_buy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_cpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_cpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_dashboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_debug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_debug.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/drawer_white_tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/drawer_white_tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/gps.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/gpu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/gpu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/graphic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/hardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/hardware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_error.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_fingerprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_fingerprint.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_password.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_pin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_success.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/icon_warning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/internet.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/kernel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/menu_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/menu_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/menu_restore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/menu_restore.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/new_backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/new_backup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/notification_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/notification_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/ram.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/translators.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/translators.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/tweaks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/tweaks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/update.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/warning_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/warning_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/wipe_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable-xxxhdpi/wipe_stats.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_branch.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_bug_report.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_changelog.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_circle_google_plus.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_github.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_google_plus.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_license.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_mail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_me.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_open_in_browser.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_packagename.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_rate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_twitter.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/about_version.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/base.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/base.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/code.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/intro_image_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/intro_image_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/intro_image_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/intro_image_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/intro_image_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/intro_image_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/intro_image_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/intro_image_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/launcher_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/launcher_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rect_selector_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rect_selector_strong_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/round_selected_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/round_selector_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/sdmaid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/drawable/sdmaid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/upgrade_icon_key.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/upgrade_icon_lock.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/upgrade_icon_palette.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/upgrade_icon_support.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-small/boot.xml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
25 |
26 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-w640dp/activity_about_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
18 |
19 |
24 |
25 |
26 |
27 |
28 |
29 |
38 |
39 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-xlarge/boot.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
27 |
28 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
14 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_about_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
19 |
20 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_preferences.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/boot.xml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
25 |
26 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/dialog_changelog.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/dialog_licenses.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
19 |
20 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/dialog_translators.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/drawer_header.xml:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
25 |
26 |
39 |
40 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/edit_dialog_spinner.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
23 |
24 |
31 |
32 |
40 |
41 |
49 |
50 |
58 |
59 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/license_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
20 |
21 |
30 |
31 |
37 |
38 |
39 |
47 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/translator_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/upgrade_activity_v2.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
16 |
17 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/overflow.xml:
--------------------------------------------------------------------------------
1 |
2 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/upgrade.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64sp
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 160dp
5 |
6 | 16dp
7 | 16dp
8 | 16dp
9 | 0dp
10 |
11 |
13 | 14sp
14 | 18sp
15 | 4dp
16 | 124dp
17 | 120dp
18 | 8dp
19 | 36dp
20 | 55dp
21 | 10dp
22 | 8dp
23 |
24 | 45dp
25 | 30dp
26 | 80dp
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/values/drawables.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/pref_animations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
12 |
13 |
22 |
23 |
24 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/pref_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
15 |
16 |
20 |
21 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/pref_security.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
11 |
12 |
19 |
20 |
21 |
25 |
26 |
30 |
31 |
37 |
38 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = "2.1.10" //"1.9.20"
3 |
4 | repositories {
5 | google()
6 | maven { url "https://jitpack.io" }
7 | maven { url "https://maven.fabric.io/public" }
8 | maven { url "https://dl.bintray.com/drummer-aidan/maven" }
9 | maven { url "https://plugins.gradle.org/m2/" }
10 | mavenCentral()
11 | jcenter()
12 | }
13 |
14 | dependencies {
15 | classpath 'com.android.tools.build:gradle:8.9.0'
16 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
17 | classpath "gradle.plugin.com.github.konifar.gradle:plugin:0.3.3"
18 | }
19 | }
20 |
21 | allprojects {
22 | repositories {
23 | google()
24 | maven { url "https://jitpack.io" }
25 | maven { url "https://maven.fabric.io/public" }
26 | maven { url "https://dl.bintray.com/drummer-aidan/maven" }
27 | maven { url "https://plugins.gradle.org/m2/" }
28 | mavenCentral()
29 | jcenter()
30 | }
31 | }
32 |
33 | task clean(type: Delete) {
34 | delete rootProject.buildDir
35 | }
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/changelogs/62.txt:
--------------------------------------------------------------------------------
1 | Added support for F-Droid
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/full_description.txt:
--------------------------------------------------------------------------------
1 | Androoster is a comprehensive open-source and free Android root tweak toolbox. It is built to help you tweak your device, keeping it cool, fast and responsive.
2 |
3 | Ideally, basing on your device hardware and your personal needs, you can find a set of parameters for Androoster to improve things you value and minimize others you don't require.
4 |
5 | Being a collection of on-off tweaks, you can enable/disable whichever set of parameters you desire. Although a certain degree of expertise is required to tune (or eyeball) settings, you can refine your tweaks according to the performance changes you experience incrementally.
6 |
7 | The key takeaway is that there is no such thing as a universal tweak / booster. Instead, you can (and should) tune settings according to the things you value the most to maximize performance in those designated areas, and keep the unavoidable consequences within an acceptable margin of degradation
8 |
9 | (i.e, a strong performance improvement degrades battery duration, and vice versa, differently for every device and OS).
10 |
11 | Androoster features
12 |
13 | - CPU Tuning
14 | - Governor switcher
15 | - Low Memory Killer editor
16 | - Runtime Memory improvement
17 | - Sleep mode tuner
18 | - Sleepers optimization
19 | - Kernel advanced editor
20 | - FStrim utility
21 | - I/O Booster
22 | - Hostname editor
23 | - Network buffer
24 | - Fast dormancy
25 | - Advanced debug monitor
26 | - GPS Configuration
27 | - Animations speed tweaker
28 | - JPEG quality optimizer
29 | - 270° Rotation enabler
30 | - 16 bit transparency enabler
31 | - Back buttons light tuner
32 |
33 | Prerequisites
34 |
35 | - Rooted device
36 | - BusyBox installation
37 |
38 | Main features
39 |
40 | There are tons of tweaks, both for beginners and advanced users. They are grouped under different categories, like “CPU”, “Memory”, “Kernel” or “Graphics”, so that they are easier to find and manage.
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/icon.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/short_description.txt:
--------------------------------------------------------------------------------
1 | Expert-grade free and open-source tweaking toolbox for Android
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/title.txt:
--------------------------------------------------------------------------------
1 | Androoster
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # org.gradle.jvmargs=-Xmx1536m
13 |
14 | # When configured, Gradle will run in incubating parallel mode.
15 | # This option should only be used with decoupled projects. More details, visit
16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 | # org.gradle.parallel=true
18 |
19 | # The Gradle daemon aims to improve the startup and execution time of Gradle.
20 | # When set to true the Gradle daemon is to run the build.
21 | org.gradle.daemon=true
22 |
23 | # Specifies the JVM arguments used for the daemon process.
24 | # The setting is particularly useful for tweaking memory settings.
25 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
26 | org.gradle.jvmargs=-Xmx2048m
27 | org.gradle.configureondemand=false
28 |
29 | # When configured, Gradle will run in incubating parallel mode.
30 | # This option should only be used with decoupled projects. More details, visit
31 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
32 | # org.gradle.parallel=true
33 | # android.enableJetifier=true
34 | android.useAndroidX=true
35 | kotlin.code.style=official
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cioccarellia/androoster/9cf46e1f3802d33f1550f5d46b3a3d00a7459006/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 04 17:53:26 CEST 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
7 | distributionSha256Sum=fba8464465835e74f7270bbf43d6d8a8d7709ab0a43ce1aa3323f73e9aa0c612
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
--------------------------------------------------------------------------------