csa-react-60/patches/@react-native-firebase+messaging+17.5.0.patch

972 lines
57 KiB
Diff

diff --git a/node_modules/@react-native-firebase/messaging/android/.classpath b/node_modules/@react-native-firebase/messaging/android/.classpath
new file mode 100644
index 0000000..0a3280e
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/.classpath
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21/"/>
+ <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
+ <classpathentry kind="output" path="bin/default"/>
+</classpath>
diff --git a/node_modules/@react-native-firebase/messaging/android/.project b/node_modules/@react-native-firebase/messaging/android/.project
new file mode 100644
index 0000000..5e5a5be
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/.project
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>react-native-firebase_messaging</name>
+ <comment>Project react-native-firebase_messaging created by Buildship.</comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+ </natures>
+ <filteredResources>
+ <filter>
+ <id>1744530580964</id>
+ <name></name>
+ <type>30</type>
+ <matcher>
+ <id>org.eclipse.core.resources.regexFilterMatcher</id>
+ <arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
+ </matcher>
+ </filter>
+ </filteredResources>
+</projectDescription>
diff --git a/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.buildship.core.prefs b/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.buildship.core.prefs
new file mode 100644
index 0000000..68c9fab
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.buildship.core.prefs
@@ -0,0 +1,2 @@
+connection.project.dir=../../../../android
+eclipse.preferences.version=1
diff --git a/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.jdt.core.prefs b/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..60e5b01
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,4 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=27
+org.eclipse.jdt.core.compiler.compliance=27
+org.eclipse.jdt.core.compiler.source=27
diff --git a/node_modules/@react-native-firebase/messaging/android/build.gradle b/node_modules/@react-native-firebase/messaging/android/build.gradle
index a42c5b6..9b3c109 100644
--- a/node_modules/@react-native-firebase/messaging/android/build.gradle
+++ b/node_modules/@react-native-firebase/messaging/android/build.gradle
@@ -89,6 +89,7 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
}
android {
+ namespace "io.invertase.firebase.messaging"
defaultConfig {
multiDexEnabled true
manifestPlaceholders = [
@@ -105,6 +106,7 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
+ buildFeatures { buildConfig = true }
}
repositories {
diff --git a/node_modules/@react-native-firebase/messaging/android/build/generated/source/buildConfig/debug/io/invertase/firebase/messaging/BuildConfig.java b/node_modules/@react-native-firebase/messaging/android/build/generated/source/buildConfig/debug/io/invertase/firebase/messaging/BuildConfig.java
new file mode 100644
index 0000000..05c96b0
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/generated/source/buildConfig/debug/io/invertase/firebase/messaging/BuildConfig.java
@@ -0,0 +1,12 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package io.invertase.firebase.messaging;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String LIBRARY_PACKAGE_NAME = "io.invertase.firebase.messaging";
+ public static final String BUILD_TYPE = "debug";
+ // Field from default config.
+ public static final String FIREBASE_JSON_RAW = "{}";
+}
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
new file mode 100644
index 0000000..42b7356
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="io.invertase.firebase.messaging" >
+
+ <uses-sdk
+ android:minSdkVersion="21"
+ android:targetSdkVersion="34" />
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+
+ <application>
+ <service
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingHeadlessService"
+ android:exported="false" />
+ <service
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingService"
+ android:exported="false" >
+ <intent-filter>
+ <action android:name="com.google.firebase.MESSAGING_EVENT" />
+ </intent-filter>
+ </service>
+
+ <receiver
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingReceiver"
+ android:exported="true"
+ android:permission="com.google.android.c2dm.permission.SEND" >
+ <intent-filter>
+ <action android:name="com.google.android.c2dm.intent.RECEIVE" />
+ </intent-filter>
+ </receiver>
+
+ <meta-data
+ android:name="firebase_messaging_auto_init_enabled"
+ android:value="true" />
+ <meta-data
+ android:name="com.google.firebase.messaging.default_notification_channel_id"
+ android:value="" />
+ <meta-data
+ android:name="com.google.firebase.messaging.default_notification_color"
+ android:resource="@color/white" />
+ </application>
+
+</manifest>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
new file mode 100644
index 0000000..ff221ff
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "io.invertase.firebase.messaging",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
new file mode 100644
index 0000000..8c9c699
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/node_modules/@react-native-firebase/messaging/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state
new file mode 100644
index 0000000..1c983fc
Binary files /dev/null and b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
new file mode 100644
index 0000000..2f1993a
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Sun Apr 13 14:15:13 ICT 2025
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
new file mode 100644
index 0000000..711c9ae
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="aliceblue">#F0F8FF</color>
+ <color name="antiquewhite">#FAEBD7</color>
+ <color name="aqua">#00FFFF</color>
+ <color name="aquamarine">#7FFFD4</color>
+ <color name="azure">#F0FFFF</color>
+ <color name="beige">#F5F5DC</color>
+ <color name="bisque">#FFE4C4</color>
+ <color name="black">#000000</color>
+ <color name="blanchedalmond">#FFEBCD</color>
+ <color name="blue">#0000FF</color>
+ <color name="blueviolet">#8A2BE2</color>
+ <color name="brown">#A52A2A</color>
+ <color name="burlywood">#DEB887</color>
+ <color name="cadetblue">#5F9EA0</color>
+ <color name="chartreuse">#7FFF00</color>
+ <color name="chocolate">#D2691E</color>
+ <color name="coral">#FF7F50</color>
+ <color name="cornflowerblue">#6495ED</color>
+ <color name="cornsilk">#FFF8DC</color>
+ <color name="crimson">#DC143C</color>
+ <color name="cyan">#00FFFF</color>
+ <color name="darkblue">#00008B</color>
+ <color name="darkcyan">#008B8B</color>
+ <color name="darkgoldenrod">#B8860B</color>
+ <color name="darkgray">#A9A9A9</color>
+ <color name="darkgreen">#006400</color>
+ <color name="darkkhaki">#BDB76B</color>
+ <color name="darkmagenta">#8B008B</color>
+ <color name="darkolivegreen">#556B2F</color>
+ <color name="darkorange">#FF8C00</color>
+ <color name="darkorchid">#9932CC</color>
+ <color name="darkred">#8B0000</color>
+ <color name="darksalmon">#E9967A</color>
+ <color name="darkseagreen">#8FBC8F</color>
+ <color name="darkslateblue">#483D8B</color>
+ <color name="darkslategray">#2F4F4F</color>
+ <color name="darkturquoise">#00CED1</color>
+ <color name="darkviolet">#9400D3</color>
+ <color name="deeppink">#FF1493</color>
+ <color name="deepskyblue">#00BFFF</color>
+ <color name="dimgray">#696969</color>
+ <color name="dodgerblue">#1E90FF</color>
+ <color name="firebrick">#B22222</color>
+ <color name="floralwhite">#FFFAF0</color>
+ <color name="forestgreen">#228B22</color>
+ <color name="fuchsia">#FF00FF</color>
+ <color name="gainsboro">#DCDCDC</color>
+ <color name="ghostwhite">#F8F8FF</color>
+ <color name="gold">#FFD700</color>
+ <color name="goldenrod">#DAA520</color>
+ <color name="gray">#808080</color>
+ <color name="green">#008000</color>
+ <color name="greenyellow">#ADFF2F</color>
+ <color name="honeydew">#F0FFF0</color>
+ <color name="hotpink">#FF69B4</color>
+ <color name="indianred">#CD5C5C</color>
+ <color name="indigo">#4B0082</color>
+ <color name="ivory">#FFFFF0</color>
+ <color name="khaki">#F0E68C</color>
+ <color name="lavender">#E6E6FA</color>
+ <color name="lavenderblush">#FFF0F5</color>
+ <color name="lawngreen">#7CFC00</color>
+ <color name="lemonchiffon">#FFFACD</color>
+ <color name="lightblue">#ADD8E6</color>
+ <color name="lightcoral">#F08080</color>
+ <color name="lightcyan">#E0FFFF</color>
+ <color name="lightgoldenrodyellow">#FAFAD2</color>
+ <color name="lightgreen">#90EE90</color>
+ <color name="lightgrey">#D3D3D3</color>
+ <color name="lightpink">#FFB6C1</color>
+ <color name="lightsalmon">#FFA07A</color>
+ <color name="lightseagreen">#20B2AA</color>
+ <color name="lightskyblue">#87CEFA</color>
+ <color name="lightslategray">#778899</color>
+ <color name="lightsteelblue">#B0C4DE</color>
+ <color name="lightyellow">#FFFFE0</color>
+ <color name="lime">#00FF00</color>
+ <color name="limegreen">#32CD32</color>
+ <color name="linen">#FAF0E6</color>
+ <color name="magenta">#FF00FF</color>
+ <color name="maroon">#800000</color>
+ <color name="mediumaquamarine">#66CDAA</color>
+ <color name="mediumblue">#0000CD</color>
+ <color name="mediumorchid">#BA55D3</color>
+ <color name="mediumpurple">#9370DB</color>
+ <color name="mediumseagreen">#3CB371</color>
+ <color name="mediumslateblue">#7B68EE</color>
+ <color name="mediumspringgreen">#00FA9A</color>
+ <color name="mediumturquoise">#48D1CC</color>
+ <color name="mediumvioletred">#C71585</color>
+ <color name="midnightblue">#191970</color>
+ <color name="mintcream">#F5FFFA</color>
+ <color name="mistyrose">#FFE4E1</color>
+ <color name="moccasin">#FFE4B5</color>
+ <color name="navajowhite">#FFDEAD</color>
+ <color name="navy">#000080</color>
+ <color name="oldlace">#FDF5E6</color>
+ <color name="olive">#808000</color>
+ <color name="olivedrab">#6B8E23</color>
+ <color name="orange">#FFA500</color>
+ <color name="orangered">#FF4500</color>
+ <color name="orchid">#DA70D6</color>
+ <color name="palegoldenrod">#EEE8AA</color>
+ <color name="palegreen">#98FB98</color>
+ <color name="paleturquoise">#AFEEEE</color>
+ <color name="palevioletred">#DB7093</color>
+ <color name="papayawhip">#FFEFD5</color>
+ <color name="peachpuff">#FFDAB9</color>
+ <color name="peru">#CD853F</color>
+ <color name="pink">#FFC0CB</color>
+ <color name="plum">#DDA0DD</color>
+ <color name="powderblue">#B0E0E6</color>
+ <color name="purple">#800080</color>
+ <color name="red">#FF0000</color>
+ <color name="rosybrown">#BC8F8F</color>
+ <color name="royalblue">#4169E1</color>
+ <color name="saddlebrown">#8B4513</color>
+ <color name="salmon">#FA8072</color>
+ <color name="sandybrown">#F4A460</color>
+ <color name="seagreen">#2E8B57</color>
+ <color name="seashell">#FFF5EE</color>
+ <color name="sienna">#A0522D</color>
+ <color name="silver">#C0C0C0</color>
+ <color name="skyblue">#87CEEB</color>
+ <color name="slateblue">#6A5ACD</color>
+ <color name="slategray">#708090</color>
+ <color name="snow">#FFFAFA</color>
+ <color name="springgreen">#00FF7F</color>
+ <color name="steelblue">#4682B4</color>
+ <color name="tan">#D2B48C</color>
+ <color name="teal">#008080</color>
+ <color name="thistle">#D8BFD8</color>
+ <color name="tomato">#FF6347</color>
+ <color name="turquoise">#40E0D0</color>
+ <color name="violet">#EE82EE</color>
+ <color name="wheat">#F5DEB3</color>
+ <color name="white">#FFFFFF</color>
+ <color name="whitesmoke">#F5F5F5</color>
+ <color name="yellow">#FFFF00</color>
+ <color name="yellowgreen">#9ACD32</color>
+</resources>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
new file mode 100644
index 0000000..408d25f
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/res"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/res"><file path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/res/values/colors.xml" qualifiers=""><color name="white">#FFFFFF</color><color name="ivory">#FFFFF0</color><color name="lightyellow">#FFFFE0</color><color name="yellow">#FFFF00</color><color name="snow">#FFFAFA</color><color name="floralwhite">#FFFAF0</color><color name="lemonchiffon">#FFFACD</color><color name="cornsilk">#FFF8DC</color><color name="seashell">#FFF5EE</color><color name="lavenderblush">#FFF0F5</color><color name="papayawhip">#FFEFD5</color><color name="blanchedalmond">#FFEBCD</color><color name="mistyrose">#FFE4E1</color><color name="bisque">#FFE4C4</color><color name="moccasin">#FFE4B5</color><color name="navajowhite">#FFDEAD</color><color name="peachpuff">#FFDAB9</color><color name="gold">#FFD700</color><color name="pink">#FFC0CB</color><color name="lightpink">#FFB6C1</color><color name="orange">#FFA500</color><color name="lightsalmon">#FFA07A</color><color name="darkorange">#FF8C00</color><color name="coral">#FF7F50</color><color name="hotpink">#FF69B4</color><color name="tomato">#FF6347</color><color name="orangered">#FF4500</color><color name="deeppink">#FF1493</color><color name="fuchsia">#FF00FF</color><color name="magenta">#FF00FF</color><color name="red">#FF0000</color><color name="oldlace">#FDF5E6</color><color name="lightgoldenrodyellow">#FAFAD2</color><color name="linen">#FAF0E6</color><color name="antiquewhite">#FAEBD7</color><color name="salmon">#FA8072</color><color name="ghostwhite">#F8F8FF</color><color name="mintcream">#F5FFFA</color><color name="whitesmoke">#F5F5F5</color><color name="beige">#F5F5DC</color><color name="wheat">#F5DEB3</color><color name="sandybrown">#F4A460</color><color name="azure">#F0FFFF</color><color name="honeydew">#F0FFF0</color><color name="aliceblue">#F0F8FF</color><color name="khaki">#F0E68C</color><color name="lightcoral">#F08080</color><color name="palegoldenrod">#EEE8AA</color><color name="violet">#EE82EE</color><color name="darksalmon">#E9967A</color><color name="lavender">#E6E6FA</color><color name="lightcyan">#E0FFFF</color><color name="burlywood">#DEB887</color><color name="plum">#DDA0DD</color><color name="gainsboro">#DCDCDC</color><color name="crimson">#DC143C</color><color name="palevioletred">#DB7093</color><color name="goldenrod">#DAA520</color><color name="orchid">#DA70D6</color><color name="thistle">#D8BFD8</color><color name="lightgrey">#D3D3D3</color><color name="tan">#D2B48C</color><color name="chocolate">#D2691E</color><color name="peru">#CD853F</color><color name="indianred">#CD5C5C</color><color name="mediumvioletred">#C71585</color><color name="silver">#C0C0C0</color><color name="darkkhaki">#BDB76B</color><color name="rosybrown">#BC8F8F</color><color name="mediumorchid">#BA55D3</color><color name="darkgoldenrod">#B8860B</color><color name="firebrick">#B22222</color><color name="powderblue">#B0E0E6</color><color name="lightsteelblue">#B0C4DE</color><color name="paleturquoise">#AFEEEE</color><color name="greenyellow">#ADFF2F</color><color name="lightblue">#ADD8E6</color><color name="darkgray">#A9A9A9</color><color name="brown">#A52A2A</color><color name="sienna">#A0522D</color><color name="yellowgreen">#9ACD32</color><color name="darkorchid">#9932CC</color><color name="palegreen">#98FB98</color><color name="darkviolet">#9400D3</color><color name="mediumpurple">#9370DB</color><color name="lightgreen">#90EE90</color><color name="darkseagreen">#8FBC8F</color><color name="saddlebrown">#8B4513</color><color name="darkmagenta">#8B008B</color><color name="darkred">#8B0000</color><color name="blueviolet">#8A2BE2</color><color name="lightskyblue">#87CEFA</color><color name="skyblue">#87CEEB</color><color name="gray">#808080</color><color name="olive">#808000</color><color name="purple">#800080</color><color name="maroon">#800000</color><color name="aquamarine">#7FFFD4</color><color name="chartreuse">#7FFF00</color><color name="lawngreen">#7CFC00</color><color name="mediumslateblue">#7B68EE</color><color name="lightslategray">#778899</color><color name="slategray">#708090</color><color name="olivedrab">#6B8E23</color><color name="slateblue">#6A5ACD</color><color name="dimgray">#696969</color><color name="mediumaquamarine">#66CDAA</color><color name="cornflowerblue">#6495ED</color><color name="cadetblue">#5F9EA0</color><color name="darkolivegreen">#556B2F</color><color name="indigo">#4B0082</color><color name="mediumturquoise">#48D1CC</color><color name="darkslateblue">#483D8B</color><color name="steelblue">#4682B4</color><color name="royalblue">#4169E1</color><color name="turquoise">#40E0D0</color><color name="mediumseagreen">#3CB371</color><color name="limegreen">#32CD32</color><color name="darkslategray">#2F4F4F</color><color name="seagreen">#2E8B57</color><color name="forestgreen">#228B22</color><color name="lightseagreen">#20B2AA</color><color name="dodgerblue">#1E90FF</color><color name="midnightblue">#191970</color><color name="aqua">#00FFFF</color><color name="cyan">#00FFFF</color><color name="springgreen">#00FF7F</color><color name="lime">#00FF00</color><color name="mediumspringgreen">#00FA9A</color><color name="darkturquoise">#00CED1</color><color name="deepskyblue">#00BFFF</color><color name="darkcyan">#008B8B</color><color name="teal">#008080</color><color name="green">#008000</color><color name="darkgreen">#006400</color><color name="blue">#0000FF</color><color name="mediumblue">#0000CD</color><color name="darkblue">#00008B</color><color name="navy">#000080</color><color name="black">#000000</color></file></source><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"/><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"/><mergedItems/></merger>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 0000000..456a7b8
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/debug/jniLibs"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..5fc0ed2
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/debug/shaders"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/packageDebugAssets/merger.xml
new file mode 100644
index 0000000..8bc55fa
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/incremental/packageDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/assets"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/build/intermediates/shader_assets/debug/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/debug/assets"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/@react-native-firebase/messaging/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
new file mode 100644
index 0000000..34d21d0
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
@@ -0,0 +1,142 @@
+R_DEF: Internal format may change without notice
+local
+color aliceblue
+color antiquewhite
+color aqua
+color aquamarine
+color azure
+color beige
+color bisque
+color black
+color blanchedalmond
+color blue
+color blueviolet
+color brown
+color burlywood
+color cadetblue
+color chartreuse
+color chocolate
+color coral
+color cornflowerblue
+color cornsilk
+color crimson
+color cyan
+color darkblue
+color darkcyan
+color darkgoldenrod
+color darkgray
+color darkgreen
+color darkkhaki
+color darkmagenta
+color darkolivegreen
+color darkorange
+color darkorchid
+color darkred
+color darksalmon
+color darkseagreen
+color darkslateblue
+color darkslategray
+color darkturquoise
+color darkviolet
+color deeppink
+color deepskyblue
+color dimgray
+color dodgerblue
+color firebrick
+color floralwhite
+color forestgreen
+color fuchsia
+color gainsboro
+color ghostwhite
+color gold
+color goldenrod
+color gray
+color green
+color greenyellow
+color honeydew
+color hotpink
+color indianred
+color indigo
+color ivory
+color khaki
+color lavender
+color lavenderblush
+color lawngreen
+color lemonchiffon
+color lightblue
+color lightcoral
+color lightcyan
+color lightgoldenrodyellow
+color lightgreen
+color lightgrey
+color lightpink
+color lightsalmon
+color lightseagreen
+color lightskyblue
+color lightslategray
+color lightsteelblue
+color lightyellow
+color lime
+color limegreen
+color linen
+color magenta
+color maroon
+color mediumaquamarine
+color mediumblue
+color mediumorchid
+color mediumpurple
+color mediumseagreen
+color mediumslateblue
+color mediumspringgreen
+color mediumturquoise
+color mediumvioletred
+color midnightblue
+color mintcream
+color mistyrose
+color moccasin
+color navajowhite
+color navy
+color oldlace
+color olive
+color olivedrab
+color orange
+color orangered
+color orchid
+color palegoldenrod
+color palegreen
+color paleturquoise
+color palevioletred
+color papayawhip
+color peachpuff
+color peru
+color pink
+color plum
+color powderblue
+color purple
+color red
+color rosybrown
+color royalblue
+color saddlebrown
+color salmon
+color sandybrown
+color seagreen
+color seashell
+color sienna
+color silver
+color skyblue
+color slateblue
+color slategray
+color snow
+color springgreen
+color steelblue
+color tan
+color teal
+color thistle
+color tomato
+color turquoise
+color violet
+color wheat
+color white
+color whitesmoke
+color yellow
+color yellowgreen
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/@react-native-firebase/messaging/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
new file mode 100644
index 0000000..a9f755e
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
@@ -0,0 +1,76 @@
+1<?xml version="1.0" encoding="utf-8"?>
+2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+3 package="io.invertase.firebase.messaging" >
+4
+5 <uses-sdk
+6 android:minSdkVersion="21"
+6-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+7 android:targetSdkVersion="34" />
+7-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+8
+9 <uses-permission android:name="android.permission.INTERNET" />
+9-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:5:3-64
+9-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:5:20-62
+10 <uses-permission android:name="android.permission.WAKE_LOCK" />
+10-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:6:3-65
+10-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:6:20-63
+11 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+11-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:7:3-76
+11-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:7:20-74
+12
+13 <application>
+13-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:9:3-36:17
+14 <service
+14-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:10:5-11:42
+15 android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingHeadlessService"
+15-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:10:14-73
+16 android:exported="false" />
+16-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:11:15-39
+17 <service
+17-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:12:5-17:15
+18 android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingService"
+18-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:12:14-65
+19 android:exported="false" >
+19-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:13:14-38
+20 <intent-filter>
+20-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:14:7-16:23
+21 <action android:name="com.google.firebase.MESSAGING_EVENT" />
+21-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:15:9-69
+21-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:15:17-67
+22 </intent-filter>
+23 </service>
+24
+25 <receiver
+25-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:18:5-25:16
+26 android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingReceiver"
+26-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:19:7-59
+27 android:exported="true"
+27-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:20:7-30
+28 android:permission="com.google.android.c2dm.permission.SEND" >
+28-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:21:7-67
+29 <intent-filter>
+29-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:22:7-24:23
+30 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
+30-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:23:9-73
+30-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:23:17-70
+31 </intent-filter>
+32 </receiver>
+33
+34 <meta-data
+35 android:name="firebase_messaging_auto_init_enabled"
+35-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:28:7-58
+36 android:value="true" />
+36-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:29:7-53
+37 <meta-data
+38 android:name="com.google.firebase.messaging.default_notification_channel_id"
+38-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:31:7-83
+39 android:value="" />
+39-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:32:7-59
+40 <meta-data
+41 android:name="com.google.firebase.messaging.default_notification_color"
+41-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:34:7-78
+42 android:resource="@color/white" />
+42-->/Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:35:7-58
+43 </application>
+44
+45</manifest>
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_java_res/debug/feature-react-native-firebase_messaging.jar b/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_java_res/debug/feature-react-native-firebase_messaging.jar
new file mode 100644
index 0000000..15cb0ec
Binary files /dev/null and b/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_java_res/debug/feature-react-native-firebase_messaging.jar differ
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
new file mode 100644
index 0000000..42b7356
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="io.invertase.firebase.messaging" >
+
+ <uses-sdk
+ android:minSdkVersion="21"
+ android:targetSdkVersion="34" />
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+
+ <application>
+ <service
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingHeadlessService"
+ android:exported="false" />
+ <service
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingService"
+ android:exported="false" >
+ <intent-filter>
+ <action android:name="com.google.firebase.MESSAGING_EVENT" />
+ </intent-filter>
+ </service>
+
+ <receiver
+ android:name="io.invertase.firebase.messaging.ReactNativeFirebaseMessagingReceiver"
+ android:exported="true"
+ android:permission="com.google.android.c2dm.permission.SEND" >
+ <intent-filter>
+ <action android:name="com.google.android.c2dm.intent.RECEIVE" />
+ </intent-filter>
+ </receiver>
+
+ <meta-data
+ android:name="firebase_messaging_auto_init_enabled"
+ android:value="true" />
+ <meta-data
+ android:name="com.google.firebase.messaging.default_notification_channel_id"
+ android:value="" />
+ <meta-data
+ android:name="com.google.firebase.messaging.default_notification_color"
+ android:resource="@color/white" />
+ </application>
+
+</manifest>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/navigation_json/debug/navigation.json b/node_modules/@react-native-firebase/messaging/android/build/intermediates/navigation_json/debug/navigation.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/navigation_json/debug/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_manifests/debug/output-metadata.json b/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_manifests/debug/output-metadata.json
new file mode 100644
index 0000000..70de5fb
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_manifests/debug/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "io.invertase.firebase.messaging",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "../../merged_manifest/debug/AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_res/debug/values/values.xml b/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_res/debug/values/values.xml
new file mode 100644
index 0000000..711c9ae
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/intermediates/packaged_res/debug/values/values.xml
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="aliceblue">#F0F8FF</color>
+ <color name="antiquewhite">#FAEBD7</color>
+ <color name="aqua">#00FFFF</color>
+ <color name="aquamarine">#7FFFD4</color>
+ <color name="azure">#F0FFFF</color>
+ <color name="beige">#F5F5DC</color>
+ <color name="bisque">#FFE4C4</color>
+ <color name="black">#000000</color>
+ <color name="blanchedalmond">#FFEBCD</color>
+ <color name="blue">#0000FF</color>
+ <color name="blueviolet">#8A2BE2</color>
+ <color name="brown">#A52A2A</color>
+ <color name="burlywood">#DEB887</color>
+ <color name="cadetblue">#5F9EA0</color>
+ <color name="chartreuse">#7FFF00</color>
+ <color name="chocolate">#D2691E</color>
+ <color name="coral">#FF7F50</color>
+ <color name="cornflowerblue">#6495ED</color>
+ <color name="cornsilk">#FFF8DC</color>
+ <color name="crimson">#DC143C</color>
+ <color name="cyan">#00FFFF</color>
+ <color name="darkblue">#00008B</color>
+ <color name="darkcyan">#008B8B</color>
+ <color name="darkgoldenrod">#B8860B</color>
+ <color name="darkgray">#A9A9A9</color>
+ <color name="darkgreen">#006400</color>
+ <color name="darkkhaki">#BDB76B</color>
+ <color name="darkmagenta">#8B008B</color>
+ <color name="darkolivegreen">#556B2F</color>
+ <color name="darkorange">#FF8C00</color>
+ <color name="darkorchid">#9932CC</color>
+ <color name="darkred">#8B0000</color>
+ <color name="darksalmon">#E9967A</color>
+ <color name="darkseagreen">#8FBC8F</color>
+ <color name="darkslateblue">#483D8B</color>
+ <color name="darkslategray">#2F4F4F</color>
+ <color name="darkturquoise">#00CED1</color>
+ <color name="darkviolet">#9400D3</color>
+ <color name="deeppink">#FF1493</color>
+ <color name="deepskyblue">#00BFFF</color>
+ <color name="dimgray">#696969</color>
+ <color name="dodgerblue">#1E90FF</color>
+ <color name="firebrick">#B22222</color>
+ <color name="floralwhite">#FFFAF0</color>
+ <color name="forestgreen">#228B22</color>
+ <color name="fuchsia">#FF00FF</color>
+ <color name="gainsboro">#DCDCDC</color>
+ <color name="ghostwhite">#F8F8FF</color>
+ <color name="gold">#FFD700</color>
+ <color name="goldenrod">#DAA520</color>
+ <color name="gray">#808080</color>
+ <color name="green">#008000</color>
+ <color name="greenyellow">#ADFF2F</color>
+ <color name="honeydew">#F0FFF0</color>
+ <color name="hotpink">#FF69B4</color>
+ <color name="indianred">#CD5C5C</color>
+ <color name="indigo">#4B0082</color>
+ <color name="ivory">#FFFFF0</color>
+ <color name="khaki">#F0E68C</color>
+ <color name="lavender">#E6E6FA</color>
+ <color name="lavenderblush">#FFF0F5</color>
+ <color name="lawngreen">#7CFC00</color>
+ <color name="lemonchiffon">#FFFACD</color>
+ <color name="lightblue">#ADD8E6</color>
+ <color name="lightcoral">#F08080</color>
+ <color name="lightcyan">#E0FFFF</color>
+ <color name="lightgoldenrodyellow">#FAFAD2</color>
+ <color name="lightgreen">#90EE90</color>
+ <color name="lightgrey">#D3D3D3</color>
+ <color name="lightpink">#FFB6C1</color>
+ <color name="lightsalmon">#FFA07A</color>
+ <color name="lightseagreen">#20B2AA</color>
+ <color name="lightskyblue">#87CEFA</color>
+ <color name="lightslategray">#778899</color>
+ <color name="lightsteelblue">#B0C4DE</color>
+ <color name="lightyellow">#FFFFE0</color>
+ <color name="lime">#00FF00</color>
+ <color name="limegreen">#32CD32</color>
+ <color name="linen">#FAF0E6</color>
+ <color name="magenta">#FF00FF</color>
+ <color name="maroon">#800000</color>
+ <color name="mediumaquamarine">#66CDAA</color>
+ <color name="mediumblue">#0000CD</color>
+ <color name="mediumorchid">#BA55D3</color>
+ <color name="mediumpurple">#9370DB</color>
+ <color name="mediumseagreen">#3CB371</color>
+ <color name="mediumslateblue">#7B68EE</color>
+ <color name="mediumspringgreen">#00FA9A</color>
+ <color name="mediumturquoise">#48D1CC</color>
+ <color name="mediumvioletred">#C71585</color>
+ <color name="midnightblue">#191970</color>
+ <color name="mintcream">#F5FFFA</color>
+ <color name="mistyrose">#FFE4E1</color>
+ <color name="moccasin">#FFE4B5</color>
+ <color name="navajowhite">#FFDEAD</color>
+ <color name="navy">#000080</color>
+ <color name="oldlace">#FDF5E6</color>
+ <color name="olive">#808000</color>
+ <color name="olivedrab">#6B8E23</color>
+ <color name="orange">#FFA500</color>
+ <color name="orangered">#FF4500</color>
+ <color name="orchid">#DA70D6</color>
+ <color name="palegoldenrod">#EEE8AA</color>
+ <color name="palegreen">#98FB98</color>
+ <color name="paleturquoise">#AFEEEE</color>
+ <color name="palevioletred">#DB7093</color>
+ <color name="papayawhip">#FFEFD5</color>
+ <color name="peachpuff">#FFDAB9</color>
+ <color name="peru">#CD853F</color>
+ <color name="pink">#FFC0CB</color>
+ <color name="plum">#DDA0DD</color>
+ <color name="powderblue">#B0E0E6</color>
+ <color name="purple">#800080</color>
+ <color name="red">#FF0000</color>
+ <color name="rosybrown">#BC8F8F</color>
+ <color name="royalblue">#4169E1</color>
+ <color name="saddlebrown">#8B4513</color>
+ <color name="salmon">#FA8072</color>
+ <color name="sandybrown">#F4A460</color>
+ <color name="seagreen">#2E8B57</color>
+ <color name="seashell">#FFF5EE</color>
+ <color name="sienna">#A0522D</color>
+ <color name="silver">#C0C0C0</color>
+ <color name="skyblue">#87CEEB</color>
+ <color name="slateblue">#6A5ACD</color>
+ <color name="slategray">#708090</color>
+ <color name="snow">#FFFAFA</color>
+ <color name="springgreen">#00FF7F</color>
+ <color name="steelblue">#4682B4</color>
+ <color name="tan">#D2B48C</color>
+ <color name="teal">#008080</color>
+ <color name="thistle">#D8BFD8</color>
+ <color name="tomato">#FF6347</color>
+ <color name="turquoise">#40E0D0</color>
+ <color name="violet">#EE82EE</color>
+ <color name="wheat">#F5DEB3</color>
+ <color name="white">#FFFFFF</color>
+ <color name="whitesmoke">#F5F5F5</color>
+ <color name="yellow">#FFFF00</color>
+ <color name="yellowgreen">#9ACD32</color>
+</resources>
\ No newline at end of file
diff --git a/node_modules/@react-native-firebase/messaging/android/build/intermediates/variant_model/debug/out b/node_modules/@react-native-firebase/messaging/android/build/intermediates/variant_model/debug/out
new file mode 100644
index 0000000..3c77a9c
Binary files /dev/null and b/node_modules/@react-native-firebase/messaging/android/build/intermediates/variant_model/debug/out differ
diff --git a/node_modules/@react-native-firebase/messaging/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@react-native-firebase/messaging/android/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 0000000..8665413
--- /dev/null
+++ b/node_modules/@react-native-firebase/messaging/android/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,92 @@
+-- Merging decision tree log ---
+meta-data#firebase_messaging_auto_init_enabled
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:27:5-29:55
+ android:value
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:29:7-53
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:28:7-58
+meta-data#com.google.firebase.messaging.default_notification_channel_id
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:30:5-32:62
+ android:value
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:32:7-59
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:31:7-83
+meta-data#com.google.firebase.messaging.default_notification_color
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:33:5-35:61
+ android:resource
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:35:7-58
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:34:7-78
+manifest
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:2:1-37:12
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:2:1-37:12
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:2:1-37:12
+ package
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:3:11-52
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:2:11-69
+uses-permission#android.permission.INTERNET
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:5:3-64
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:5:20-62
+uses-permission#android.permission.WAKE_LOCK
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:6:3-65
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:6:20-63
+uses-permission#android.permission.ACCESS_NETWORK_STATE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:7:3-76
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:7:20-74
+application
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:9:3-36:17
+service#io.invertase.firebase.messaging.ReactNativeFirebaseMessagingHeadlessService
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:10:5-11:42
+ android:exported
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:11:15-39
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:10:14-73
+service#io.invertase.firebase.messaging.ReactNativeFirebaseMessagingService
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:12:5-17:15
+ android:exported
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:13:14-38
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:12:14-65
+intent-filter#action:name:com.google.firebase.MESSAGING_EVENT
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:14:7-16:23
+action#com.google.firebase.MESSAGING_EVENT
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:15:9-69
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:15:17-67
+receiver#io.invertase.firebase.messaging.ReactNativeFirebaseMessagingReceiver
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:18:5-25:16
+ android:exported
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:20:7-30
+ android:permission
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:21:7-67
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:19:7-59
+intent-filter#action:name:com.google.android.c2dm.intent.RECEIVE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:22:7-24:23
+action#com.google.android.c2dm.intent.RECEIVE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:23:9-73
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml:23:17-70
+uses-sdk
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/@react-native-firebase/messaging/android/src/main/AndroidManifest.xml