You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 4, 2023. It is now read-only.
If version numbers __changed__, clean your platform folders to avoid build errors.
11
+
Also, for Android update your Google Repository in the Android SDK manager (type `android` on the command prompt),
12
+
and for iOS do a `pod repo update` to fetch the latest versions from Cocoapods.
13
+
14
+
- iOS: 3.13.x
15
+
- Android: 10.2.x
16
+
17
+
### New
18
+
-[#307](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/307) Feature Request: Support crash log API
19
+
20
+
### Fixes
21
+
-[#272](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/272) Unusual error message when retrieving data set and binding to layout
22
+
-[#292](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/292) Nativescript app is not running with Firebase in IOS.
reject("Make sure 'Firebase/Crash' is in the plugin's Podfile - and if it is there's currently a problem with this Pod which is outside out span of control :(");
1752
+
return;
1753
+
}
1754
+
1755
+
if(!arg.message){
1756
+
reject("The mandatory 'message' argument is missing");
1757
+
return;
1758
+
}
1746
1759
1747
-
/*
1748
-
firebase.sendCrashLog = function (arg) {
1749
-
return new Promise(function (resolve, reject) {
1750
-
try {
1751
-
1752
-
if (typeof(FIRCrashLog) === "undefined") {
1753
-
reject("Make sure 'Firebase/Crash' is in the plugin's Podfile");
1754
-
return;
1755
-
}
1756
-
1757
-
if (!arg.log) {
1758
-
reject("The mandatory 'log' argument is missing");
1759
-
return;
1760
-
}
1761
-
1762
-
if (showInConsole) {
1763
-
FIRCrashNSLog(arg.log);
1764
-
} else {
1765
-
FIRCrashLog(arg.log);
1766
-
}
1767
-
1768
-
resolve();
1769
-
} catch (ex) {
1770
-
console.log("Error in firebase.sendCrashLog: " + ex);
1771
-
reject(ex);
1772
-
}
1773
-
});
1774
-
};
1775
-
*/
1760
+
if(arg.showInConsole){
1761
+
FIRCrashNSLog(arg.message);
1762
+
}else{
1763
+
FIRCrashLog(arg.message);
1764
+
}
1765
+
1766
+
resolve();
1767
+
}catch(ex){
1768
+
console.log("Error in firebase.sendCrashLog: "+ex);
0 commit comments