google-fabric

Fabric Plugin: Archive Packaging Error: -6 Error re-signing the application for distribution

血红的双手。 提交于 2019-12-20 10:22:56
问题 When I try to upload a new build using the Fabric Plugin I get the following error: Archive Packaging Error: -6 Error re-signing the application for distribution. /usr/bin/codesign --sign 937558639C8878BB6E161112505FA2965804A6AE --all-architectures --force --entitlements /var/folders/xf/l7r1f0m54mjbwd9c3myd88zw0000gn/T/com.crashlytics.ipas/A6C80578-CC0E-443D-B81C-C10E972E88F8/Payload/entitlements.xml /var/folders/xf/l7r1f0m54mjbwd9c3myd88zw0000gn/T/com.crashlytics.ipas/A6C80578-CC0E-443D-B81C

“[Crashlytics:Crash] Reporting is disabled”

守給你的承諾、 提交于 2019-12-19 07:56:01
问题 I am getting the following error messages when our production iOS app initializes: [Crashlytics] Version 3.8.4 (121) [Crashlytics] Running on iOS Simulator (iPhone), 10.3.0 (16E195) [Crashlytics:Crash] Reporting is disabled [Crashlytics] Crash reporting could not be initialized [Answers] Initialized [Fabric] Initialized with kit versions: { "com.twitter.answers.ios" = "1.3.4"; "com.twitter.crashlytics.ios" = "3.8.4"; "io.fabric.sdk.ios" = "1.6.11"; } Every subsequent call to log an event gets

Unity Fabric/Crashytics integration failure

不羁的心 提交于 2019-12-18 20:07:12
问题 I'm having trouble integrating the Fabric package into my unity project. After I've imported the latest package version 1.2.8. I can sign in to Fabric, select my organisation and select Crashlytics to be imported. This is where the crash occurs. The Crashlytics package is downloaded and on import completion it either crashes or if i'm lucky freezes on the Fabric window producing these errors: SynchronizationLockException: Object synchronization method was called from an unsynchronized block

Migrate Fabric's Crashlystic data to Firebase

女生的网名这么多〃 提交于 2019-12-18 07:00:43
问题 As the title, I need to migrate all existing data from Fabric's Crashlytics to Firebase. The problem here is after migrating, If I remove fabric key in AndroidManifest, My app can't push the crash report to firebase's Crashlytics anymore. But when I create Firebase's Crashlytics from the beginning (without Fabric migrate) They recommend me to remove existing Fabric key to make it work. Is it ok? 回答1: Mike from Fabric here. Yes, now is a good time to start linking and migrating to Firebase. 来源

Fabric won't let me link my Firebase app

依然范特西╮ 提交于 2019-12-18 04:08:01
问题 I have an app on my Firebase project that I'm trying to link to Fabric. When I go to Fabric -> Firebase -> Set up integration and select the app, it says "Already linked". But if I go to Firebase console -> Project settings -> Integrations -> Fabric, I don't see it linked there. I do see some other apps linked, but not the one that I'm trying to link right now. Any idea why this could be happening? If I had an old Firebase <-> Fabric link, I should at least see it here and be able to remove

ios beta distribution with Free account

血红的双手。 提交于 2019-12-14 03:43:07
问题 I have integrated Fabric Crashlytics sdk with my ios application, using the Fabric mac desktop app. I archive my application using the free apple developer account. I uploaded the application using Fabric desktop app. Setup with my email. open the email on my iPhone and setup the fabric Beta webhooks. But whenever i keep trying to download and install my application. it will ends with unable to download app dialog. 回答1: Mike from Fabric here. If you have a free Apple Developer account, you

Exception when using io.fabric.tools:gradle:1.27.1

走远了吗. 提交于 2019-12-13 03:38:08
问题 I am trying to integrate firebase crashlytics in my app. But I am getting an exteption "Expected file collection to contain exactly one file, however, it contains no files". However it works fine with io.fabric.tools:gradle:1.25.4 . Any idea? I am using gradle wrapper- 5.1.1 Root - build.gradle dependencies { classpath "com.android.tools.build:gradle:3.4.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50" classpath 'io.fabric.tools:gradle:1.27.1' classpath 'com.google.gms:google

How does fabric handle being offline?

元气小坏坏 提交于 2019-12-12 12:06:54
问题 I am interested in working with Fabric, how does the api work when not connected to the internet? I found that firebase (a similar tool to this one) will store the data locally, then do a batch update to the server. However, anything over 72 hours will not be recorded. 回答1: Mike from Fabric here. We log the data locally and then send it on relaunch of the app with an active network connection. Answers events older then a week will not be recorded, but crashes will be. 来源: https:/

Crashlytics(Android) clear log before next crash

会有一股神秘感。 提交于 2019-12-12 08:56:23
问题 I have a situation where I want to add some logs to Crashlystic for Android, but not always send it. Then before coming back to the same function I want to clear the log. For this I can't seem to find how to do this. Below is an illustration of the situation: public foo() { bar(); bar(); bar(); } public bar() { // Clear log here, but I don't know how ... // Add new log here. Crashlytics.log(1, "TAG", "log information"); Crashlytics.log(1, "TAG", "log information"); Crashlytics.log(1, "TAG",