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:…
Tag: IDE
How to run Python code in Android Studio and fix “No Python interpreter configured for the module” error?
In this video it shows the steps to configure the Android Studio to run Python script in it. It shows the required plugin installation and then steps to solve the Python interpreter error – No Python interpreter configured for the module. I hope you like this video. For any questions,…
How to run Python code in Android App?
In this video it shows the steps to run a python code in Android App’s code. It calls the python script from the Java code. It uses chaquopy plugin, which is Python SDK for Android. Details are available at: https://chaquo.com/chaquopy/ The steps for setting the Gradle is taken from this…
How to integrate AI tools, such as Gemini and Amazon Q, in your Android Studio IDE?
In this video it shows the steps to integrate the AI (Artificial intelligence) tools, such as Gemini and Amazon Q, using the Plugins in Android Studio. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code…
How to commit and push the project files to a private Github repo from your Android Studio?
In this video it shows the steps to connect to a private repo from your Android Studio. It uses the Classic token to authenticate the connection. Further, it shows how one can commit and push the files to the Github repo. I hope you like this video. For any questions,…
How to connect to Github and upload the files from Android Studio?
In this video it shows the steps to connect to remote repository Github from your Android Studio. It shows the steps to upload (commit/ push) the files of the master branch in the remote github repo. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to toggle between design and code view of the layout (XML file) in your Android Studio – Hedgehog | 2023.1.1?
The video highlights the feature of switching between Design, Code, or Split view in Android Studio while creating a layout. It provides guidance on how to examine the corresponding XML code of the layout being designed, offering a helpful solution for those interested in the programming aspect. The creators of the video welcome feedback and inquiries, and have provided contact methods via a website and email. A screenshot of the process is also included.
How to connect Android TV to Android Studio environment over WIFI and enable debugging?
In this video it shows the steps to connect Android TV to Android Studio environment over WIFI for debugging the App’s code. Two simple Steps which needs to be followed: Command for connecting: Android Debug Bridge (adb) ‘ADB.exe’ command is in the following path. Either change to the below path…
How to switch between new UI and old UI (classical UI) after updating to version of Android Studio HedgeHog | 2023.1.1?
The video demonstrates how to switch between the old and new user interfaces (UIs) in Android Studio, starting from version Android Studio HedgeHog – 2023.1.1. The new UI option offers a more focused view for developers, enhancing their experience. The option to switch between these interfaces can be found in the settings. Contact information and details about the specs of the version used are also provided, including the use of Android Studio Hedgehog | 2023.1.1Build. The video also informs viewers that switching interfaces will require a restart of Android Studio.
Fix “packagingOptions(Packaging.() -> Unit): Unit’ is deprecated. Renamed to packaging” error in Android Studio Gradle file.
In this video it shows the steps to add packagingOptions block in the gradle file in Android Studio. On adding the packagingOptions block it gives the deprecated unit error. This can be fixed by using packaging block instead of packagingOptions block. Also, use resources.excludes.add instead of exclude option. I hope…