We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GlobalScope.launch { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { Log.d(TAG_LOG, "hello android R") val permissionResult = TedPermission.create() .setPermissions( Manifest.permission.MANAGE_EXTERNAL_STORAGE ) .checkGranted() Log.d(TAG_LOG, "hello $permissionResult") if (!permissionResult) { // request Log.d(TAG_LOG, "hello request $permissionResult") // this #line# the dialog didnt show } else { Log.d(TAG_LOG, "hello granted $permissionResult") } } else { Log.d(TAG_LOG, "hello android min R") val permissionResult = TedPermission.create() .setPermissions( Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE ) .checkGranted() Log.d(TAG_LOG, "hello $permissionResult") if (!permissionResult) { // request Log.d(TAG_LOG, "hello request $permissionResult") } else { Log.d(TAG_LOG, "hello granted $permissionResult") } } }
why dialog bo didn appears just throw the log on // this #line#
The text was updated successfully, but these errors were encountered:
Teşekkürler
Sorry, something went wrong.
No branches or pull requests
why dialog bo didn appears just throw the log on // this #line#
The text was updated successfully, but these errors were encountered: