-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from getAlby/task-notifications
feat: notification improvements
- Loading branch information
Showing
65 changed files
with
4,760 additions
and
4,238 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,8 @@ yarn-error.* | |
|
||
# typescript | ||
*.tsbuildinfo | ||
|
||
ios | ||
android | ||
|
||
google-services.json |
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 |
---|---|---|
@@ -0,0 +1,111 @@ | ||
import withMessagingServicePlugin from "./plugins/withMessageServicePlugin"; | ||
|
||
export default ({ config }) => { | ||
return { | ||
...config, | ||
name: "Alby Go", | ||
slug: "alby-mobile", | ||
version: "1.8.1", | ||
scheme: ["lightning", "bitcoin", "alby", "nostr+walletconnect"], | ||
orientation: "portrait", | ||
icon: "./assets/icon.png", | ||
userInterfaceStyle: "automatic", | ||
newArchEnabled: true, | ||
splash: { | ||
image: "./assets/splash.png", | ||
resizeMode: "cover", | ||
backgroundColor: "#0F0C40", | ||
}, | ||
assetBundlePatterns: ["**/*"], | ||
plugins: [ | ||
[ | ||
withMessagingServicePlugin, | ||
{ | ||
androidFMSFilePath: "./assets/MessagingService.kt", | ||
}, | ||
], | ||
[ | ||
"expo-notification-service-extension-plugin", | ||
{ | ||
mode: "production", | ||
iosNSEFilePath: "./assets/NotificationService.m", | ||
}, | ||
], | ||
[ | ||
"expo-splash-screen", | ||
{ | ||
backgroundColor: "#0B0930", | ||
image: "./assets/icon.png", | ||
imageWidth: "150", | ||
}, | ||
], | ||
[ | ||
"expo-local-authentication", | ||
{ | ||
faceIDPermission: "Allow Alby Go to use Face ID.", | ||
}, | ||
], | ||
[ | ||
"expo-camera", | ||
{ | ||
cameraPermission: | ||
"Allow Alby Go to use the camera to scan wallet connection and payment QR codes", | ||
recordAudioAndroid: false, | ||
}, | ||
], | ||
[ | ||
"expo-font", | ||
{ | ||
fonts: [ | ||
"./assets/fonts/OpenRunde-Regular.otf", | ||
"./assets/fonts/OpenRunde-Medium.otf", | ||
"./assets/fonts/OpenRunde-Semibold.otf", | ||
"./assets/fonts/OpenRunde-Bold.otf", | ||
], | ||
}, | ||
], | ||
[ | ||
"expo-notifications", | ||
{ | ||
icon: "./assets/notification.png", | ||
}, | ||
], | ||
"expo-router", | ||
"expo-secure-store", | ||
], | ||
ios: { | ||
supportsTablet: true, | ||
bundleIdentifier: "com.getalby.mobile", | ||
config: { | ||
usesNonExemptEncryption: false, | ||
}, | ||
infoPlist: { | ||
LSMinimumSystemVersion: "12.0", | ||
UIBackgroundModes: ["remote-notification"], | ||
}, | ||
userInterfaceStyle: "automatic", | ||
}, | ||
android: { | ||
package: "com.getalby.mobile", | ||
icon: "./assets/icon.png", | ||
adaptiveIcon: { | ||
foregroundImage: "./assets/adaptive-icon.png", | ||
backgroundImage: "./assets/adaptive-icon-bg.png", | ||
monochromeImage: "./assets/monochromatic.png", | ||
}, | ||
permissions: [ | ||
"android.permission.CAMERA", | ||
"android.permission.USE_BIOMETRIC", | ||
"android.permission.USE_FINGERPRINT", | ||
], | ||
userInterfaceStyle: "automatic", | ||
googleServicesFile: process.env.GOOGLE_SERVICES_JSON, | ||
}, | ||
extra: { | ||
eas: { | ||
projectId: "294965ec-3a67-4994-8794-5cc1117ef155", | ||
}, | ||
}, | ||
owner: "roland_alby", | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
import { ZeroAmount } from "../../../pages/send/ZeroAmount"; | ||
|
||
export default function Page() { | ||
return <ZeroAmount />; | ||
} |
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,5 @@ | ||
import { Notifications } from "../../../pages/settings/Notifications"; | ||
|
||
export default function Page() { | ||
return <Notifications />; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { LightningAddress } from "../../../../../pages/settings/wallets/LightningAddress"; | ||
import { SetLightningAddress } from "../../../../../pages/settings/wallets/LightningAddress"; | ||
|
||
export default function Page() { | ||
return <LightningAddress />; | ||
return <SetLightningAddress />; | ||
} |
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
Oops, something went wrong.