diff --git a/plugin.xml b/plugin.xml
index 667ad2753..613e5a52c 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -31,6 +31,9 @@ xmlns:android="http://schemas.android.com/apk/res/android">
+
+
+
@@ -49,6 +52,7 @@ xmlns:android="http://schemas.android.com/apk/res/android">
+
diff --git a/scripts/after_prepare.js b/scripts/after_prepare.js
index ed0250bda..8e77bfadb 100755
--- a/scripts/after_prepare.js
+++ b/scripts/after_prepare.js
@@ -41,6 +41,7 @@ if (directoryExists("platforms/ios")) {
try {
var contents = fs.readFileSync(paths[i]).toString();
fs.writeFileSync("platforms/ios/" + name + "/Resources/GoogleService-Info.plist", contents)
+ fs.writeFileSync("platforms/ios/" + name + "/Resources/Resources/GoogleService-Info.plist", contents)
} catch(err) {
process.stdout.write(err);
}
diff --git a/src/android/FirebasePlugin.java b/src/android/FirebasePlugin.java
index a8867b13a..7e4431dfa 100755
--- a/src/android/FirebasePlugin.java
+++ b/src/android/FirebasePlugin.java
@@ -51,6 +51,7 @@ protected void pluginInitialize() {
public void run() {
Log.d(TAG, "Starting Firebase plugin");
mFirebaseAnalytics = FirebaseAnalytics.getInstance(context);
+ mFirebaseAnalytics.setAnalyticsCollectionEnabled(true);
if (extras != null && extras.size() > 1) {
if (FirebasePlugin.notificationStack == null) {
FirebasePlugin.notificationStack = new ArrayList();
diff --git a/src/android/colors.xml b/src/android/colors.xml
new file mode 100644
index 000000000..6f1665a52
--- /dev/null
+++ b/src/android/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #FFFFFF00
+ #FF220022
+ #FF00FFFF
+
\ No newline at end of file