Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Writing own Android Apps for personal use?

Tags:

android

I am interested in coding up some interactive apps for personal use on my Samsung Galaxy tab running the Android OS. Ideally I would like to write a program in C++/Haskell/Python on my desktop, test them out with a simulator in an IDE such as Eclipse, and then transfer the compiled executable onto my Tablet to be used like any normal Android app.

Can this be done? All sites I have come across so far are about writing android apps on your PC and then publishing them to Google Play after meeting some quality criteria as mentioned here

The closest question on SO I could find is this one but it does not seem to answer the question.

If so, can someone tell me the workflow for doing this? In particular to which folder must I transfer my executable to?

Note: I will be coding these apps on Ubuntu 14.04 in the languages mentioned above.

like image 882
smilingbuddha Avatar asked Jan 15 '16 17:01

smilingbuddha


People also ask

Can you make an Android app just for yourself?

Creating your mobile app for Android and iPhone for free is easier than ever. iBuildApp app maker software allows building apps in a matter of minutes, no coding required! Just pick a template, change anything you want, add your images, videos, text and more to get mobile instantly.

Can you make your own app for personal use?

But for the vast majority of people, using an app building platform like BuildFire is the best way to create an app. BuildFire allows you to create an app for iOS and Android, simultaneously, without writing a single line of code.


1 Answers

You can build and run your own apps without uploading to anywhere. Android allows apps to be installed from the computer to device using the adb executable (Android Development Bridge). You can develop the app and push it directly to your device.

If your interested in python android you might want to checkout: https://kivy.org/

For more information on building apps and installing locally checkout here: http://developer.android.com/training/index.html

like image 110
JBirdVegas Avatar answered Sep 24 '22 19:09

JBirdVegas