From 3653cfec597a0e8179f0a44af3c54f75c6a42314 Mon Sep 17 00:00:00 2001 From: afischerdev Date: Wed, 29 Mar 2023 18:44:06 +0200 Subject: [PATCH 1/2] add privacy policy --- brouter-routing-app/build.gradle | 3 +++ docs/index.md | 4 ++++ docs/privacy_policy.md | 22 ++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 docs/privacy_policy.md diff --git a/brouter-routing-app/build.gradle b/brouter-routing-app/build.gradle index 16e3ba3..af19b49 100644 --- a/brouter-routing-app/build.gradle +++ b/brouter-routing-app/build.gradle @@ -20,6 +20,8 @@ android { minSdkVersion 14 targetSdkVersion 33 + resConfigs "en" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -143,6 +145,7 @@ task generateReadmesZip(type: Zip) { include("users/android_advanced.md") include("developers/profile_developers_guide.md") include("developers/build_segments.md") + include("privacy_policy.md") } destinationDirectory = layout.buildDirectory.dir("assets") } diff --git a/docs/index.md b/docs/index.md index 90a79b2..fe1f1fd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -52,6 +52,10 @@ offline routing on an Android smartphone. See the [revision history](revisions.md) for older revisions of the app and the change-log. +### Privacy Policy + +Please see [privacy policy](privacy_policy.md) + ### Google group for support questions and feedback Please use the diff --git a/docs/privacy_policy.md b/docs/privacy_policy.md new file mode 100644 index 0000000..d48a06f --- /dev/null +++ b/docs/privacy_policy.md @@ -0,0 +1,22 @@ +# Privacy Policy + +* This app doesn't collect any user data. +* This app doesn't save or share position data. +* This app doesn't contain or show ads. +* This app has no contact with websites other than the routing data download page. + + +## Permissions + +* INTERNET to download routing data +* ACCESS_NETWORK_STATE information if internet is available +* FOREGROUND_SERVICE allow the app to work on top of other apps - since Android API 33 +* POST_NOTIFICATIONS allow to show a notification in status line - since Android API 33 + + +## Contact + +Get in contact to the delevoper team via Github + +https://github.com/abrensch/brouter + From 49c146e0eb0d5c405a2b067d1ba27fe0a5d71a73 Mon Sep 17 00:00:00 2001 From: afischerdev Date: Thu, 30 Mar 2023 10:17:46 +0200 Subject: [PATCH 2/2] enable dist zip without apk --- brouter-server/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brouter-server/build.gradle b/brouter-server/build.gradle index 7f97475..08ba55d 100644 --- a/brouter-server/build.gradle +++ b/brouter-server/build.gradle @@ -34,7 +34,7 @@ application { } distZip { - dependsOn fatJar, ':brouter-routing-app:packageRelease' + dependsOn fatJar archiveFileName = 'brouter-' + project.version + '.zip' }