├── .gitignore ├── DisableSystemUpdateService.iml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── manifest-merger-release-report.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── me │ │ └── swineson │ │ └── disablesystemupdateservice │ │ ├── EnablerReceiver.java │ │ ├── MainActivity.java │ │ └── PropUtil.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_main.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── misc ├── Screenshot_2015-07-15-17-39-01.png ├── Screenshot_2015-07-15-20-50-54.png ├── Screenshot_2015-07-15-20-51-16.png ├── Screenshot_2015-07-15-20-51-38.png ├── displayphoto.png ├── displayphoto.psd ├── okgooglesleep.png ├── okgooglesleep.psd ├── okgooglesleepheader.png └── okgooglesleepheader.psd └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/.gitignore -------------------------------------------------------------------------------- /DisableSystemUpdateService.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/DisableSystemUpdateService.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/manifest-merger-release-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/manifest-merger-release-report.txt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/swineson/disablesystemupdateservice/EnablerReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/java/me/swineson/disablesystemupdateservice/EnablerReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/me/swineson/disablesystemupdateservice/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/java/me/swineson/disablesystemupdateservice/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/me/swineson/disablesystemupdateservice/PropUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/java/me/swineson/disablesystemupdateservice/PropUtil.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /misc/Screenshot_2015-07-15-17-39-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/Screenshot_2015-07-15-17-39-01.png -------------------------------------------------------------------------------- /misc/Screenshot_2015-07-15-20-50-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/Screenshot_2015-07-15-20-50-54.png -------------------------------------------------------------------------------- /misc/Screenshot_2015-07-15-20-51-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/Screenshot_2015-07-15-20-51-16.png -------------------------------------------------------------------------------- /misc/Screenshot_2015-07-15-20-51-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/Screenshot_2015-07-15-20-51-38.png -------------------------------------------------------------------------------- /misc/displayphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/displayphoto.png -------------------------------------------------------------------------------- /misc/displayphoto.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/displayphoto.psd -------------------------------------------------------------------------------- /misc/okgooglesleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/okgooglesleep.png -------------------------------------------------------------------------------- /misc/okgooglesleep.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/okgooglesleep.psd -------------------------------------------------------------------------------- /misc/okgooglesleepheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/okgooglesleepheader.png -------------------------------------------------------------------------------- /misc/okgooglesleepheader.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamesits/DisableSystemUpdateService/HEAD/misc/okgooglesleepheader.psd -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------