আমাদের লিখা কিছু অ্যানড্রইড অ্যাপ – কোড উদাহরণ সহ

আমাদের লিখা কিছু অ্যানড্রইড অ্যাপ – আপনি এখানে পাবেন।

https://play.google.com/store/apps/developer?id=Sayed+Ahmed

কোড গুলো নিচের লিঙ্ক এ পাবেন।

https://github.com/sayedjustetc/android-apps-by-justetc


অ্যানড্রইড অ্যাপ লিখার জন্য

আপনাকে জাভা ব্যবহার করতে হবে।

আপনি Android Developer Studio (ADT) অথবা  Eclipse ব্যবহার করতে পারেন।

আমরা  Android Developer Studio (ADT)  এবং  Gradle ব্যবহার করেছি .

তাই আমাদের কোড উদাহরণ ব্যবহার করলে, ADT ব্যবহার করা ভালো হতে পারে।


আপনি নিচের লিঙ্ক থেকে কোড ডাউনলোড করতে পারবেন

git clone https://github.com/sayedjustetc/android-apps-by-justetc.git

git clone দিয়ে আপনি আসলে কয়েকটি অ্যাপ এর কোড পাবেন – একসাথে

আপনি একটি করে  .tar.gz ফাইল ও ডাউনলোড করতে পারেন।

 

—-

The application: https://github.com/sayedjustetc/android-apps-by-justetc/tree/master/justetc-app-with-justetc-com-files

internally contains all files from Justetc.com; hence, if you have a web-site, you want to build an Android app based on the files there (and that will work without internet connection on your mobile device) – then this is the option. You need to put your HTML/CSS/JS files under www/assets folder.

Other examples, are also pretty simple; they just load the URL of a Web-site or a Web-App in the application. You primarily need to change the URL in the MainActivity.Java file. Then you will be good.

If you want to have package names the way you want, you can simply create the package(s) you want and then move the files there. The package name inside those files will be automatically changed – remember to select the Refactor option. You can create package for AndroidTest and Test as well. Then remove the older package(s).

Change the package name in the Manifest file, also make sure that your application id is consistent across files (esp. check the MainActivity.java file and the import statement with .R at the end -> this need to be consistent with application id defined in the configuration files).

 

Adjust the configuration files under the Gradle folder (Gradle configuration files). If you change the package name, you will have to change these configurations in couple of places.