dbs Svsa
dbs Svsa

Reputation: 21

Do I need to learn Java to create an android app using phoneGap?

I am a web developer (PHP,javascript,html5) never created an android app with Java or any other language. My question is, do I need to learn Java to create apps for android and what should I know to create an awesome android app using phoneGap.

Upvotes: 2

Views: 679

Answers (3)

Robin Maben
Robin Maben

Reputation: 23064

No. All you need to know are the basics of the language like including namespaces/imports, setting up some configuration files and some general familiarity with using IDEs.

You also won't need Java unless you are implementing some native functionality that is not provided by the PhoneGap API. For most simple apps a working knowledge of JavaScript, HTML and CSS will suffice.

Upvotes: 1

Zathrus Writer
Zathrus Writer

Reputation: 4331

you most probably won't need much of Java knowledge (if any), since PhoneGap applications are basically websites with (an optional) extra bit of JavaScript controlling the device

the only thing you might need Java for is when you upgrade your Cordova versions and you have some old plugins which need to update due to code deprecation

Upvotes: 0

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34536

No unless you need at some step to code a native plugin.

But it would be useful for you to understand how phonegap works behind.

Upvotes: 2

Related Questions