android - Estimote SDK for Ecilipse -


i beginner estimote beacons tried convert estimote demo android studio project eclipse ide. i'm getting pretty close, i'm having trouble on library file. following estimote android sdk guide on github @ https://github.com/estimote/android-sdk.

i want create demo app estimote notification.

logcat error :

java.lang.noclassdeffounderror: com.estimote.sdk.estimotesdk 

this line indicate :

estimotesdk.initialize(this, "your app id", "your app token"); 

note :

in first time error in library file in importing aar file error not fixed rename .jar , extracted classes.jar file of link

help me wrong. can can acceptable

estimote's library project in .aar format. can't directly import , use on eclipse. need make library project extracting contents.

for doing so, you'll have following steps:

  • unzip aar directory.

  • create empty directory home android library project. rest of these steps, refer “the output directory”.

  • copy androidmanifest.xml, res/, , assets/ directories aar output directory.

  • create libs/ directory in output directory. copy libs/ classes.jar root of unzipped aar, plus in libs/ in aar (e.g., mediarouter-v7 has own jar of proprietary bits).

  • decide build sdk want try use. might choose highest sdk version have installed. or, can use android:minsdkversion , -vnn resource set qualifiers clues build sdk might be. if desired, create project.properties file target=android-nnn line, nnn chosen build sdk. or, can address in eclipse later on.

  • import resulting project eclipse, , if needed adjust build sdk (project > properties > android). also, need attach library project library projects depends upon (e.g., mediarouter-v7 depends upon appcompat-v7).

reference link: https://commonsware.com/blog/2014/07/03/consuming-aars-eclipse.html

so have done above steps, you'll have library project. can import eclipse workspace. , can use project.

i have made library project of estimote's .aar library same above mentioned steps. can repository: https://github.com/thelittlenaruto/estimote


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -