├── .classpath ├── .gitignore ├── .settings ├── org.eclipse.jdt.core.prefs └── org.eclipse.jdt.ui.prefs ├── AndroidManifest.xml ├── README.md ├── XposedBridgeApi-54.jar ├── assets ├── XLocation_public_key.txt └── xposed_init ├── gpl-3.0.txt ├── ic_launcher-promo-big.png ├── ic_launcher-promo.png ├── ic_launcher-web.png ├── legacy-docs ├── CHANGELOG-LEGACY.md ├── CHANGELOG.md ├── DATABASE.md ├── MENU.md ├── README.md └── TODO.md ├── libs ├── android-support-v13.jar └── javassist.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── compass.png │ ├── ic_arrow.png │ ├── ic_launcher.png │ ├── icon_filter.png │ ├── icon_sort.png │ └── touch.png ├── drawable-ldpi │ ├── compass.png │ ├── ic_launcher.png │ └── touch.png ├── drawable-mdpi │ ├── compass.png │ ├── ic_launcher.png │ ├── icon_filter.png │ ├── icon_sort.png │ └── touch.png ├── drawable-nodpi │ ├── card_light.9.png │ ├── checkmark.png │ ├── checkmark_outline.png │ └── questionmark_outline.png ├── drawable-xhdpi │ ├── compass.png │ ├── ic_arrow.png │ ├── ic_launcher.png │ ├── icon_filter.png │ ├── icon_sort.png │ └── touch.png ├── drawable-xxhdpi │ ├── compass.png │ ├── ic_launcher.png │ ├── icon_filter.png │ ├── icon_sort.png │ └── touch.png ├── drawable │ ├── apps.png │ ├── btn_check_buttonless_on.png │ ├── card_dark.xml │ ├── check_holo_dark.png │ ├── check_holo_light.png │ ├── compass.png │ ├── expander_ic_maximized_holo_dark.png │ ├── expander_ic_maximized_holo_light.png │ ├── expander_ic_minimized_holo_dark.png │ ├── expander_ic_minimized_holo_light.png │ ├── frozen_holo_dark.png │ ├── frozen_holo_light.png │ ├── granted_holo_dark.png │ ├── granted_holo_light.png │ ├── ic_launcher_holo_dark.png │ ├── ic_launcher_holo_light.png │ ├── indicator_input_error.png │ ├── info_book_holo_dark.png │ ├── info_book_holo_light.png │ ├── info_holo_dark.png │ ├── info_holo_light.png │ ├── internet_holo_dark.png │ ├── internet_holo_light.png │ ├── ondemand.png │ ├── padlock_question_dark.png │ ├── padlock_question_light.png │ ├── presence_busy.png │ ├── rounded_corner.xml │ ├── system_holo_dark.png │ ├── system_holo_light.png │ ├── touch.png │ ├── tutorial_background_dark.xml │ ├── tutorial_background_light.xml │ ├── used_holo_dark.png │ ├── used_holo_dark_grayed.png │ ├── used_holo_light.png │ ├── used_holo_light_grayed.png │ ├── whitelist_holo_dark.png │ └── whitelist_holo_light.png ├── layout │ ├── about.xml │ ├── filters.xml │ ├── helpcat.xml │ ├── helpfunc.xml │ ├── legend.xml │ ├── mainentry.xml │ ├── mainlist.xml │ ├── ondemand.xml │ ├── ontouch.xml │ ├── reboot.xml │ ├── register.xml │ ├── restrictionchild.xml │ ├── restrictionentry.xml │ ├── restrictionlist.xml │ ├── settings.xml │ ├── shareentry.xml │ ├── sharelist.xml │ ├── sort.xml │ ├── template.xml │ ├── templateentry.xml │ ├── usage.xml │ ├── usageentry.xml │ ├── usagelist.xml │ ├── whitelistentry.xml │ └── whitelists.xml ├── menu │ ├── app.xml │ ├── main.xml │ ├── settings.xml │ └── usage.xml ├── values-ar │ └── strings.xml ├── values-bg │ └── strings.xml ├── values-ca │ └── strings.xml ├── values-cs │ └── strings.xml ├── values-da │ └── strings.xml ├── values-de │ └── strings.xml ├── values-ee │ └── strings.xml ├── values-el │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fa │ └── strings.xml ├── values-fi │ └── strings.xml ├── values-fr │ └── strings.xml ├── values-ga │ └── strings.xml ├── values-he │ └── strings.xml ├── values-hi │ └── strings.xml ├── values-hr │ └── strings.xml ├── values-hu │ └── strings.xml ├── values-in │ └── strings.xml ├── values-it │ └── strings.xml ├── values-iw │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ku-rIQ │ └── strings.xml ├── values-ku-rIR │ └── strings.xml ├── values-lt │ └── strings.xml ├── values-ms │ └── strings.xml ├── values-nb-rNO │ └── strings.xml ├── values-nl │ └── strings.xml ├── values-nn-rNO │ └── strings.xml ├── values-no-rNO │ └── strings.xml ├── values-pl │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-ro │ └── strings.xml ├── values-ru │ └── strings.xml ├── values-sk │ └── strings.xml ├── values-sl │ └── strings.xml ├── values-sr │ └── strings.xml ├── values-sv │ └── strings.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-tl-rPH │ └── strings.xml ├── values-tr │ └── strings.xml ├── values-ua │ └── strings.xml ├── values-v14 │ └── styles.xml ├── values-vi │ └── strings.xml ├── values-zh-rCN │ └── strings.xml ├── values-zh-rTW │ └── strings.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── functions.xml │ ├── once.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── device_admin.xml ├── screenshots ├── about.png ├── application.png ├── applications.png ├── categories.png ├── expert-2.png ├── expert.png ├── filter.png ├── help.png ├── menu.png ├── on-demand-dialogue.png ├── settings-2.png ├── settings-3.png ├── settings.png ├── sort.png ├── template.png ├── toggle.png ├── usagedata.png └── whitelist.png ├── server ├── index.php └── xlocation.sql ├── src ├── com │ └── android │ │ └── internal │ │ └── util │ │ ├── FastXmlSerializer.java │ │ └── XmlUtils.java └── org │ └── thoughtland │ └── xlocation │ ├── ActivityApp.java │ ├── ActivityBase.java │ ├── ActivityMain.java │ ├── ActivitySettings.java │ ├── ActivityShare.java │ ├── ActivityUsage.java │ ├── ApplicationEx.java │ ├── ApplicationInfoEx.java │ ├── BootReceiver.java │ ├── CRestriction.java │ ├── CSetting.java │ ├── DeviceAdministratorReceiver.java │ ├── Hook.java │ ├── IGpsStatusListener.aidl │ ├── ILocationCallback.aidl │ ├── ILocationProxyService.aidl │ ├── IPrivacyService.aidl │ ├── IStatusCallback.aidl │ ├── IniFile.java │ ├── LocationProxy.java │ ├── LocationProxyService.java │ ├── Meta.java │ ├── OnTouch.java │ ├── OnTouchProxy.java │ ├── PRestriction.aidl │ ├── PRestriction.java │ ├── PSetting.aidl │ ├── PSetting.java │ ├── PackageChange.java │ ├── PrivacyManager.java │ ├── PrivacyProvider.java │ ├── PrivacyService.java │ ├── RState.java │ ├── Requirements.java │ ├── SharedPreferencesEx.java │ ├── UpdateService.java │ ├── Util.java │ ├── Version.java │ ├── XActivityManagerService.java │ ├── XActivityRecognitionApi.java │ ├── XActivityRecognitionClient.java │ ├── XApplication.java │ ├── XBinder.java │ ├── XConnectionCallbacks.java │ ├── XContextImpl.java │ ├── XFusedLocationApi.java │ ├── XGoogleApiClient.java │ ├── XGoogleMapV1.java │ ├── XGoogleMapV2.java │ ├── XHook.java │ ├── XILocationManager.java │ ├── XLocation.java │ ├── XLocationClient.java │ ├── XLocationManager.java │ ├── XParam.java │ ├── XSettingsSecure.java │ ├── XStrictMode.java │ ├── XTelephonyManager.java │ ├── XUtilHook.java │ ├── XWifiManager.java │ └── diff.txt ├── substrate-api.jar └── tools ├── addstring.sh ├── build.gradle ├── gradle.txt ├── ic_launcher-promo-big.xcf ├── padlock_question.svg └── xxhdmi2.xcf /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/README.md -------------------------------------------------------------------------------- /XposedBridgeApi-54.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/XposedBridgeApi-54.jar -------------------------------------------------------------------------------- /assets/XLocation_public_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/assets/XLocation_public_key.txt -------------------------------------------------------------------------------- /assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/assets/xposed_init -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /ic_launcher-promo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/ic_launcher-promo-big.png -------------------------------------------------------------------------------- /ic_launcher-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/ic_launcher-promo.png -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /legacy-docs/CHANGELOG-LEGACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/CHANGELOG-LEGACY.md -------------------------------------------------------------------------------- /legacy-docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/CHANGELOG.md -------------------------------------------------------------------------------- /legacy-docs/DATABASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/DATABASE.md -------------------------------------------------------------------------------- /legacy-docs/MENU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/MENU.md -------------------------------------------------------------------------------- /legacy-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/README.md -------------------------------------------------------------------------------- /legacy-docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/legacy-docs/TODO.md -------------------------------------------------------------------------------- /libs/android-support-v13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/libs/android-support-v13.jar -------------------------------------------------------------------------------- /libs/javassist.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/libs/javassist.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/compass.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/ic_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/icon_filter.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/icon_sort.png -------------------------------------------------------------------------------- /res/drawable-hdpi/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-hdpi/touch.png -------------------------------------------------------------------------------- /res/drawable-ldpi/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-ldpi/compass.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-ldpi/touch.png -------------------------------------------------------------------------------- /res/drawable-mdpi/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-mdpi/compass.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-mdpi/icon_filter.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-mdpi/icon_sort.png -------------------------------------------------------------------------------- /res/drawable-mdpi/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-mdpi/touch.png -------------------------------------------------------------------------------- /res/drawable-nodpi/card_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-nodpi/card_light.9.png -------------------------------------------------------------------------------- /res/drawable-nodpi/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-nodpi/checkmark.png -------------------------------------------------------------------------------- /res/drawable-nodpi/checkmark_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-nodpi/checkmark_outline.png -------------------------------------------------------------------------------- /res/drawable-nodpi/questionmark_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-nodpi/questionmark_outline.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/compass.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/ic_arrow.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/icon_filter.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/icon_sort.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xhdpi/touch.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xxhdpi/compass.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/icon_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xxhdpi/icon_filter.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/icon_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xxhdpi/icon_sort.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable-xxhdpi/touch.png -------------------------------------------------------------------------------- /res/drawable/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/apps.png -------------------------------------------------------------------------------- /res/drawable/btn_check_buttonless_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/btn_check_buttonless_on.png -------------------------------------------------------------------------------- /res/drawable/card_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/card_dark.xml -------------------------------------------------------------------------------- /res/drawable/check_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/check_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/check_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/check_holo_light.png -------------------------------------------------------------------------------- /res/drawable/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/compass.png -------------------------------------------------------------------------------- /res/drawable/expander_ic_maximized_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/expander_ic_maximized_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/expander_ic_maximized_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/expander_ic_maximized_holo_light.png -------------------------------------------------------------------------------- /res/drawable/expander_ic_minimized_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/expander_ic_minimized_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/expander_ic_minimized_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/expander_ic_minimized_holo_light.png -------------------------------------------------------------------------------- /res/drawable/frozen_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/frozen_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/frozen_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/frozen_holo_light.png -------------------------------------------------------------------------------- /res/drawable/granted_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/granted_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/granted_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/granted_holo_light.png -------------------------------------------------------------------------------- /res/drawable/ic_launcher_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/ic_launcher_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/ic_launcher_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/ic_launcher_holo_light.png -------------------------------------------------------------------------------- /res/drawable/indicator_input_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/indicator_input_error.png -------------------------------------------------------------------------------- /res/drawable/info_book_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/info_book_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/info_book_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/info_book_holo_light.png -------------------------------------------------------------------------------- /res/drawable/info_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/info_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/info_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/info_holo_light.png -------------------------------------------------------------------------------- /res/drawable/internet_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/internet_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/internet_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/internet_holo_light.png -------------------------------------------------------------------------------- /res/drawable/ondemand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/ondemand.png -------------------------------------------------------------------------------- /res/drawable/padlock_question_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/padlock_question_dark.png -------------------------------------------------------------------------------- /res/drawable/padlock_question_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/padlock_question_light.png -------------------------------------------------------------------------------- /res/drawable/presence_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/presence_busy.png -------------------------------------------------------------------------------- /res/drawable/rounded_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/rounded_corner.xml -------------------------------------------------------------------------------- /res/drawable/system_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/system_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/system_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/system_holo_light.png -------------------------------------------------------------------------------- /res/drawable/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/touch.png -------------------------------------------------------------------------------- /res/drawable/tutorial_background_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/tutorial_background_dark.xml -------------------------------------------------------------------------------- /res/drawable/tutorial_background_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/tutorial_background_light.xml -------------------------------------------------------------------------------- /res/drawable/used_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/used_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/used_holo_dark_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/used_holo_dark_grayed.png -------------------------------------------------------------------------------- /res/drawable/used_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/used_holo_light.png -------------------------------------------------------------------------------- /res/drawable/used_holo_light_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/used_holo_light_grayed.png -------------------------------------------------------------------------------- /res/drawable/whitelist_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/whitelist_holo_dark.png -------------------------------------------------------------------------------- /res/drawable/whitelist_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/drawable/whitelist_holo_light.png -------------------------------------------------------------------------------- /res/layout/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/about.xml -------------------------------------------------------------------------------- /res/layout/filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/filters.xml -------------------------------------------------------------------------------- /res/layout/helpcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/helpcat.xml -------------------------------------------------------------------------------- /res/layout/helpfunc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/helpfunc.xml -------------------------------------------------------------------------------- /res/layout/legend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/legend.xml -------------------------------------------------------------------------------- /res/layout/mainentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/mainentry.xml -------------------------------------------------------------------------------- /res/layout/mainlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/mainlist.xml -------------------------------------------------------------------------------- /res/layout/ondemand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/ondemand.xml -------------------------------------------------------------------------------- /res/layout/ontouch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/ontouch.xml -------------------------------------------------------------------------------- /res/layout/reboot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/reboot.xml -------------------------------------------------------------------------------- /res/layout/register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/register.xml -------------------------------------------------------------------------------- /res/layout/restrictionchild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/restrictionchild.xml -------------------------------------------------------------------------------- /res/layout/restrictionentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/restrictionentry.xml -------------------------------------------------------------------------------- /res/layout/restrictionlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/restrictionlist.xml -------------------------------------------------------------------------------- /res/layout/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/settings.xml -------------------------------------------------------------------------------- /res/layout/shareentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/shareentry.xml -------------------------------------------------------------------------------- /res/layout/sharelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/sharelist.xml -------------------------------------------------------------------------------- /res/layout/sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/sort.xml -------------------------------------------------------------------------------- /res/layout/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/template.xml -------------------------------------------------------------------------------- /res/layout/templateentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/templateentry.xml -------------------------------------------------------------------------------- /res/layout/usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/usage.xml -------------------------------------------------------------------------------- /res/layout/usageentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/usageentry.xml -------------------------------------------------------------------------------- /res/layout/usagelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/usagelist.xml -------------------------------------------------------------------------------- /res/layout/whitelistentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/whitelistentry.xml -------------------------------------------------------------------------------- /res/layout/whitelists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/layout/whitelists.xml -------------------------------------------------------------------------------- /res/menu/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/menu/app.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/menu/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/menu/settings.xml -------------------------------------------------------------------------------- /res/menu/usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/menu/usage.xml -------------------------------------------------------------------------------- /res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ar/strings.xml -------------------------------------------------------------------------------- /res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-bg/strings.xml -------------------------------------------------------------------------------- /res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ca/strings.xml -------------------------------------------------------------------------------- /res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-cs/strings.xml -------------------------------------------------------------------------------- /res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-da/strings.xml -------------------------------------------------------------------------------- /res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-de/strings.xml -------------------------------------------------------------------------------- /res/values-ee/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ee/strings.xml -------------------------------------------------------------------------------- /res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-el/strings.xml -------------------------------------------------------------------------------- /res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-es/strings.xml -------------------------------------------------------------------------------- /res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-fa/strings.xml -------------------------------------------------------------------------------- /res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-fi/strings.xml -------------------------------------------------------------------------------- /res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-fr/strings.xml -------------------------------------------------------------------------------- /res/values-ga/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ga/strings.xml -------------------------------------------------------------------------------- /res/values-he/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-he/strings.xml -------------------------------------------------------------------------------- /res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-hi/strings.xml -------------------------------------------------------------------------------- /res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-hr/strings.xml -------------------------------------------------------------------------------- /res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-hu/strings.xml -------------------------------------------------------------------------------- /res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-in/strings.xml -------------------------------------------------------------------------------- /res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-it/strings.xml -------------------------------------------------------------------------------- /res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-iw/strings.xml -------------------------------------------------------------------------------- /res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ja/strings.xml -------------------------------------------------------------------------------- /res/values-ku-rIQ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ku-rIQ/strings.xml -------------------------------------------------------------------------------- /res/values-ku-rIR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ku-rIR/strings.xml -------------------------------------------------------------------------------- /res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-lt/strings.xml -------------------------------------------------------------------------------- /res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ms/strings.xml -------------------------------------------------------------------------------- /res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-nl/strings.xml -------------------------------------------------------------------------------- /res/values-nn-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-nn-rNO/strings.xml -------------------------------------------------------------------------------- /res/values-no-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-no-rNO/strings.xml -------------------------------------------------------------------------------- /res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-pl/strings.xml -------------------------------------------------------------------------------- /res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-pt/strings.xml -------------------------------------------------------------------------------- /res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ro/strings.xml -------------------------------------------------------------------------------- /res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ru/strings.xml -------------------------------------------------------------------------------- /res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sk/strings.xml -------------------------------------------------------------------------------- /res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sl/strings.xml -------------------------------------------------------------------------------- /res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sr/strings.xml -------------------------------------------------------------------------------- /res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sv/strings.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-tl-rPH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-tl-rPH/strings.xml -------------------------------------------------------------------------------- /res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-tr/strings.xml -------------------------------------------------------------------------------- /res/values-ua/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-ua/strings.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-vi/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/functions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/functions.xml -------------------------------------------------------------------------------- /res/values/once.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/once.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/device_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/res/xml/device_admin.xml -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/application.png -------------------------------------------------------------------------------- /screenshots/applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/applications.png -------------------------------------------------------------------------------- /screenshots/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/categories.png -------------------------------------------------------------------------------- /screenshots/expert-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/expert-2.png -------------------------------------------------------------------------------- /screenshots/expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/expert.png -------------------------------------------------------------------------------- /screenshots/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/filter.png -------------------------------------------------------------------------------- /screenshots/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/help.png -------------------------------------------------------------------------------- /screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/menu.png -------------------------------------------------------------------------------- /screenshots/on-demand-dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/on-demand-dialogue.png -------------------------------------------------------------------------------- /screenshots/settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/settings-2.png -------------------------------------------------------------------------------- /screenshots/settings-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/settings-3.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/sort.png -------------------------------------------------------------------------------- /screenshots/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/template.png -------------------------------------------------------------------------------- /screenshots/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/toggle.png -------------------------------------------------------------------------------- /screenshots/usagedata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/usagedata.png -------------------------------------------------------------------------------- /screenshots/whitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/screenshots/whitelist.png -------------------------------------------------------------------------------- /server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/server/index.php -------------------------------------------------------------------------------- /server/xlocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/server/xlocation.sql -------------------------------------------------------------------------------- /src/com/android/internal/util/FastXmlSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/com/android/internal/util/FastXmlSerializer.java -------------------------------------------------------------------------------- /src/com/android/internal/util/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/com/android/internal/util/XmlUtils.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivityApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivityApp.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivityBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivityBase.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivityMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivityMain.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivitySettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivitySettings.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivityShare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivityShare.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ActivityUsage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ActivityUsage.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ApplicationEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ApplicationEx.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ApplicationInfoEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ApplicationInfoEx.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/BootReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/BootReceiver.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/CRestriction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/CRestriction.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/CSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/CSetting.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/DeviceAdministratorReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/DeviceAdministratorReceiver.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/Hook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/Hook.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/IGpsStatusListener.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/IGpsStatusListener.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ILocationCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ILocationCallback.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/ILocationProxyService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/ILocationProxyService.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/IPrivacyService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/IPrivacyService.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/IStatusCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/IStatusCallback.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/IniFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/IniFile.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/LocationProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/LocationProxy.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/LocationProxyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/LocationProxyService.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/Meta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/Meta.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/OnTouch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/OnTouch.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/OnTouchProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/OnTouchProxy.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PRestriction.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PRestriction.aidl -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PRestriction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PRestriction.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PSetting.aidl: -------------------------------------------------------------------------------- 1 | package org.thoughtland.xlocation; 2 | 3 | parcelable PSetting; 4 | -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PSetting.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PackageChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PackageChange.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PrivacyManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PrivacyManager.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PrivacyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PrivacyProvider.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/PrivacyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/PrivacyService.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/RState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/RState.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/Requirements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/Requirements.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/SharedPreferencesEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/SharedPreferencesEx.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/UpdateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/UpdateService.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/Util.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/Version.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XActivityManagerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XActivityManagerService.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XActivityRecognitionApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XActivityRecognitionApi.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XActivityRecognitionClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XActivityRecognitionClient.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XApplication.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XBinder.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XConnectionCallbacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XConnectionCallbacks.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XContextImpl.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XFusedLocationApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XFusedLocationApi.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XGoogleApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XGoogleApiClient.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XGoogleMapV1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XGoogleMapV1.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XGoogleMapV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XGoogleMapV2.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XHook.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XILocationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XILocationManager.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XLocation.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XLocationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XLocationClient.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XLocationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XLocationManager.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XParam.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XSettingsSecure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XSettingsSecure.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XStrictMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XStrictMode.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XTelephonyManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XTelephonyManager.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XUtilHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XUtilHook.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/XWifiManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/XWifiManager.java -------------------------------------------------------------------------------- /src/org/thoughtland/xlocation/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/src/org/thoughtland/xlocation/diff.txt -------------------------------------------------------------------------------- /substrate-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/substrate-api.jar -------------------------------------------------------------------------------- /tools/addstring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/addstring.sh -------------------------------------------------------------------------------- /tools/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/build.gradle -------------------------------------------------------------------------------- /tools/gradle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/gradle.txt -------------------------------------------------------------------------------- /tools/ic_launcher-promo-big.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/ic_launcher-promo-big.xcf -------------------------------------------------------------------------------- /tools/padlock_question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/padlock_question.svg -------------------------------------------------------------------------------- /tools/xxhdmi2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikwilson/XLocation/HEAD/tools/xxhdmi2.xcf --------------------------------------------------------------------------------