Feature/notification system #26
4 changed files with 26 additions and 1 deletions
|
|
@ -3,5 +3,7 @@
|
|||
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||
|
||||
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" tools:replace="android:usesCleartextTraffic" />
|
||||
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" tools:replace="android:usesCleartextTraffic">
|
||||
<meta-data android:name="delivery_metrics_exported_to_big_query_enabled" android:value="false"/>
|
||||
</application>
|
||||
</manifest>
|
||||
|
|
|
|||
6
app.json
6
app.json
|
|
@ -13,6 +13,12 @@
|
|||
"backgroundColor": "#ffffff"
|
||||
},
|
||||
"ios": {
|
||||
"entitlements": {
|
||||
"aps-environment": "production"
|
||||
},
|
||||
"infoPlist": {
|
||||
"UIBackgroundModes": ["remote-notification"]
|
||||
},
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "com.mattdimegs.tones",
|
||||
"googleServicesFile": "./GoogleServices/GoogleService-Info.plist"
|
||||
|
|
|
|||
16
package-lock.json
generated
16
package-lock.json
generated
|
|
@ -13,6 +13,7 @@
|
|||
"@expo/vector-icons": "^14.0.2",
|
||||
"@react-native-async-storage/async-storage": "^1.24.0",
|
||||
"@react-native-firebase/app": "^23.1.1",
|
||||
"@react-native-firebase/messaging": "^23.1.1",
|
||||
"@react-native-picker/picker": "^2.11.1",
|
||||
"@react-navigation/native": "^7.1.17",
|
||||
"expo": "^53.0.20",
|
||||
|
|
@ -3136,6 +3137,21 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@react-native-firebase/messaging": {
|
||||
"version": "23.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@react-native-firebase/messaging/-/messaging-23.1.1.tgz",
|
||||
"integrity": "sha512-P6jH3jGGXIDn+EuCognMWkegqR/cDmEAMXHLV+XgodCSMoMODBfswJWmKYoX/7xkjBsptOXUKI6uwo3S+H5z1Q==",
|
||||
"license": "Apache-2.0",
|
||||
"peerDependencies": {
|
||||
"@react-native-firebase/app": "23.1.1",
|
||||
"expo": ">=47.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"expo": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@react-native-picker/picker": {
|
||||
"version": "2.11.1",
|
||||
"resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.11.1.tgz",
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
"@expo/vector-icons": "^14.0.2",
|
||||
"@react-native-async-storage/async-storage": "^1.24.0",
|
||||
"@react-native-firebase/app": "^23.1.1",
|
||||
"@react-native-firebase/messaging": "^23.1.1",
|
||||
"@react-native-picker/picker": "^2.11.1",
|
||||
"@react-navigation/native": "^7.1.17",
|
||||
"expo": "^53.0.20",
|
||||
|
|
|
|||
Loading…
Reference in a new issue