diff --git a/CHANGELOG.md b/CHANGELOG.md
index 299c369..c1e087c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## 1.0.1
+### Changed
+- Replace Google Pay with Google Wallet
+
## 1.0.0
### Changed
- App name and package changed **(please uninstall the old version manually)**
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 723dfc8..df133f2 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -15,8 +15,8 @@ android {
applicationId = "de.bigboot.gw4remap"
minSdk = 30
targetSdk = 31
- versionCode = 1
- versionName = "1.0"
+ versionCode = 2
+ versionName = "1.0.1"
}
diff --git a/app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt b/app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt
index f2a11f2..a43a1ea 100644
--- a/app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt
+++ b/app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt
@@ -101,10 +101,10 @@ object PredefinedSources {
}
object PredefinedTargets {
- val GOOGLE_PAY = ActivityTarget(
+ val GOOGLE_WALLET = ActivityTarget(
"com.google.android.apps.walletnfcrel",
- "com.google.commerce.tapandpay.android.wearable.cardlist.WearPayActivity",
- R.string.target_google_pay
+ "com.google.commerce.tapandpay.wear.cardlist.WalletThemedWearCardListActivity",
+ R.string.target_google_wallet
)
val GOOGLE_ASSISTANT_GO = ActivityTarget(
@@ -119,7 +119,7 @@ object PredefinedTargets {
R.string.target_ultimate_alexa
)
- val ALL = listOf(GOOGLE_PAY, GOOGLE_ASSISTANT_GO, ULTIMATE_ALEXA)
+ val ALL = listOf(GOOGLE_WALLET, GOOGLE_ASSISTANT_GO, ULTIMATE_ALEXA)
}
fun Context.getAppPreferences() = AppPreferences(this)
\ 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 c0f316a..7da011c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -10,7 +10,7 @@
Predefined sources
Predefined targets
- Google Pay
+ Google Wallet
Google Assistant Go
Ultimate Alexa