Reputation: 131
I'm building my first phoneGap app and compressed a zip file which includes my config.xml, index.html, index.css and index.js files. When I upload my zipfile it only shows 3 platforms to build for. How do I build for the others when all I need are those 3 core files? Currently it's only building for iOS, android and windows.
Below is a tree of all the files I compressed.
└── www
├── config.xml
├── css
│ └── index.css
├── img
│ └── logo.png
├── index.html
└── js
└── index.js
Upvotes: 0
Views: 245
Reputation: 2165
If you use PhoneGap Build version 2.9.0 it supports more platforms. http://docs.build.phonegap.com/en_US/2.9.0/introduction_supported_platforms.md.html#Supported%20Platforms
Just add
<preference name="phonegap-version" value="2.9.0" />
to your config.xml
Upvotes: 0
Reputation: 2165
Intel XDK provides a similar service to Adobe's PhoneGap Build but supports a lot more platforms.
Upvotes: 1
Reputation: 4389
Phonegap only provides automatic build for these platforms, but Cordova can be build locally to many other.
In that case you want to build to other platforms take care to review that plugins that you need are available or make them for yourself.
Upvotes: 1
Reputation: 4389
Phonegap only provides automatic build for these platforms, but Cordova can be build locally to many other but you have to review that plugins that you need are available.
Upvotes: 0
Reputation: 14609
You used to send your project content to PhoneGapBuild website, in order to build your applications.
The current documentation is clear: doc
Platforms = Android / iOS / Windows Phone 8
You can build other platforms locally, using CLI, and depending on your dev platform:
See doc here: phonegap CLI doc
Upvotes: 1