skip to Main Content

Android Studio – Android Studio ic_launcher not found

after have created an icon for the app, android studio is avoiding it when I generate the apk file for release. error: resource mipmap/ic_launcher (aka com.example.elrestaurante:mipmap/ic_launcher) not found. error: resource mipmap/ic_launcher_round (aka com.example.elrestaurante:mipmap/ic_launcher_round) not found My project has a git…

VIEW QUESTION

Android Studio – How can I change the fragment in current fragment?

I am developing a mobile application using with java in android studio.I am new to this environment.I have bottom navigation bar with 3 menu item (Home,Add article,Profile). <menu xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/home" android:icon="@drawable/ic_baseline_home_24" android:title="Home" /> <item android:id="@+id/article" android:icon="@drawable/ic_baseline_post_add_24" android:title="Article" />…

VIEW QUESTION

Android Studio – BLUETOOTH_CONNECT, BLUETOOTH_SCAN Missing permissions

enter image description here There seems to be a problem with 'BLUETOOTH_CONNECT and 'BLUETOOTH_SCAN'. But I have already made a declaration. `<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" > <!-- Request legacy Bluetooth permissions on older devices. --> <uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30"…

VIEW QUESTION
Back To Top
Search