How To Create An App In 10min with PhoneGap +Tips

Eleftheria Batsou
4 min readJan 12, 2020

--

💪Step by Step Tutorial

You can also watch the video tutorial here!

From the team behind Apache Cordova, the Adobe PhoneGap framework is an open-source distribution of Cordova — providing the advantage of technology created by a diverse team of pros along with a robust developer community —

Reuse existing web development skills to quickly make hybrid applications built with HTML, CSS and JavaScript. Create experiences for multiple platforms with a single codebase so you can reach your audience no matter their device.

PhoneGap Build takes the pain out of compiling PhoneGap apps. Get app-store ready apps without the headache of maintaining native SDKs. The PhoneGap Build service does the work for you by compiling in the cloud. — by PhoneGap

Instructions:

1.I’m pretty sure you already have done this step, but for anyone who is not very familiar with coding, please install a text editor (like Atom, Notepad++, Subline) or check this video to find an editor. Personally I’ll be using Subline, but it honestly doesn't matter.

Find a text editor for your needs

2. Create the configuration file. Code can be found here:

<?xml version=”1.0" encoding=”UTF-8" ?>
<widget xmlns = “http://www.w3.org/ns/widgets"
xmlns:gap = “http://phonegap.com/ns/1.0"
id = “com.phonegap.example”
versionCode = “10”
version = “1.0.0” >

<! — versionCode is optional and Android only →

<name>Eleftheria’s app</name>

<description>
An example for phonegap build docs.
</description>

<author href=”https://build.phonegap.com"email=”support@phonegap.com”>
Eleftheria Batsou
</author>

</widget>

Name the file as config.xml. By default, you don’t have to change anything but I would change the “name” and the “author”. Save it in a new folder. You can name the folder however you want.

3. Create an index.html file and include the basic structure (as you see in the video or below). Save it in the folder you created in the previous step.

<!DOCTYPE html>
<html>
<head>
<title>Eleef Title</title>
</head>

<body>
<h1>my first header</h1>
<p>hi, this is a paragraph</p>
<button onclick=”alert(‘omg, this is a working button’)”>Click me!</button>
</body>

</html>

4. Create the zip folder with the 2 files

5. Open on your browser PhoneGap

6. Sign in or register… (don’t worry, it’s free and it doesn't take much time)

7. Upload the zip file, and you are ready🥳️!!

8. Use your android phone to scan the bar code

9. Say “yes/install” or “install anyway” to every pop up on your phone

10. And now you should be able to use the app on your phone🎉!

These are the exact steps you’ll see on your mobile’s screen!

Extra! Update the logo icon on your new app

  1. Download or create a small icon (preferable dimensions: 144x144px or 256x256px), save it as icon.png on your folder
  2. On config, after “author” add: <icon src=”icon.png”></icon>
  3. Save the file, and create a new .zip
  4. Upload the new zip on PhoneGap and check your app again!
And here you can see (my icon or) app’s logo!

💡TIP:

On your smartphone close every tab on the browser!!! otherwise, you won’t be able to download your app!!

Video tutorial (step by step instructions)

🤓If you have any question feel free to comment below.

Thank you for taking the time to read my story and watch the video.

Would you like to get me a coffee?!☕️

You can do that here → paypal.me/eleftheriabatsou

But If you can’t, that’s ok too 😍.

It would be nice to subscribe to my youtube channel. It’s free and it helps to create more content. Thank you.

Youtube | Codepen | GitHub | Twitter | Site | Instagram

--

--

Eleftheria Batsou

Hi, I’m a community manager and an app developer/UX researcher by passion. I love learning, teaching and sharing. My passions are tech, UX, arts & working out.