Can't integrate crashlytics into eclipse using ADT

I followed the integration plugin setup crashlytics

from this link
https://www.crashlytics.com/onboard

From eclipse, I logged into my account and selected my project.

The plugin made the necessary changes to the manifest and launch.

He asked to build and run my application to complete step 1.

But I am getting -

../kit-libs/com-crashlytics-sdk-android_crashlytics/bin (missing)
../kit-libs/com-crashlytics-sdk-android_crashlytics-core/bin(missing)
../kit-libs/com-crashlytics -sdk-android_beta / bin (missing)
../kit-libs/com-crashlytics-sdk-android_answers/bin(missing)
../kit-libs/io-fabric-sdk-android_fabric/bin(missing)

Tell us how to build crashlytics

and integrate further.

+3


source to share


3 answers


There are 5 tissue libraries in your project in the "kit-libs" folder.

Right click the build.xml file in each library -> Run As -> Ant Build



He has to solve the problem.

+1


source


Even though @Pyngon is on the right track, I found that my run Ant configuration in Eclipse (Mars) did not know or pick up the ANDROID_HOME environment variable ( echo $ANDROID_HOME

confirms the SDK path as' /Users/my.name/Library/Android/sdk 'on my Mac, Yosemite 10.10.4).

In order to use Ant to use this variable, I had to define it in each individual run configuration, for example:



  • /your.project.path/platforms/android/kit-libs/io-fabric-sdk-android_fabric/build.xml -> Run As -> External tool configurations -> Environment (tab) -> Add new 'ANDROID_HOME "SDK path value.
+1


source


Fortunately, I was able to solve this problem using Eclipse. This is what I did. Set up the build path for the io-fabric-sdk-android_fabric project imported using the Fabric eclipse plugin.

Select a valid Android build target, in my case I selected Android 4.4.2. Click "OK" to apply.

You may need to repeat this for all imported Fabric projects. ie crashylitics, numbers, twitter, mopub etc

com-crashlytics-kdk-android_answers com-crashlytics-kdk-android_beta com-crashlytics-kdk-android_crashlytics com-crashlytics-kdk-android_crashlytics-vein com-figures-kdk-android_digits com-twitter-sdk-composer-tweet-twitter-com SDK-android_tweet-uh-com-twitter-SDK-android_twitter com-twitter-SDK-android_twitter-core

0


source







All Articles