I am using mac with OS 10.11.4, eclipse mars jee 64 bit & ADT
I'm trying to run the IBM mobilefirst plugin in eclipse mars, but it is not showing me in Create new project as image shown below.I have added all necessary plug ins successfully.
After installation of all plug in it is showing success as image shown below.
I'm loading the IBM mobilefirst from eclipse marketplace.
As I am new to hybrid application development please guide me to setup eclipse, IBM mobile first or worklight and ADT bundle plug in step-by-step.
Thanks in advance.
I think you first need to read about the product before simply installing it...
In MobileFirst Foundation 8.0 things are different.
You create a standard Cordova application using the Cordova CLI and you add to it to MobileFirst SDK also using the Cordova CLI, because the SDK is made up of a set of Cordova plug-ins.
The Studio plug-in is now a tool that exposes MobileFirst CLI functionality in the UI, such as: loading the console, registering applications, previewing applications...
Read more about MobileFirst Foundation 8.0 here:
https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/ibm-releases-next-generation-of-mobilefirst-foundation-built-for-hybrid-cloud/
And about the Studio plug-in here:
https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/ibm-mobilefirst-studio-8-0-plugin-for-eclipse-now-available/
Also learn how to migrate your existing apps:
https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/migrating-apps-and-adapters-to-mobilefirst-foundation-8-0/
https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/upgrading/migration-cookbook/
Related
How do I get Visual Studio Online to do a Build/Continious Intergration-Delivery for Cordova?
The only examples below are for installing to your own TFS installation. The CI build templates for VSO is Java/Android or C++/iOS not Cordova/PhoneGap.
https://www.visualstudio.com/vso/
https://learn.microsoft.com/en-us/vsts/build-release/archive/apps/mobile/cordova-build?view=vsts
https://learn.microsoft.com/en-us/vsts/build-release/archive/apps/mobile/cordova-command?view=vsts
As you can see from the Team Foundation Server guide, they don't seem to support Cordova apps.
Why don't your try Visual Studio Community 2017 instead? This includes the Tools for Apache Cordova and it works perfectly fine.
Can anyone let me know the process to preview IBM MobileFirst cordova application on Android device.
I am able to preview on console but unable to preview on mobile.
System Details:
Eclipse version:Mars.2 Release(4.5.2)
IBM MobileFirst Version:8.0.0.v20170425_0443
You can do :
cordova run
or
cordova emulate
or open the Android project in Android Studio and run it on a device or emulator.
Refer to this link for cordova commands.
I want to develop app using visual studio in .NET platform. Can I use ionic framework to develop app in visual studio. If yes then please tell how to do it and tell how to install ionic framework and which are all the software we require to develop app using ionic framework..??
To develop cross-platform Hybrid apps in Visual Studio using Ionic...
1.Download & Install Visual Studio Community it is recommended by ionic itself for developers using Windows.
2.Download "Visual Studio Tools for Apache Cordova" officially from here
https://www.visualstudio.com/en-us/explore/cordova-vs.aspx
with that you can build apps for iOS, Android, and Windows using web technologies.
2.Run the setup & click Install for the products shown.
3.Go to Tools -> Extensions and Updates inside Visual Studio and in the Online tab search for Ionic and install it.
4.Now you can start a new project and select the Ionic project template, give your project a name and wait for Visual Studio to do the rest.
You can use node's package manager (npm) to install the ionic framework.
$ npm install -g ionic
For absolute beginners a startertemplate should be used.
Have a look here for more detailed informations:
https://www.npmjs.com/package/ionic
Of course you need a text editor, and a browser comes pretty handy too.
I am attempting to create an Android app using the Visual Studio 2015 RC with Apache Cordova (a multi-platform hybrid app) and for some reason, when I go to:
TOOLS -> ANDROID -> PUBLISH ANDROID APP...
I get a quick thinking/circling mouse pointer then nothing.
Useful Information:
-The installation went fine and I can use the Ripple emulator fine.
-I did the same steps on a machine with Comodo which allowed me to see what Visual Studio was attempting to access and it was definitely reaching out to the Java tools on the computer (I assume to build the apk).
Other than that, I have no idea! :) Thank you.
Thanks for using Visual Studio tools for Apache Cordova.
I presume you are using the following menu, which is added to Visual Studio by the Xamarin Tools and can be used only with Xamarin and not with Tools for Apache Cordova.
To publish an hybrid android app to Google play store, using Tools for Apache Cordova, you will have to follow manual steps which are provided here
I agree that showing this menu for tools for Apache Cordova is confusing and leading users to believe this is a supported scenario. I will take this observation/feedback with the product team and let them know.
Once again, thanks for using our tools.
I have an existing Cordova app that I've been testing in Xcode.
The workflow was simple:
1. cordova build ios
2. open xcode project file in Xcode
3. either run in simulator or build directly to device
I'm tyring to figure out the same for running an Android build for testing.
1. Installed Android Studio
2. Installed and configured Android SDK 19
3. When I setup my run configuration, it says:
"AndroidManifest.xml doesn't exist or has incorrect root tag"
I've followed the trail to Cradle, migrating existing project to Cradle, but have been unsuccessful so far in figuring out how to take an existing Cordova project and getting it to run on my device.
Is there a workflow as easy as Xcode's 1...2...3... for Android?
As far as I know, android studio isn't officially supported by cordova/phonegap yet, you should use the ADT.
But here you can read how to work with android studio beta and cordova/phonegap
http://iphonedevlog.wordpress.com/2014/10/10/using-android-studio-beta-with-cordova-phonegap/