├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icons ├── LICENSE ├── Privacy Police 128x128.png ├── Privacy Police 16x16.png ├── Privacy Police 256x256.png ├── Privacy Police 32x32.png ├── Privacy Police 48x48.png ├── Privacy Police 512x512.png ├── Privacy Police 64x64.png ├── Privacy Police Playstore Banner.png ├── Privacy Police.png └── Privacy Police.psd ├── privacypolice.iml ├── privacypolice ├── build.gradle ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── ic_menu_clear_playlist-web.png │ ├── ic_notification.png │ ├── ic_wifi_signal_0-web.png │ ├── ic_wifi_signal_1-web.png │ ├── java │ └── be │ │ └── uhasselt │ │ └── privacypolice │ │ ├── Analytics.java │ │ ├── AskPermissionActivity.java │ │ ├── LocationAccess.java │ │ ├── LocationNoticeActivity.java │ │ ├── MACManagerActivity.java │ │ ├── NetworkManagerActivity.java │ │ ├── NotificationHandler.java │ │ ├── PermissionChangeReceiver.java │ │ ├── PreferencesActivity.java │ │ ├── PreferencesStorage.java │ │ ├── SSIDManagerActivity.java │ │ ├── ScanResultsChecker.java │ │ └── WakelockHandler.java │ └── res │ ├── drawable-hdpi-v11 │ └── ic_notification.png │ ├── drawable-hdpi-v9 │ └── ic_notification.png │ ├── drawable-hdpi │ ├── ic_launcher.png │ ├── ic_notification.png │ ├── ic_wifi_signal_0_teal.png │ ├── ic_wifi_signal_1_teal.png │ ├── ic_wifi_signal_2_teal.png │ ├── ic_wifi_signal_3_teal.png │ └── ic_wifi_signal_4_teal.png │ ├── drawable-mdpi-v11 │ └── ic_notification.png │ ├── drawable-mdpi-v9 │ └── ic_notification.png │ ├── drawable-mdpi │ ├── ic_launcher.png │ ├── ic_notification.png │ ├── ic_wifi_signal_0_teal.png │ ├── ic_wifi_signal_1_teal.png │ ├── ic_wifi_signal_2_teal.png │ ├── ic_wifi_signal_3_teal.png │ └── ic_wifi_signal_4_teal.png │ ├── drawable-xhdpi-v11 │ └── ic_notification.png │ ├── drawable-xhdpi-v9 │ └── ic_notification.png │ ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── ic_notification.png │ ├── ic_wifi_signal_0_teal.png │ ├── ic_wifi_signal_1_teal.png │ ├── ic_wifi_signal_2_teal.png │ ├── ic_wifi_signal_3_teal.png │ └── ic_wifi_signal_4_teal.png │ ├── drawable-xxhdpi-v11 │ ├── border.xml │ └── ic_notification.png │ ├── drawable-xxhdpi-v9 │ └── ic_notification.png │ ├── drawable-xxhdpi │ ├── ic_launcher.png │ ├── ic_notification.png │ ├── ic_wifi_signal_0_teal.png │ ├── ic_wifi_signal_1_teal.png │ ├── ic_wifi_signal_2_teal.png │ ├── ic_wifi_signal_3_teal.png │ └── ic_wifi_signal_4_teal.png │ ├── drawable-xxxhdpi │ ├── ic_wifi_signal_0_pink.png │ ├── ic_wifi_signal_0_teal.png │ ├── ic_wifi_signal_1_pink.png │ ├── ic_wifi_signal_1_teal.png │ ├── ic_wifi_signal_2_pink.png │ ├── ic_wifi_signal_2_teal.png │ ├── ic_wifi_signal_3_pink.png │ ├── ic_wifi_signal_3_teal.png │ ├── ic_wifi_signal_4_pink.png │ ├── ic_wifi_signal_4_teal.png │ ├── ic_wifi_unavailable_pink.png │ └── ic_wifi_unavailable_teal.png │ ├── layout │ ├── activity_askpermission.xml │ ├── activity_locationnotice.xml │ ├── activity_preferences.xml │ └── item_networkmanager.xml │ ├── menu │ ├── ask_permission.xml │ └── networkmanager.xml │ ├── mipmap-hdpi │ └── ic_menu_clear_playlist.png │ ├── mipmap-mdpi │ └── ic_menu_clear_playlist.png │ ├── mipmap-xhdpi │ └── ic_menu_clear_playlist.png │ ├── mipmap-xxhdpi │ └── ic_menu_clear_playlist.png │ ├── mipmap-xxxhdpi │ └── ic_menu_clear_playlist.png │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-v21 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── preferences.xml │ ├── preferences_location.xml │ └── tracker.xml └── settings.gradle /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/LICENSE -------------------------------------------------------------------------------- /icons/Privacy Police 128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 128x128.png -------------------------------------------------------------------------------- /icons/Privacy Police 16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 16x16.png -------------------------------------------------------------------------------- /icons/Privacy Police 256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 256x256.png -------------------------------------------------------------------------------- /icons/Privacy Police 32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 32x32.png -------------------------------------------------------------------------------- /icons/Privacy Police 48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 48x48.png -------------------------------------------------------------------------------- /icons/Privacy Police 512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 512x512.png -------------------------------------------------------------------------------- /icons/Privacy Police 64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police 64x64.png -------------------------------------------------------------------------------- /icons/Privacy Police Playstore Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police Playstore Banner.png -------------------------------------------------------------------------------- /icons/Privacy Police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police.png -------------------------------------------------------------------------------- /icons/Privacy Police.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/icons/Privacy Police.psd -------------------------------------------------------------------------------- /privacypolice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice.iml -------------------------------------------------------------------------------- /privacypolice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/build.gradle -------------------------------------------------------------------------------- /privacypolice/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/proguard-rules.txt -------------------------------------------------------------------------------- /privacypolice/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /privacypolice/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /privacypolice/src/main/ic_menu_clear_playlist-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/ic_menu_clear_playlist-web.png -------------------------------------------------------------------------------- /privacypolice/src/main/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/ic_wifi_signal_0-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/ic_wifi_signal_0-web.png -------------------------------------------------------------------------------- /privacypolice/src/main/ic_wifi_signal_1-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/ic_wifi_signal_1-web.png -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/Analytics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/Analytics.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/AskPermissionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/AskPermissionActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/LocationAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/LocationAccess.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/LocationNoticeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/LocationNoticeActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/MACManagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/MACManagerActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/NetworkManagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/NetworkManagerActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/NotificationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/NotificationHandler.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/PermissionChangeReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/PermissionChangeReceiver.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/PreferencesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/PreferencesActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/PreferencesStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/PreferencesStorage.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/SSIDManagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/SSIDManagerActivity.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/ScanResultsChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/ScanResultsChecker.java -------------------------------------------------------------------------------- /privacypolice/src/main/java/be/uhasselt/privacypolice/WakelockHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/java/be/uhasselt/privacypolice/WakelockHandler.java -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi-v11/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi-v11/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi-v9/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi-v9/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_0_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_0_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_1_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_1_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_2_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_2_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_3_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_3_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_4_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-hdpi/ic_wifi_signal_4_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi-v11/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi-v11/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi-v9/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi-v9/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_0_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_0_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_1_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_1_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_2_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_2_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_3_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_3_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_4_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-mdpi/ic_wifi_signal_4_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi-v11/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi-v11/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi-v9/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi-v9/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_0_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_0_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_1_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_1_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_2_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_2_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_3_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_3_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_4_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xhdpi/ic_wifi_signal_4_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi-v11/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi-v11/border.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi-v11/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi-v11/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi-v9/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi-v9/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_0_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_0_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_1_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_1_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_2_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_2_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_3_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_3_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_4_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxhdpi/ic_wifi_signal_4_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_0_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_0_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_0_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_0_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_1_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_1_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_1_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_1_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_2_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_2_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_2_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_3_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_3_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_3_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_3_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_4_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_4_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_4_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_signal_4_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_unavailable_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_unavailable_pink.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_unavailable_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/drawable-xxxhdpi/ic_wifi_unavailable_teal.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/layout/activity_askpermission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/layout/activity_askpermission.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/layout/activity_locationnotice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/layout/activity_locationnotice.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/layout/activity_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/layout/activity_preferences.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/layout/item_networkmanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/layout/item_networkmanager.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/menu/ask_permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/menu/ask_permission.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/menu/networkmanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/menu/networkmanager.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/mipmap-hdpi/ic_menu_clear_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/mipmap-hdpi/ic_menu_clear_playlist.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/mipmap-mdpi/ic_menu_clear_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/mipmap-mdpi/ic_menu_clear_playlist.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/mipmap-xhdpi/ic_menu_clear_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/mipmap-xhdpi/ic_menu_clear_playlist.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/mipmap-xxhdpi/ic_menu_clear_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/mipmap-xxhdpi/ic_menu_clear_playlist.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/mipmap-xxxhdpi/ic_menu_clear_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/mipmap-xxxhdpi/ic_menu_clear_playlist.png -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/xml/preferences_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/xml/preferences_location.xml -------------------------------------------------------------------------------- /privacypolice/src/main/res/xml/tracker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BramBonne/privacypolice/HEAD/privacypolice/src/main/res/xml/tracker.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':privacypolice' 2 | --------------------------------------------------------------------------------