I have made a mobile application using net-beans, now i want to add my code in that application but its not working, this is my first mobile application please help me out.
Related
I have an Aura component with Lightning:WorkspaceAPI written inside that.
As expected it's working fine in Lightning Experience, but not in Salesforce mobile app.
Is there any alternative we can make it working in mobile app as well ?
Please help me out on this.
I need to add the MQA feedback tool to an existing hybrid app being develop with IBM MobileFirst.
Here is what I have done and what I need to do.
Done:
Downloaded the MQA sdk for MobileFirst JavaScript Hybrid SDK MFPComponent-JS-3.0.13
Created a Bluemix account and a MQA app
added IOS platform
Added MQA as an application component using Eclipse (not sure if this is the correct way to do it)
Creted a UI with a feedback form (rate experience, subject, comments, include my id in my feedback, submit button)
In this UI I created a toggle for enabling "Shake to see this screen".
Need help to:
check if the MQA library was added correctly. How can I test it?
How can I make the submit button click event send the feedback data (UI form) to the MQA server? (any source code please?) I need to see the data in the MQA manager site.
Thanks in advance
You need to first follow the provided Getting Started tutorials, which will guide you through setting up the SDK and making sure that MQA is properly working in the application, including example code.
After that, once you get it working, you can come back with concrete questions on things that do not work.
See here: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-2/quality-assurance/native-ios/
I want to make an plugin like app in iphone for mobile web browser, in which i want to use safari (or any browser) current link and also link which is present on the web page, when i click on it my app should invoke for using targeted link.
I know plugins are not supported in mobile browser,
Can anybody have any solution without jailbreak?
Thanks in advance.
I have developed a web application project using Dashcode for iPhone.
It is running fine on iPhone simulator. Can anyone help me to deploy it on a iphone and test it ?
A webapp is basically an app that is HTML CSS and JS based and totally runs on a web browser of a mobile device.
I am calling the URL of my app from the safari browser and thus able to see it.
I came across this link:
http://ofps.oreilly.com/titles/9780596805784/
which seems to suggest web app can be converted to native iphone without writing a single line
of objective-c code. But the book mentioned there is outdated now and things may have changed a lot.
Are there open source software that will allow me to automatically convert my web application to native iphone ( or android) application? By the way my web application is html5 canvas based animation application with lot of html and css as well.
PhoneGap doesn't generate native code for you: it creates an application consisting of a WebView and throws your HTML code on it. From personal exerience I can add that the performance is quite slow, on both iPhone and Android, compared to a native app.
jqTouch creates a nice way to access your web application, but the application remains a web application residing on your site, plus you have to use some jquery for styling.
Apparently the only one that actually does generate native code is Appcelerator Titanium. On RhoMobile I never managed to get to the point to actually write some Ruby code because you have to know all the Ruby in he word just to install it on your Mac.
So the verdict was to sit down and develop the app in objective-c.
Have you looked at PhoneGap?
Simple steps to put your html app into iOS native container, without coding:
Download xCode
Download simple web view app from https://github.com/nomtek/iOSWebViewApp
Open simple web view app within xCode
Add your HTMLs to the project file structure
Run your app and voila :)
This approach is good if you don't need access to any phone specific features, just a standard Web View. Loading time will be short as this approach doesn't load any extra libraries.