├── app ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── xposed_init │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── check_off.png │ │ │ │ └── check_on.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── colorpicker.9.png │ │ │ ├── values │ │ │ │ ├── styles.xml │ │ │ │ ├── arrays.xml │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ │ ├── drawable │ │ │ │ ├── checks.xml │ │ │ │ ├── background_card_dark.xml │ │ │ │ ├── background_card_normal_dark.xml │ │ │ │ └── background_card_pressed_dark.xml │ │ │ ├── xml │ │ │ │ └── module_prefs.xml │ │ │ └── layout │ │ │ │ └── colorpicker.xml │ │ ├── java │ │ │ └── in │ │ │ │ └── proficientapps │ │ │ │ └── MaterializeXposedInstaller │ │ │ │ ├── MainActivity.java │ │ │ │ ├── preferences │ │ │ │ ├── AlphaPatternDrawable.java │ │ │ │ ├── ColorPickerPanelView.java │ │ │ │ ├── ColorPickerDialog.java │ │ │ │ ├── ColorPickerPreference.java │ │ │ │ └── ColorPickerView.java │ │ │ │ └── Module.java │ │ └── AndroidManifest.xml │ └── test │ │ └── java │ │ └── in │ │ └── proficientapps │ │ └── MaterializeXposedInstaller │ │ └── ExampleUnitTest.java ├── app-release.apk ├── XposedBridgeApi-LP.jar ├── MaterializeXposedInstaller.apk ├── MaterializeXposedInstaller_1.1.apk ├── build.gradle ├── proguard-rules.pro └── app.iml ├── settings.gradle ├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── libraries │ └── XposedBridgeApi_LP.xml ├── inspectionProfiles │ ├── profiles_settings.xml │ └── Project_Default.xml ├── modules.xml ├── runConfigurations.xml ├── gradle.xml ├── compiler.xml └── misc.xml ├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitattributes ├── gradle.properties ├── MaterializeXposedInstaller.iml ├── README.md ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Materialize Xposed Installer -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | in.proficientapps.MaterializeXposedInstaller.Module -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /app/XposedBridgeApi-LP.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/XposedBridgeApi-LP.jar -------------------------------------------------------------------------------- /app/MaterializeXposedInstaller.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/MaterializeXposedInstaller.apk -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/MaterializeXposedInstaller_1.1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/MaterializeXposedInstaller_1.1.apk -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/src/main/res/drawable-hdpi/check_off.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/src/main/res/drawable-hdpi/check_on.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/colorpicker.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proficient-Apps/MaterializeXposedInstaller/HEAD/app/src/main/res/drawable-xhdpi/colorpicker.9.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |