admin

admin

List AVDs from command-line

Pre-requisite; Make sure JAVA_HOME variable is set. Make sure ANDROID_HOME variable is set as well. Add path to your android emulator to the PATH environment variable eg. C:\Users\Asmaliza\AppData\Local\Android\Sdk\emulator Now launch your command prompt and type below command to list all…

Location-Aware Apps with Google Maps

Create a new project and make sure to select Google Maps Activity in the Create New Project template wizard. 2. Add a Button “Find Location” in the Main Layout. activity_main.xml MainActivity.kt (no changes) 2. Update the MapsActivity.kt to includes codes…

Android External Storage in Kotlin

First of all, create an Activity in your project that will have a layout similar to below. You will need; Three buttons tp check, save and read external storage. One TextView to display results. activity_external_storage.xml ExternalStorageActivity.kt View the file created…