forked from litecoin-foundation/litewallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ππΌββοΈ [Feature] Add push notifications (litecoin-foundation#162)
* Finally fixed the PN dep error caused by Firebase - Added more analytics for the push notifications - Simple clean up refactoring Signed-off-by: kcw-grunt <[email protected]> * Added the AdvertID into the BreadApp singleton Signed-off-by: kcw-grunt <[email protected]> * Added access and location of the key file - addess access object, JSON object, method to read and operate - updated gitignore Signed-off-by: kcw-grunt <[email protected]> --------- Signed-off-by: kcw-grunt <[email protected]>
- Loading branch information
Showing
7 changed files
with
118 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
* Created by sadia on 2020-January-27 | ||
* email: [email protected] | ||
*/ | ||
|
||
public class Partner { | ||
private int logo; | ||
private int title; | ||
|
16 changes: 16 additions & 0 deletions
16
app/src/main/java/com/breadwallet/presenter/entities/PartnerNames.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.breadwallet.presenter.entities | ||
|
||
import com.breadwallet.tools.security.BRKeyStore | ||
import org.json.JSONObject | ||
import java.util.regex.Pattern | ||
import java.io.File | ||
|
||
enum class PartnerNames(val key: String) { | ||
MOONPAY("moonpay"), | ||
BITREFILL("bitrefill"), | ||
INFURA("infura-api"), | ||
LITEWALLETOPS("litewallet-ops"), | ||
LITEWALLETSTART("litewallet-start"), | ||
PUSHER("pusher-instance-id"), | ||
PUSHERSTAGING("pusher-staging-instance-id") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters