On Mar 1, 2013, at 5:23 AM, m3rb1n <[email protected]> wrote: > --- End of managed exception stack trace --- > java.lang.NoClassDefFoundError: > com/zebra/android/discovery/BluetoothDiscoverer
You're getting an error because the type com.zebra.android.discovery.BluetoothDiscoverer cannot be found. Where is this type supposed to be located? Is this a .jar that's supposed to be present on your target device, like Google Maps? If so, you'll need a <uses-library/> in your AndroidManifest.xml. Is this a .jar that's supposed to be included with your app? Then you need to add the .jar to your project with a Build action of AndroidJavaLibrary. - Jon _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
