Currency Converter Android App This video shows the steps and code to create your own currency conversion Android App. It uses the APIs from https://www.exchangerate-api.com/. This provides free API for certain number of usage which is good enough to build any prototype and POCs. The App demo shown in this…
Tag: android
How to check the ‘System.out.println’ output in Android Studio IDE project?
In this video it demonstrates that how one can check the ‘System.out.println’ in logcat window of the Android Studio IDE. It also shows how to filter the ‘System.out.println’ statements in the logcat with the System.out tag. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to get total storage (memory) and used storage of the device in your Android App?
In this video it shows the code to get the storage information (data) from your Android App. It shows example of fetching and displaying total storage available in the device and used storage. It uses a TextView to display the information. I hope you like this video. For any questions,…
How to add Logs in your Android Java code and check the logs in Android Studio? – Logs in Android Java Code
In this video it shows how to add Logs in Android Java Code and then check it in the Logcat in Android Studio IDE. It adds below Log statement in the code for demonstation. I hope you like this video. For any questions, suggestions or appreciation please contact us at:…
What is “Android Device Streaming powered by Firebase” in Android Studio? – virtual emulator
In this video it explains about the “Android Device Streaming” option to run virtual Android device or emulator in Android Studio environment. As per formal documentation, it states below: Android Device Streaming, powered by Firebase, provides secure direct ADB access to a wide range of Android devices, which you can…
What to do for “Microsoft Defender configuration” message pop-up in Android Studio Koala | 2024.1.2?
In this video we will show the steps one can do to resolve below pop-up message when it appears on the creation of a new project in Android Studio IDE. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at:…
How to open a video file from Download folder directly from your Android App using FileProvider in SDK API 34?
This video shows the code to open a video file (mp4 file) from the Download folder of the Android device directly from your Android App. It uses FileProvider to open the video file in the default application of the device to run the video file. In this video it demonstrates…
How to open an Image file from Download folder using FileProvider in your Android App in SDK API 34?
This video shows the code to open an image file directly from your Android App. It uses FileProvider to access the files beyond the App’s data scope limit. This App is developed in API 34. I hope you like this video. For any questions, suggestions or appreciation please contact us…
How to list all the Gemini models using API in Flutter Android and Web App?
In this video it shows the API to list all available Gemini models in your Flutter Android and Web App. For getting the access the access token, as mentioned in this tutorial, the steps are shared in the below link:https://programmerworld.co/ai-gen-ai-generative-artificial-intelligence/how-to-setup-oauth2-0-authentication-for-googlegcp-account-obtain-access-token-for-gemini-apis/ Also, in this tutorial it refers the cURL command from…
How to convert an Android Java code to Dart code and run as web or Android app?
This guide outlines the conversion process for running existing Java-based Android apps on both web and mobile platforms through Dart, the language powering Flutter. This enables multi-platform deployment with a single codebase for efficient development and wider app reach. This guide explores the process of migrating existing Android applications developed…