Search

Android's Articles

Android is a mobile operating system based on a modified version of the Linux kernel and other open-source software, designed primarily for touchscreen mobile devices such as smartphones and tablets.

Install Android Studio in Windows 10
Android Studio is Google's official IDE to develop Android application. Android Studio supports many powerful features to create Android application. It also has in-built Android emulator to test application in virtual device. In this article, we will go through installing Android Studio application in Windows 10 system. Before installing Android Studio, make sure your system meet below requirements to install Android Studio. To check about your system, from the start menu click System and see About pane. System Requirement 64-bit Microsoft Windows 8/10 x86_64 CPU architecture; 2nd generation Intel Core or newer, or AMD CPU with support for a Windows Hypervisor 8 GB of RAM or more 8 GB of available disk space minimum for IDE + Android SDK + Android Emulator 1280 x 800 minimum screen resolution Download the Android Studio installation file After you check system requirements, Now we need to download setup file from the Android Studio official website. Open web browser and go to the Official Website. The page will automatically checks your system and redirect to your system download page. Now click Download Android Studio button. It will open Terms and conditions page with the Android Studio license agreement. At the bottom of the page, check "I have read and agree with the above terms and conditions" and click Download Android Studio for Windows to start the download. It will start donwloading installer file. When download completes, Double clicks on setup file. This will ask for basic options. Finish basic installation settings for all the steps. When installation is about to complete, Finish button will appears at the last step. When you click Finish buttom, it will install additional components. When everything completes, A Welcome Android Studio screen will apear. Conclusion At the end of this tutorial, we have completed download and installation of Android Studio. If you have any questions, please let us know in the below comment section.
How to Run Android Apps on Linux
Android is the most popular Smartphone operating system. Many of us would like to run Android application in Linux operating system. Running Android application on Windows is easy as there are so many softwares available, like Blustacks. While running Android application on Linux is somehow little-bit tricky. Anbox is the open-source android emulator for Linux. It runs almost all Android application. Anbox is less emulator, it run whole Android system under the same kernel as host operating system. Installation In this article, we will install Anbox step by step and install APK file.Follow this steps and you can also run Android appication in your computer. Step-1 Open Terminal by pressing shortcut key CTRL+ALT+T or from the launcher. Step-2 Add Anbox repository to your system. sudo add-apt-repository ppa:morphis/anbox-support Step-3 Update your system repository. sudo apt-get update Step-4 Install the anbox-modules-dkms package sudo apt install -y anbox-modules-dkms Step-5 Load the kernel modules. sudo modprobe ashmem_linux sudo modprobe binder_linux Step-6 you should have two new nodes in your systems /dev directory. ls -1 /dev/{ashmem,binder} /dev/ashmem /dev/binder You can check if snap is correctly installed. snap --version Step-7 Install Anbox from the snap sudo snap install --devmode --beta anbox Now lauch Anbox with bellow command or from the application window. anbox session-manager To install Android application, you need to install adb tool. Install it by following command. sudo apt install android-tools-adb Now you need to get APK file. You can also download APK file from online websites like APKMirror or APKPure. Make sure APK file is x86 or x86_64 architecture as Anbox only supports x86 architecture. And then install apk file from your local files with bellow command. sudo adb install my-apk-file.apk If the Anbox container is not running yet you can start it with loading the application manager application: sudo anbox.appmgr You can also remove Anbox with bellow command. sudo snap remove anbox Remove PPA from the system and installed kernel modules sudo apt install ppa-purge sudo ppa-purge ppa:morphis/anbox-support Conclusion This is it. You can install and play Android games and other application. I hope you liked this article. Please do your suggestion in bellow comment box. Thank you.
How to install laravel in android phone
In this tutorials i gonna share with you Amazing artical, "How to install laravel in your Android Phone". this artical is very helpfull for performe a small tack for laravel on your Android phone without open your PC or laptop.so let's start. i will explain all thins one by one. so please followed all step and you can easely install or run laravel applilcation in your Android Phone. Step 1 : Install "Termux" Aplication from Google Play Store Termux is provide all functionality like as terminal, which we are using in our Ubuntu OS. then after you simple open it application and type "apt update". My goal when testing Termux was to see if I could assemble a proper* PHP development environment, so I started by installing a text editor. I prefer Vim, but there are some more options available, like Emacs and Nano. Vim has a bit of a learning curve to it, but it gets very comfortable when you get past the basics of it. You can get Vim with the apt install vim command. If you are testing this on your Android phone, running vim will bring the first set of problems. How can I hit the Escape button? Termux has a large list of shortcuts that be used to simulate the buttons that are not available on the Android keyboards: Command Key Volume Up+E Escape key Volume Up+T Tab key Volume Up+1 F1 (and Volume Up+2 → F2, etc) Volume Up+0 F10 Volume Up+B Alt+B, back a word when using readline Volume Up+F Alt+F, forward a word when using readline Volume Up+X Alt+X Volume Up+W Up arrow key Volume Up+A Left arrow key Volume Up+S Down arrow key Volume Up+D Right arrow key Volume Up+L (the pipe character) Volume Up+U _ (underscore) Volume Up+P Page Up Volume Up+N Page Down Volume Up+. Ctrl+\ (SIGQUIT) Volume Up+V Show the volume control   Step 2 : Install php and git [ADDCODE] You can install php and git by termux using following commant apt install php apt install git Step 3 : Install Composer You can install composer by termux using following commant php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('SHA384', 'composer-setup.php') === '55d6ead61b29c7bdee5cccfb50076874187bd9f21f65d8991d46ec5cc90518f447387fb9f76ebae1fbbacf329e583e30') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');" Step 4 : Test your PHP code run or not Then after completed above process then next is test PHP code run or not in your android phone, so how to test it? simple follow this step. mkdir test cd test echo " index.php php -S localhost:8080 after fire above command in your termux application then open your mobile phone browser and simpple type localhost:8000. If you show php information document on your mobile browser, then your PHP code fine working in you android phone. Step 5 : Create Laravel Project You installed PHP and composer successfully on your phone, so now you are ready for create laravel project. simply write this following command and enter. php composer.phar create-project --prefer-dist laravel/laravel new_project new_project is your laravel project name, so how to run it? first go in your project root directory by this command cd new_project then after write following command for run youe laravel project. php artisan serve Then after again open your mobile browser and type localhost:8000 Congratulation your laravel now successfully run in your android phone. Step 6 : Install sqlite database Now you can install sqlite database in your laravel application in your mobile phone, so first it installed by following command. apt install sqlite After completed this process then after you must be some changes in your laravel application files, first open your .env file and change in it look like, DB_CONNECTION=sqlite DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=homestead DB_USERNAME=homestead DB_PASSWORD=secret BROADCAST_DRIVER=log CACHE_DRIVER=file SESSION_DRIVER=file QUEUE_DRIVER=sync Then go to the config/database.php file and change the following line from: 'default' => env('DB_CONNECTION', 'mysql'), to 'default' => env('DB_CONNECTION', 'sqlite'), This will make sqlite the default connection from the connections array. connections' => [ 'sqlite' => [ 'driver' => 'sqlite', 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', ], 'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'strict' => true, 'engine' => null, ], 'pgsql' => [ 'driver' => 'pgsql', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'schema' => 'public', 'sslmode' => 'prefer', ], ], Your database path point to be database.sqlite file,This file does not exist yet, so we need to create it. touch database/database.sqlite Then after you can create auth using this command php artisan migrate Then after again refresh your mobile browser and show, your basic authentication create successfully if you have any question related this artical, you must be watch following video