I am trying to deploy my application on Kindle fire, but getting Error: /Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]
at MonoDroid.Adb.Install(Device device, String package, Boolean external, Boolean force) at Novell.MonoDroidVS.DeploymentTasks.Install(Device device, MonoDroidFlavorProject project, String packageFile, String packageName, Boolean force, Boolean external, CancellationToken token)/ I know that this problem is because I am using Google maps in the app, and Kindle fire does not have this library. In Java there is a solution: add to manifest <uses-library android:name="com.google.android.maps" android:required="false"/> and use this code to handle gracefully if this library missing /try { Class.forName("com.google.android.maps.MapActivity"); // if you get here, you have Google Maps, so you can safely start a MapActivity } catch (Exception e) { // if you get here, you do not have Google Maps }/ I've tried this in monodroid, but it doesn't work, I am getting the same error. May be I am doing something wrong or why this solution is not working? In the topic "dynamically target Kindle Fire from same project" the same problem is discussed, but is really creating two projects the only solution? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Google-maps-and-Kindle-fire-on-monodroid-tp5606237p5606237.html Sent from the Mono for Android mailing list archive at Nabble.com. _______________________________________________ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid