Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 5892f64

Browse files
committed
Update README
1 parent c186f51 commit 5892f64

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

demo/app/main-view-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,7 @@ export class HelloWorldModel extends Observable {
18961896
}
18971897

18981898
public doLogMessageCrashlytics(): void {
1899-
firebaseCrashlytics.log(1, "TAG", "Tag message");
1899+
firebaseCrashlytics.log("Tag message", "TAG", 1);
19001900
if (isAndroid) {
19011901
firebaseCrashlytics.sendCrashLog(new java.lang.Exception("test Exception"));
19021902
} else if (isIOS) {

src/platforms/ios_lib/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ TNSCrashlyticsLogger: Using this wrapper because CLS_LOG macro is not accessible
1717
- Right-click the file in the Products folder and open in Finder.
1818
- In a Terminal `cd` to that folder, move up to the `Products` folder.
1919
- Run `lipo -create -output "TNSCrashlyticsLogger" "Debug-iphonesimulator/TNSCrashlyticsLogger.framework/TNSCrashlyticsLogger" "Debug-iphoneos/TNSCrashlyticsLogger.framework/TNSCrashlyticsLogger"`.
20-
- Use the resulting `TNSCrashlyticsLogger` file instead of the one generated inside any of the targets.
20+
- Use the resulting `TNSCrashlyticsLogger` file instead of the one generated inside any of the targets.
21+
- Troubleshoot: In case you get `ld: framework not found Pods_TNSCrashlyticsLogger` when building in xcode, select `TNSCrashlyticsLogger` target then go to `Build Phases` -> `Link Binary With Libraries` and remove `Pods_TNSCrashlyticsLogger`

0 commit comments

Comments
 (0)