From eae28c3fb6952dc8e636c482060e447866b9a3b1 Mon Sep 17 00:00:00 2001 From: Johannes Zweng Date: Tue, 16 Dec 2014 23:29:23 +0100 Subject: [PATCH] added dialog with upgrade infos, so that users migrate to new app id --- AndroidManifest.xml | 4 ++-- res/values-de/strings.xml | 4 +++- res/values/strings.xml | 3 +++ src/at/zweng/bankomatinfos/ui/MainActivity.java | 6 +++++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 04198af..feabc1b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionCode="17" + android:versionName="1.2.6-END-OF-LIFE" > Die Karte hat diese Transaktion gleich offline abgelehnt. Dieser Typ ist reserviert für zukünftige Anwendungen. - + + Update Hinweis + WICHTIGER UPDATE HINWEIS!\n\nDa Google diese App (wegen des Paypal Spenden Buttons) im Play Store gesperrt hat (und leider keine Möglichkeit anbietet diese Sperre wieder rückgängig zu machen), habe ich schweren Herzens beschlossen, die App (jetzt ohne Spenden-Buttons) unter einem neuen Namen und einer neuen App-ID zu veröffentlichen.\n\nBitte deinstallieren Sie daher diese Version der App und installieren Sie die neue Version, die nun ab sofort heißt:\n\n\"Bankomat Card Infos 2\"\n\n\nDas ist dieselbe App, weiterhin Open-Source, weiterhin frei verfügbar, nur unter einem neuen Namen und ist auch im F-Droid Repository zu finden. Es tut mir aufrichtig leid für die Unannehmlichkeiten.\n\nDanke für Ihr Verständnis und Ihre Unterstützung,\n\nJohannes Zweng\n\n\nP.S.: Als kleine Entschädigung: die neue Version kann nun auch VISA und Mastercard Karten lesen. :-) \ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index 545da53..13371e9 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -109,4 +109,7 @@ The card immediately declined this transaction offline. This type is reserved for future use. + + Upgrade notice + IMPORTANT UPGRADE NOTE!\n\nBecause Google blocked this application ID in their Play Store (because of the Paypal donation button) and offers no way to activate it again I reluctantly decided to publish this application (now without a donation dialog) under a new name and application ID.\n\nPlease uninstall this version of the application and install the new application, which is now called:\n\n\n\"Bankomat Card Infos 2\"\n\n\nIt\'s the same application, still free, still open-source, just under a new name and can also be found in the F-Droid repository. I am really sorry for this inconvenience.\n\nThanks for your understanding and your support,\n\nJohannes Zweng\n\n\nP.S.: As a small compensation: the new version now also supports reading of VISA and Mastercard credit cards. :-) \ No newline at end of file diff --git a/src/at/zweng/bankomatinfos/ui/MainActivity.java b/src/at/zweng/bankomatinfos/ui/MainActivity.java index 039c39a..1a49cb9 100644 --- a/src/at/zweng/bankomatinfos/ui/MainActivity.java +++ b/src/at/zweng/bankomatinfos/ui/MainActivity.java @@ -27,6 +27,7 @@ import at.zweng.bankomatinfos.model.CardInfo; import at.zweng.bankomatinfos.util.ChangeLog; import at.zweng.bankomatinfos.util.CustomAlertDialog; +import at.zweng.bankomatinfos.util.Utils; /** * Startup activity @@ -69,7 +70,10 @@ protected void onCreate(Bundle savedInstanceState) { _nfcAdapter = NfcAdapter.getDefaultAdapter(this); // create last changes dialog if needed - displayWhatsNew(); + // displayWhatsNew(); + Utils.displaySimpleAlertDialog(this, + getString(R.string.upgrade_notice_title), + getString(R.string.upgrade_notice_text)); }