skip to Main Content

Android Studio – Plugin [id: 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'] was not found in any of the following sources:

Plugin [id: 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'] was not found in any of the following sources: Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights. ''' plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'…

VIEW QUESTION

Android Studio – My android app keeps crashing from which seems to be a permission problem despite granting the relevant permission in the Manifest

Below is the MainActivity code from which the problem is arising from. class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener, AdapterView.OnItemSelectedListener { private var user: FirebaseUser? = null var activity: MainActivity? = null private var mUserRef: DatabaseReference? = null private lateinit var dialog:…

VIEW QUESTION

Android Studio – Why do the items in the recycler View are not showing well Android Kotlin

So I made my list so it look like this : but I don't know for what ever reason it show like that: Here is the frament_drivers.xml that hold the RecycleView: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"…

VIEW QUESTION
Back To Top
Search