Note: iOS module is working fine but the android module is still under construction, not ready for use at the moment.
Copy the folder ti.fabric to the plugins directory of your app. If it is a classic project you may have to create one.
Then replace the keys in ti.fabric/hooks/run.js
API_KEY = 'YOUR_API_KEY',
API_SECRET = 'YOUR_API_SECRET', OR
Send the keys as parameters for build command
###example
appc run --platform ios --fabric-key xxxx --fabric-secret xxx --log-level debug
Note: By default only production builds are uploaded to fabric dashboard, to make devlopment builds visible you may have to enable it by setting fabric-enabled flag to true
###example
appc run --platform ios --fabric-enabled true --fabric-key xxxx --fabric-secret xxx --log-level debug
<ios>
<plist>
<dict>
<key>Fabric</key>
<dict>
<key>APIKey</key>
<string>YOUR_API_KEY</string>
<key>Kits</key>
<array>
<dict>
<key>KitInfo</key>
<dict/>
<key>KitName</key>
<string>Crashlytics</string>
</dict>
</array>
</dict>
</dict>
</plist>
</ios>
....
....
....
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application>
<meta-data android:name="io.fabric.ApiKey" android:value="YOUR_API_KEY" />
</application>
</manifest>
</android>
....
....
....
<plugins>
<plugin version="1.0">ti.alloy</plugin>
<plugin>ti.fabric</plugin>
</plugins>
varOS_IOS=Ti.Platform.name=="iPhone OS";varwin=Ti.UI.createWindow({backgroundColor : "white"});win.open();varFabric=require("ti.fabric");//debug mode is false by defaultFabric.Crashlytics.setDebugMode(false);//returns true if initialization is successful (only on android)varinitated=Fabric.init();Ti.API.info("Fabric.Crashlytics.version : "+Fabric.Crashlytics.version);if(OS_IOS||initated){Fabric.Crashlytics.setUserIdentifier("tirocks");Fabric.Crashlytics.setUserName("titanium");Fabric.Crashlytics.setUserEmail("ti@appc.com");Fabric.Crashlytics.setInt("myInt",24);Fabric.Crashlytics.setBool("myBool",true);Fabric.Crashlytics.setFloat("myFloat",24.25);if(OS_IOS){Fabric.Crashlytics.setObject("myObj",{name : "Appcelerator",product : "Titanium"});}else{Fabric.Crashlytics.setString("myString","I'm only with android");Fabric.Crashlytics.setDouble("myDouble",92.2425);try{thrownewError("Log Handled Exception");}catch(error){Fabric.Crashlytics.logException(error);}}}else{Ti.API.error("Something wrong with your fabric configuration");}varbutton=Ti.UI.createButton({title : "Crash App"});button.addEventListener("click",function(e){if(OS_IOS||initated){if(!OS_IOS){Fabric.Crashlytics.leaveBreadcrumb({level : Fabric.Crashlytics.LOG_LEVEL_ERROR,tag : "Example",message : "only on android"});}Fabric.Crashlytics.leaveBreadcrumb("app is crashing now through crash method");Fabric.Crashlytics.crash();}});win.add(button);varlogSignupBtn=Ti.UI.createButton({title : “LogSignupEvent”});logSignupBtn.addEventListener("click",function(e){Fabric.Answers.logSignUpWithMethod({method:’signup-button’,success: true});});win.add(logSignupBtn);varlogPurchaseBtn=Ti.UI.createButton({title : “LogPurchaseEvent”});logPurchaseBtn.addEventListener("click",function(e){Fabric.Answers.logPurchaseWithPrice({‘itemPrice’: ’22.99’,‘currency’: ‘USD’,‘success’: true,‘itemName’: ‘AnswersShirt’,‘itemType’: ‘Apparel’,‘itemId’: ’sku-350’‘customAttributes’: {'demoName' : 'demoValue'}});});win.add(logPurchaseBtn);varlogCustomEventBtn=Ti.UI.createButton({title : “LogCustomEvent”});logCustomEventBtn.addEventListener("click",function(e){Fabric.Answers.logCustomEventWithName({‘name’: ’SomeCustomEventName’,‘customAttributes’: {‘customEvtName' : ‘customValue'}});});win.add(logCustomEventBtn);