├── LICENSE ├── README.md ├── app ├── .gitignore ├── app-release.apk ├── build.gradle ├── release │ ├── app-release.apk │ └── output.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ └── com │ │ └── ghostflying │ │ └── locationreportenabler │ │ ├── EnablerReceiver.java │ │ ├── PropUtil.java │ │ ├── SettingActivity.java │ │ ├── tile │ │ └── FakeOperatorTile.java │ │ └── view │ │ └── FunctionChooseAlertView.java │ └── res │ ├── drawable │ ├── ic_keyboard_arrow_right_24dp.xml │ └── ic_phonelink_setup_black_24dp.xml │ ├── layout │ ├── activity_setting.xml │ ├── edit_text_item.xml │ └── multi_choice_item.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-ja │ └── strings.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh │ └── strings.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties └── settings.gradle /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/ghostflying/locationreportenabler/EnablerReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/java/com/ghostflying/locationreportenabler/EnablerReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/ghostflying/locationreportenabler/PropUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/java/com/ghostflying/locationreportenabler/PropUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/ghostflying/locationreportenabler/SettingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/java/com/ghostflying/locationreportenabler/SettingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/ghostflying/locationreportenabler/tile/FakeOperatorTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/java/com/ghostflying/locationreportenabler/tile/FakeOperatorTile.java -------------------------------------------------------------------------------- /app/src/main/java/com/ghostflying/locationreportenabler/view/FunctionChooseAlertView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/java/com/ghostflying/locationreportenabler/view/FunctionChooseAlertView.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_right_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/drawable/ic_keyboard_arrow_right_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phonelink_setup_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/drawable/ic_phonelink_setup_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/layout/activity_setting.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/edit_text_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/layout/edit_text_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/multi_choice_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/layout/multi_choice_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostFlying/LocationReportEnabler/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------