skip to Main Content

Android Studio – Request Permission Prompt not showing to user android

I have a simple app that has just 1 button in the activity and this is my MainActivity.kt file code: package ir.alirezapersonal.startup2 import android.Manifest import android.content.pm.PackageManager import android.os.Build import android.os.Bundle import android.util.Log import androidx.activity.enableEdgeToEdge import androidx.annotation.RequiresApi import androidx.appcompat.app.AppCompatActivity import androidx.core.app.ActivityCompat…

VIEW QUESTION

Flutter – can't open Photo Gallery below Android 13

here is the permissions on my AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/> here is my build.gradle file android { compileSdkVersion 34 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } sourceSets…

VIEW QUESTION

Permission handler in flutter

Currently, I can successfully compile and build an APK for my Flutter application without encountering any issues. However, as soon as I include the 'permission_handler' package, I am unable to do so. I have tried using multiple versions of the…

VIEW QUESTION
Back To Top
Search