You need to sign in to do that
Don't have an account?
Hybrid iOS app using mobile sdk 1.5 and barcode scanner
I'm creating a small barcode scanner app using the latest mobile sdk (based on cordova 2.3.0). Once I've dropped the .mm, .cpp and .h files into the Plugins directory, the build fails on the following line of the scanner code:
#import <Cordova/CDVPlugin.h>
saying that CDVPlugin can't be found. The only way that I've been able to get the Xcode compiler to be able to see this file is to copy it from the SalesforceHybridSDK.framework/Headers folder and drop it into the Plugins folder. The knock-on effects of this are that I have to copy most of the other header files across as well.
This works, but it feels wrong - I'm sure there's something obvious that I've missed.
Because Cordova is built into the hybrid SDK, you actually have to reference it with the SalesforceHybridSDK prefix. I.e.:
All Answers
Because Cordova is built into the hybrid SDK, you actually have to reference it with the SalesforceHybridSDK prefix. I.e.:
I knew it would be something simple, just beyond me :)
Have some kudos and a solution.
Thanks guys - Glad I found this post - I spent all day on this with a different plugin. What a pain. Some of the classes in the plugin needed adjustments as well to reference the right place.
Wish this was documented in the sdk docs.
i createds one Student object in that i have Firstname,username,password ,email so once student registered with xyz username when another student try to register with same username beforce clicking save button only need to check existed username
same as bellow link using apex vf and ajax please help on this
http://phpseason.wordpress.com/2013/02/17/live-username-availability-checking-using-ajax-and-jquery/