user3460974
user3460974

Reputation: 131

Why is phoneGap build only building for 3 platforms?

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

Answers (5)

John Weidner
John Weidner

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

John Weidner
John Weidner

Reputation: 2165

Intel XDK provides a similar service to Adobe's PhoneGap Build but supports a lot more platforms.

Upvotes: 1

Mart&#237;n Alcubierre
Mart&#237;n Alcubierre

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

Mart&#237;n Alcubierre
Mart&#237;n Alcubierre

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

Nicolas R
Nicolas R

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:

  • iOS (Mac)
  • Amazon Fire OS (Mac, Linux, Windows)
  • Android (Mac, Linux, Windows)
  • BlackBerry 10 (Mac, Linux, Windows)
  • Windows Phone 7 (Windows)
  • Windows Phone 8 (Windows)
  • Windows 8 (Windows)
  • Firefox OS (Mac, Linux, Windows)

See doc here: phonegap CLI doc

Upvotes: 1

Related Questions