twitter-fabric

Disable “Answers” but not “Crashlytics”

拟墨画扇 提交于 2019-11-29 03:57:20
When installing "Crashlytics" in my Android App, it automatically installs "Answers". I only want to install "Crashlytics" and want to have "Answers" disabled. Does anyone know how to do that? build.gradle dependencies { compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') { transitive = true; } Thanks! Mike from Fabric and Crashlytics here. As you saw, Crashlytics by default includes Answers. If you don't want Answers enabled on your app, then you want to invoke CrashlyticsCore() when building your app instead of Crashlytics . For example, have these as your imports: import com

/Fabric.framework/run: Permission denied

血红的双手。 提交于 2019-11-29 02:55:16
问题 While running my App I am getting Path/Library/Developer/Xcode/DerivedData/app-hhrnpfyhpluwgwcdjsjkbeehwwqs/Build/Intermediates/app.build/Debug-iphoneos/app.build/Script-C0EDB4D81B6759AC0067631D.sh: line 2: ./Fabric.framework/run: Permission denied If any one faced the similar issue , please suggest me the way to fix this? I am running in Xcode 7.0 , iOS 9 I have this in my plist Any helps is appreciated! Edit :This solved my issue : Step:1: Sign up for Fabric Here Step:2: Follow the steps as

Fabric maven repo causes slow gradle builds

喜欢而已 提交于 2019-11-29 01:53:37
After upgrading from using the Crashlytics maven repo to the new Fabric maven repo and gradle plugin, my gradle builds have become incredibly slow. The problem seems to be caused by the Fabric maven repo returning a 401 unauthorized error whenever gradle tries to resolve a dependency: Failed to get resource: GET. [HTTP HTTP/1.1 401 Unauthorized: https://maven.fabric.io/repo/com/android/support/recyclerview-v7/maven-metadata.xml] Failed to get resource: GET. [HTTP HTTP/1.1 401 Unauthorized: https://maven.fabric.io/repo/com/android/support/appcompat-v7/maven-metadata.xml] Failed to get resource:

Fabric Crashlytics multiple environments for iOS app

不打扰是莪最后的温柔 提交于 2019-11-29 01:39:22
There is a Apps with Multiple Environments section in Fabric Crashlytics Advanced Setup that suggests to use a separate organization for each version. I have created 3 separate organizations per each Build configuration: MyApp MyApp (Debug) MyApp (AdHoc) I've got a conditional in my Run Script Build Phase that runs the Fabric framework script with different API Key s and Build Secret s and I can confirm that the conditional is being hit right, but I still do not get the API Keys updated in my plist (which I'm guessing Fabric uses). It seems like Fabric is sending my crashes to the last API key

React-Native ios App crashes without report

孤者浪人 提交于 2019-11-29 01:12:49
I'm building an iOS app using React Native and trying to get it testable on phones. If I plug my phone into the computer and "build" directly to the phone, the app is built correctly and opens/operates correctly, no problem. But if I try to archive it and send it to phones using iTunes Connect's TestFlight or Fabric with Crashlytics, the app crashes immediately upon opening. It briefly shows the launch screen, but no more. Moreover, there are no crash reports -- in TestFlight, in Crashlytics, or in XCode, once I plug the phone back in. So I'm operating in the dark here, without any information

How to initialize Crashlytics in Fabric.io?

萝らか妹 提交于 2019-11-28 21:03:22
Looking for some help. I just upgraded my android app to fabric and now the app gives an error on this line: Crashlytics.start(getApplicationContext()); Gradle: error: cannot find symbol method start(Context) I tried commenting out that line, but then the crashes are not getting logged. How do I initialize Crashlytics in the new fabric framework? Am I missing something? Thanks in advance for your help. Cipriani Since Crashlytics is now part of Fabric the initialization process has changed, but is still simple. Instead of using Crashlytics.start() you should now use, but in the Application

Crashlytics (Fabric) separate organizations for application variants (build types, product flavors)

时光总嘲笑我的痴心妄想 提交于 2019-11-28 18:42:21
问题 This is self-answered question to share my knowledge. I have a project with multiple product flavors and I want to integrate Fabric using separate organizations for each product flavor. I tried to integrate Fabric using Android Studio Fabric Plugin. It adds <meta-data android:name="io.fabric.ApiKey" android:value="DEFAULT_ORGANIZATION_API_KEY" /> entry to AndroidManifest.xml of main source set. I decided to rewrite this entry in application variant specific source sets: <manifest xmlns

Fabric release XCode 6.3 codesign xcode-select

坚强是说给别人听的谎言 提交于 2019-11-28 18:32:27
I'm trying to upload a release to Fabric & I'm getting errors as follows. I'm using the XCode 6.3 (recently updated). XCode: 6.3 Fabric: 1.1.3 OSX: 10.10.3 What should I do to resolve above error & continue uploading the release via fabric desktop tool? Is there any other way to upload binary to fabric? Mike Bonnell Mike from Fabric here. 1) To clear that error from Fabric.app: Quit Fabric.app, then run this command to clear the local cache: rm -rf ~/Library/Caches/com.crashlytics.mac You may also need to clear: rm -rf ~/Library/Caches/com.crashlytics rm -rf ~/Library/Caches/com.crashlytics

Integrate Fabric/Crashlytics via CocoaPods

巧了我就是萌 提交于 2019-11-28 17:20:58
问题 I try to integrate Fabric/Crashlytics via CocoaPods, my Podfile looks like this: pod 'Fabric/Core', '1.2' pod 'Fabric/Crashlytics', '1.2' But when I try to build my app, the build fails and I get a Shell Script Invocation Error that the run script isn't found: .../Script-F8D74CB61AB5D7A50013D134.sh: line 2: ./Fabric.framework/run: No such file or directory Is it possible to install Fabric only using CocoaPods? 回答1: Fabric now supports installation with CocoaPods: http://docs.fabric.io/ios

Make sure your project build settings are generating a dSYM file. DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations

老子叫甜甜 提交于 2019-11-28 15:09:17
I've recently started getting this error: 2015-03-23 11:35:48.902 run[60036:1047011] Crashlytics.framework/run 1.3.14 2015-03-23 11:35:48.911 run[60036:1047011] Crashlytics: dSYM Error Unable to process <your app>.app.dSYM at path /path/to/<your app>.app.dSYM Make sure your project build settings are generating a dSYM file. DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations. This could also be a timing issue, make sure the Crashlytics run script build phase is the last build phase and no other scripts have moved the dSYM from the location Xcode generated it.