Install_failed_missing_shared_library Without Google Api
Okay, I've been browsing but all I end up with is the api from google. I'm not using any api from google in my application.. I'm writing an application that uses an the sqlite brow
Solution 1:
Your project is requesting a firmware library:
<uses-libraryandroid:name="com.symbol.emdk" />
The device or emulator you are testing your app on does not contain this library.
Your choices are:
Remove this library, if you are not actually using it
Only test your app on devices that have this library
Add
android:required="false"
to the<uses-library>
element and detect at runtime if you have access to the library, probably by callingClass.forName()
on some Java class that should be in the library
Post a Comment for "Install_failed_missing_shared_library Without Google Api"