In this video, I address a common problem from the CW1 assignment. When generating the APK for task 2, the toggle button works, but the images inserted through the code do not show up. This issue is caused by missing Android internet permissions in the AndroidManifest.xml file.
To fix this, add the following line to your AndroidManifest.xml file:
uses-permission android:name="android.permission.INTERNET"/
I also demonstrate how to generate an APK file using Visual Studio Code. By following these steps, you can ensure your application functions correctly both in the emulator and on actual devices.