Skip to content

Commit

Permalink
backport 4e6740e
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot committed Jul 23, 2022
1 parent 696e5f8 commit e6f33f2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)**
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = "de.bigboot.gw4remap"
minSdk = 30
targetSdk = 31
versionCode = 1
versionName = "1.0"
versionCode = 2
versionName = "1.0.1"

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<string name="predefined_sources">Predefined sources</string>
<string name="predefined_targets">Predefined targets</string>

<string name="target_google_pay">Google Pay</string>
<string name="target_google_wallet">Google Wallet</string>
<string name="target_google_assistant_go">Google Assistant Go</string>
<string name="target_ultimate_alexa">Ultimate Alexa</string>

Expand Down

0 comments on commit e6f33f2

Please sign in to comment.