I want users to pick up an apks file to install.
I made an ActivityResultLauncher
instance and passed application/apks
to the launch()
method like this.
mGetContent.launch("application/apks");
but I couldn’t choose any file even if it was apks
file
it was disabled.
I want all files to be disabled except for apks files.
2