crashlytics

crashlytics android studio gradle build failed

余生颓废 提交于 2019-12-20 10:33:58
问题 I have installed crashlytics plugin to android studio 0.9.3; after this I added to my project; It added lines to gradle, first activity and so on...; after this build fails with this error: Error:Execution failed for task ':app:fabricCleanupResourcesDebug'. Crashlytics Developer Tools error. Here is my gradle file, what should I change ? Crashlytics added it's lines automatically: buildscript { repositories { maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'io.fabric

Crashlytics distribution for app with multiple flavors

喜你入骨 提交于 2019-12-20 10:24:53
问题 I'm trying to use crashlytics distribution for android app with multiple flavors. Everything worked fine when there were no flavors, but as soon as I've added two flavors I'm receiving *'Task 'crashlyticsUploadDistributionRelease' not found in root project'* Am I missing something? 回答1: Ohh, I did miss something.. Don't forget to add your flavor name to: crashlyticsUploadDistribution<FLAVOR>Release 来源: https://stackoverflow.com/questions/27383732/crashlytics-distribution-for-app-with-multiple

No repository found in Crashlytics install for eclipse

ε祈祈猫儿з 提交于 2019-12-20 10:19:29
问题 I'm trying to install the Crashlytics SDK into my Eclipse but I'm getting the following error: 'Installing Software' has encountered a problem. An error ocurred while collecting items to be installed An error occurred while collecting items to be installed session context was:(profile=profile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing: osgi.bundle,com.android.ide.eclipse.adt,22.0.1.v201305230001--685705 No repository found

iOS Error loading your issues in Firebase Crashlytics dashboard

与世无争的帅哥 提交于 2019-12-20 05:49:21
问题 Firebase Crashlytics dashboard error In my Firebase Crashlytics console, I can not see my crash reports. It is saying Error loading.See the above picture for details. My Podfile: platform :ios, '9.0' target 'myproject' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! pod 'DatePickerDialog' pod 'Firebase/Core' pod 'Firebase/Messaging' pod 'SQLite.swift', '~> 0.11.5' pod 'SwiftyJSON', '~> 4.1.0' pod 'nanopb' pod 'Fabric', '~> 1.7.11'

Build error after migrating from Crashlytics SDK to Fabric

和自甴很熟 提交于 2019-12-19 15:27:48
问题 Recently, we've upgraded our organization's Crashlytics account to Fabric, and I'm trying to replace the old Crashlytics SDK with the new Fabric SDK in our existing apps. I've followed the migration instructions, and it's been largely painless, except that I'm now receiving a build error when I try to compile. The line in question that's causing the error is the bootstrap call: Fabric.with(this, new Crashlytics()); The error that's being returned is: Error:(55, 11) error: no suitable method

“[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

Crashlytics iOS - Crash at line 0 - Swift sources

☆樱花仙子☆ 提交于 2019-12-19 06:59:33
问题 I'm currently facing a problem with some Swift source files when a crash occurs. Indeed, on Crashlytics I have a weird info about the line and the reason of the crash. It tells me the source has crashed at the line 0 and it gives me a SIGTRAP error. I read that this error occurs when a Thread hits a BreakPoint. But the problem is that this error occurs while I'm not debugging (application test from TestFlight). Here is an example when Crashlytics tells me there's a SIGTRAP Error at line 0 : /

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

Automatic Beta Releases with crashlytics

天大地大妈咪最大 提交于 2019-12-18 18:09:42
问题 My android application has a Library which includes 'crashlytics.start()'. I have only set Crashlytics.jar as a dependency for the Library project. Builds are successful. I have multiple flavors configured in app> build.gradle file as well. Given that one of my builds flavors are called "production", I have the following configuration in my app> build.gradle file buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.13+' } } apply plugin:

Automatic Beta Releases with crashlytics

只谈情不闲聊 提交于 2019-12-18 18:09:00
问题 My android application has a Library which includes 'crashlytics.start()'. I have only set Crashlytics.jar as a dependency for the Library project. Builds are successful. I have multiple flavors configured in app> build.gradle file as well. Given that one of my builds flavors are called "production", I have the following configuration in my app> build.gradle file buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.13+' } } apply plugin: