Welcome to this post.
In this post, I am going to discussing a new topic that is android runtime permission.
What is runtime permission?
Basically, when we want to access some data on the device or want to make a network request from our app, we need user permission.Basically, we need to write the permissions on the AndroidMenifest.xml
AndroidMenifest.xml
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"...
AndroidSketchpad
Imagine Learn And Apply