Question about creating an app? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Question about creating an app?

Not sure if I can make an app this way but is it possible or what is the better route? Can I write an app program in notepad++, save as a javascript file then send it to an apk editor or a apk builder. Then save the file as a new apk file, then run it. I'm wanting to find a more efficient way to create apps by using a laptop to type the code in. I don't want to type code on android and I don't want to use Android studio as I don't agree with their terms and agreements. Any help is greatly appreciated.

23rd Jul 2017, 11:58 PM
Scott Barsten
Scott Barsten - avatar
3 Answers
+ 9
I believe the way you are suggesting won't work. And you don't need Android Studio to build your apk, you would only need the JDK (the Android SDK platform) to build your apk from the command line. But if you only want to use JavaScript then you can convert your JS app to an Android app using a framework like PhoneGap. All you need to do is zip up your web app, upload it to Adobe PhoneGap Build cloud, and the service takes care of everything for you. Then you just have to scan the QR code with your Android phone, and follow the link to download the apk and install it on your phone. It's that easy, you don’t even need to download and set up Android SDK or emulators.
24th Jul 2017, 9:45 AM
Pao
Pao - avatar
+ 6
Thank you so much! I was just saying javascript because that's all know as of yet
24th Jul 2017, 4:18 PM
Scott Barsten
Scott Barsten - avatar
+ 4
Oh ok, then PhoneGap could be the best solution for you, or if you want to go native you can use React Native which works with JavaScript but you'd have to learn about Components and other stuff ☺
24th Jul 2017, 6:20 PM
Pao
Pao - avatar