From a693ced32e6bcc837edf19e1c2188410cc70e943 Mon Sep 17 00:00:00 2001 From: Jens Date: Thu, 18 Mar 2021 23:37:21 +0100 Subject: [PATCH] Background location notifications in googlePlayFlavor --- app/src/apkFlavor/AndroidManifest.xml | 1 + app/src/fdroidFlavor/AndroidManifest.xml | 1 + app/src/googlePlayFlavor/AndroidManifest.xml | 10 +---- .../ActivityDisplayLongMessage.java | 39 +++++++++++++++++-- .../com/jens/automation2/ActivityMainPoi.java | 28 ++++++------- .../jens/automation2/ActivityMainScreen.java | 14 +++++-- .../jens/automation2/ActivityManageRule.java | 18 ++++++--- .../layout/activity_display_long_message.xml | 37 ++++++++++++++++-- app/src/main/res/values-de/strings.xml | 2 +- app/src/main/res/values/strings.xml | 3 +- 10 files changed, 114 insertions(+), 39 deletions(-) diff --git a/app/src/apkFlavor/AndroidManifest.xml b/app/src/apkFlavor/AndroidManifest.xml index cc416a8f..cfa13ffb 100644 --- a/app/src/apkFlavor/AndroidManifest.xml +++ b/app/src/apkFlavor/AndroidManifest.xml @@ -137,6 +137,7 @@ + diff --git a/app/src/fdroidFlavor/AndroidManifest.xml b/app/src/fdroidFlavor/AndroidManifest.xml index fff232e7..9c567b89 100644 --- a/app/src/fdroidFlavor/AndroidManifest.xml +++ b/app/src/fdroidFlavor/AndroidManifest.xml @@ -133,6 +133,7 @@ + diff --git a/app/src/googlePlayFlavor/AndroidManifest.xml b/app/src/googlePlayFlavor/AndroidManifest.xml index 3c1360f9..71dc8f79 100644 --- a/app/src/googlePlayFlavor/AndroidManifest.xml +++ b/app/src/googlePlayFlavor/AndroidManifest.xml @@ -62,15 +62,6 @@ - - - + diff --git a/app/src/main/java/com/jens/automation2/ActivityDisplayLongMessage.java b/app/src/main/java/com/jens/automation2/ActivityDisplayLongMessage.java index d895d0eb..9f29e8f2 100644 --- a/app/src/main/java/com/jens/automation2/ActivityDisplayLongMessage.java +++ b/app/src/main/java/com/jens/automation2/ActivityDisplayLongMessage.java @@ -1,14 +1,21 @@ package com.jens.automation2; import android.app.Activity; +import android.content.Intent; +import android.net.Uri; +import android.os.Build; import android.os.Bundle; +import android.text.Html; +import android.view.View; +import android.widget.QuickContactBadge; import android.widget.TextView; import androidx.annotation.Nullable; +import androidx.core.text.HtmlCompat; public class ActivityDisplayLongMessage extends Activity { - TextView tvLongMessage; + TextView tvMessageTitle, tvLongMessage, tvMessageLink; @Override protected void onCreate(@Nullable Bundle savedInstanceState) @@ -16,8 +23,34 @@ public class ActivityDisplayLongMessage extends Activity super.onCreate(savedInstanceState); setContentView(R.layout.activity_display_long_message); + tvMessageTitle = (TextView)findViewById(R.id.tvMessageTitle); tvLongMessage = (TextView)findViewById(R.id.tvLongMessage); + tvMessageLink = (TextView)findViewById(R.id.tvMessageLink); - tvLongMessage.setText(getIntent().getStringExtra("longMessage")); + String title = getIntent().getStringExtra("messageTitle"); + String message = getIntent().getStringExtra("longMessage").replace("\\n", Miscellaneous.lineSeparator); + + String link = null; + if(getIntent().hasExtra("messageLink")) + link = getIntent().getStringExtra("messageLink"); + + tvMessageTitle.setText(HtmlCompat.fromHtml(title, HtmlCompat.FROM_HTML_MODE_LEGACY)); + tvLongMessage.setText(message); + + if(link != null && link.length() > 0) + { + tvMessageLink.setText(HtmlCompat.fromHtml("" + link + "", HtmlCompat.FROM_HTML_MODE_LEGACY)); + String finalLink = link; + tvMessageLink.setOnClickListener(new View.OnClickListener() + { + @Override + public void onClick(View view) + { + Uri uriUrl = Uri.parse(finalLink); + Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl); + startActivity(launchBrowser); + } + }); + } } -} +} \ No newline at end of file diff --git a/app/src/main/java/com/jens/automation2/ActivityMainPoi.java b/app/src/main/java/com/jens/automation2/ActivityMainPoi.java index a0a22943..065c64bc 100644 --- a/app/src/main/java/com/jens/automation2/ActivityMainPoi.java +++ b/app/src/main/java/com/jens/automation2/ActivityMainPoi.java @@ -53,23 +53,25 @@ public class ActivityMainPoi extends ActivityGeneric @Override public void onClick(View v) { -// if(!ActivityPermissions.havePermission(ActivityPermissions.writeExternalStoragePermissionName, ActivityMainPoi.this)) -// { -// Toast.makeText(ActivityMainPoi.this, getResources().getString(R.string.appRequiresPermissiontoAccessExternalStorage), Toast.LENGTH_LONG).show(); -// return; -// } - - if(!ActivityPermissions.havePermission(ActivityPermissions.permissionNameLocationCoarse, ActivityMainPoi.this) || !ActivityPermissions.havePermission(ActivityPermissions.permissionNameLocationFine, ActivityMainPoi.this)) + if(Miscellaneous.googleToBlameForLocation()) { - Intent permissionIntent = new Intent(ActivityMainPoi.this, ActivityPermissions.class); - - permissionIntent.putExtra(ActivityPermissions.intentExtraName, new String[] { ActivityPermissions.permissionNameLocationCoarse, ActivityPermissions.permissionNameLocationFine }); - - startActivityForResult(permissionIntent, requestCodeForPermission); + ActivityMainScreen.openGoogleBlamingWindow(); + return; } else { - buttonAddPoi(); + if (!ActivityPermissions.havePermission(ActivityPermissions.permissionNameLocationCoarse, ActivityMainPoi.this) || !ActivityPermissions.havePermission(ActivityPermissions.permissionNameLocationFine, ActivityMainPoi.this)) + { + Intent permissionIntent = new Intent(ActivityMainPoi.this, ActivityPermissions.class); + + permissionIntent.putExtra(ActivityPermissions.intentExtraName, new String[]{ActivityPermissions.permissionNameLocationCoarse, ActivityPermissions.permissionNameLocationFine}); + + startActivityForResult(permissionIntent, requestCodeForPermission); + } + else + { + buttonAddPoi(); + } } } }); diff --git a/app/src/main/java/com/jens/automation2/ActivityMainScreen.java b/app/src/main/java/com/jens/automation2/ActivityMainScreen.java index 37d3d972..d90c8f3d 100644 --- a/app/src/main/java/com/jens/automation2/ActivityMainScreen.java +++ b/app/src/main/java/com/jens/automation2/ActivityMainScreen.java @@ -328,9 +328,7 @@ public class ActivityMainScreen extends ActivityGeneric @Override public void onClick(View v) { - Intent intent = new Intent(Miscellaneous.getAnyContext(), ActivityDisplayLongMessage.class); - intent.putExtra("longMessage", Miscellaneous.getAnyContext().getResources().getString(R.string.locationEngineDisabledLong)); - Miscellaneous.getAnyContext().startActivity(intent); + openGoogleBlamingWindow(); } }); } @@ -459,6 +457,16 @@ public class ActivityMainScreen extends ActivityGeneric } } + public static void openGoogleBlamingWindow() + { + Intent intent = new Intent(Miscellaneous.getAnyContext(), ActivityDisplayLongMessage.class); + String message = Miscellaneous.getAnyContext().getResources().getText(R.string.locationEngineDisabledLong).toString(); + intent.putExtra("messageTitle", Miscellaneous.getAnyContext().getResources().getString(R.string.locationDisabled)); + intent.putExtra("longMessage", message); + intent.putExtra("messageLink", "https://f-droid.org/en/packages/com.jens.automation2/"); + Miscellaneous.getAnyContext().startActivity(intent); + } + static void newsOptIn() { AlertDialog.Builder builder = new AlertDialog.Builder(Miscellaneous.getAnyContext()); diff --git a/app/src/main/java/com/jens/automation2/ActivityManageRule.java b/app/src/main/java/com/jens/automation2/ActivityManageRule.java index 80087d41..1f934fef 100644 --- a/app/src/main/java/com/jens/automation2/ActivityManageRule.java +++ b/app/src/main/java/com/jens/automation2/ActivityManageRule.java @@ -165,7 +165,7 @@ public class ActivityManageRule extends Activity hideKeyboard(); getActionTypeDialog().show(); } - }); + }); cmdSaveRule.setOnClickListener(new OnClickListener() { @@ -502,12 +502,20 @@ public class ActivityManageRule extends Activity String[] booleanChoices = null; if(triggerType == Trigger_Enum.pointOfInterest) { - if(PointOfInterest.getPointOfInterestCollection() != null && PointOfInterest.getPointOfInterestCollection().size() > 0) - booleanChoices = new String[]{getResources().getString(R.string.entering), getResources().getString(R.string.leaving)}; + if(Miscellaneous.googleToBlameForLocation()) + { + ActivityMainScreen.openGoogleBlamingWindow(); + return; + } else { - Toast.makeText(myContext, getResources().getString(R.string.noPoisSpecified), Toast.LENGTH_LONG).show(); - return; + if (PointOfInterest.getPointOfInterestCollection() != null && PointOfInterest.getPointOfInterestCollection().size() > 0) + booleanChoices = new String[]{getResources().getString(R.string.entering), getResources().getString(R.string.leaving)}; + else + { + Toast.makeText(myContext, getResources().getString(R.string.noPoisSpecified), Toast.LENGTH_LONG).show(); + return; + } } } else if(triggerType == Trigger_Enum.timeFrame) diff --git a/app/src/main/res/layout/activity_display_long_message.xml b/app/src/main/res/layout/activity_display_long_message.xml index e98e78f4..0ff5bebf 100644 --- a/app/src/main/res/layout/activity_display_long_message.xml +++ b/app/src/main/res/layout/activity_display_long_message.xml @@ -1,11 +1,40 @@ + android:layout_height="match_parent" + android:layout_margin="@dimen/default_margin"> - + android:layout_height="wrap_content" > + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 004e6eb7..a7ce71ec 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -596,5 +596,5 @@ veröffentlicht am Automation benutzt jetzt ein anderes Verzeichnis, um Ihre Daten zu speichern. Alle Ihre Automation-Dateien wurden hierhin verschoben: \"%s\". Die Berechtigung für den externen Speicher wird nun nicht mehr benötigt; Sie können Sie entfernen. In einer künftigen Version wird sie entfernt werden. Die Position kann nicht mehr bestimmt werden. - Leider kann die Position nicht mehr bestimmt werden. Großer Dank dafür geht an Google für seine unendliche Weisheit und Großzügigkeit.
Beginnend mit Android 10 wurde eine neue Berechtigung eingeführt, die benötigt wird, um als App die Position auch im Hintergrund bestimmen zu können, was, für eine App wie diese, natürlich notwendig ist.
Während ich das grundsätzlich für eine gute Idee halte, gilt das nicht für die Schikane, die damit verbunden ist.
Wenn man eine App entwickelt, kann man versuchen sich für diese Berechtigung zu qualifizieren, indem man einen Katalog von Bedingungen erfüllt. Leider wurden neue Versionen meiner Anwendung über einen Zeitraum von drei Monaten immer wieder abgelehnt.
Das lief auf die immer gleiche Art ab:
Ich habe eine neue Version eingereicht, die all diese Anforderungen erfüllt hat.
Googles miserabler Entwickler-Support behauptete ich würde sie nicht einhalten.
Ich habe Beweise geliefert, daß ich alles einhalte.
Ich bekam eine Antwort wie "Ich kann Ihnen nicht weiterhelfen.

Irgendwann habe ich aufgegeben.

Die Folge davon ist nun, daß die Google Play Version keine Positionsbestimmung mehr im Hintergrund durchführen kann. Die Alternative wäre es gewesen, daß die ganze Anwendung aus dem Store fliegt.

Das tut mir sehr leid, aber ich habe mein Bestes gegeben mit einem Kunden\"dienst\" zu diskutieren, der mehrfach beim Turing-Test durchgefallen ist.
Die gute Nachricht - die Anwendung kann es immer noch!
Automation ist nun Open Source Software und kann ab sofort bei F-Droid heruntergeladen werden. F-Droid ist ein freier Appstore, der Ihre Privatsphäre respektiert - statt nur so zu tun wie Google das macht.
Deinstallieren Sie dazu diese Anwendung und installieren Sie sich bei F-Droid neu. Klicken Sie hier, um mehr herauszufinden: https://f-droid.org/en/packages/com.jens.automation2/
+ Leider kann die Position nicht mehr bestimmt werden. Großer Dank dafür geht an Google für seine unendliche Weisheit und Großzügigkeit.\\n\\nBeginnend mit Android 10 wurde eine neue Berechtigung eingeführt, die benötigt wird, um als App die Position auch im Hintergrund bestimmen zu können, was, für eine App wie diese, natürlich notwendig ist.\\n\\nWährend ich das grundsätzlich für eine gute Idee halte, gilt das nicht für die Schikane, die damit verbunden ist.\\n\\nWenn man eine App entwickelt, kann man versuchen sich für diese Berechtigung zu qualifizieren, indem man einen Katalog von Bedingungen erfüllt. Leider wurden neue Versionen meiner Anwendung über einen Zeitraum von drei Monaten immer wieder abgelehnt.\\n\\nDas lief auf die immer gleiche Art ab:\\n\\nIch habe eine neue Version eingereicht, die all diese Anforderungen erfüllt hat.\\n\\nGoogles miserabler Entwickler-Support behauptete ich würde sie nicht einhalten.\\n\\nIch habe Beweise geliefert, daß ich alles einhalte.
Ich bekam eine Antwort wie "Ich kann Ihnen nicht weiterhelfen.\\n\\nIrgendwann habe ich aufgegeben.\\n\\nDie Folge davon ist nun, daß die Google Play Version keine Positionsbestimmung mehr im Hintergrund durchführen kann. Die Alternative wäre es gewesen, daß die ganze Anwendung aus dem Store fliegt.\\n\\nDas tut mir sehr leid, aber ich habe mein Bestes gegeben mit einem Kunden\"dienst\" zu diskutieren, der mehrfach beim Turing-Test durchgefallen ist.\\n\\nDie gute Nachricht - die Anwendung kann es immer noch!\\n\\nAutomation ist nun Open Source Software und kann ab sofort bei F-Droid heruntergeladen werden. F-Droid ist ein freier Appstore, der Ihre Privatsphäre respektiert - statt nur so zu tun wie Google das macht.\\n\\nDeinstallieren Sie dazu diese Anwendung und installieren Sie sich bei F-Droid neu.\\n\\nKlicken Sie hier, um mehr herauszufinden:
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 1fa21f02..5b3bf13a 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -607,6 +607,7 @@ Announcements about this app only, we\'re probably talking about 1-2 per year, not more. Automation now uses another path to store your files. All your Automation-files have been moved here: \"%s\". The external storage permission is not required anymore; you can revoke it. It will be removed in a future version. Would you like to receive (only important) news about this app on the main screen? Those are downloaded from the developer\'s website. There will be no intrusive notification, just a text on the main screen when you open the app. + Location disabled Location cannot be determined anymore. Click here to find out why. - Unfortunately your location cannot be determined anymore. A debt of gratitude is owed to Google for its infinite wisdom and amiableness.
Let me explain this further. Starting with Android 10 a new permission was introduced that is needed to determine your location in the background (which of course is required for an app like this). Whilst I consider that a good idea the chicanery it involves are not.
When developing an app you can try to qualify for this permission by abiding to a catalog of requirements. Unfortunately new versions of my app have been rejected over a period three months. I fulfilled all these requirements, Google\'s shitty development support claimed I would not. After giving them proof that I did after all - I got a response like \"I cannot help you anymore\". Eventually I gave up.
As a consequence the Google Play version can NOT use your location as a trigger anymore. The alternative would have been to have this application removed from the store entirely.
I\'m very sorry about that, but I\'ve tried my best arguing with a \"support\" that repeatedly failed to pass the Turing test.
The good news - You can still have it all:
Automation is now open source and can be found in F-Droid. That is an app store that really cares about your privacy - rather than just acting like that. Simply uninstall this app and install it again from F-Droid. Click here to find out more: https://f-droid.org/en/packages/com.jens.automation2/
+ Unfortunately your location cannot be determined anymore. A debt of gratitude is owed to Google for its infinite wisdom and amiableness.\\n\\nLet me explain this further. Starting with Android 10 a new permission was introduced that is needed to determine your location in the background (which of course is required for an app like this). Whilst I consider that a good idea the chicanery it involves are not.\\n\\nWhen developing an app you can try to qualify for this permission by abiding to a catalog of requirements. Unfortunately new versions of my app have been rejected over a period of three months. I fulfilled all these requirements, Google\'s shitty development support claimed I would not. After giving them proof that I did after all - I got a response like \"I cannot help you anymore\". Eventually I gave up. \\n\\nAs a consequence the Google Play version can NOT use your location as a trigger anymore. The alternative would have been to have this application removed from the store entirely.\\n\\nI\'m very sorry about that, but I\'ve tried my best arguing with a \"support\" that repeatedly failed to pass the Turing test.\\n\\nThe good news - You can still have it all:\\n\\nAutomation is now open source and can be found in F-Droid. That is an app store that really cares about your privacy - rather than just acting like that. Simply uninstall this app and install it again from F-Droid.\\n\\nClick here to find out more: \ No newline at end of file