Carrier unlock Galaxy S9 plus T-Mobile
- Smartphones
- 1 Replies
Need help carrier unlocking Galaxy S9 plus T-Mobile
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
if(resultCode == file_req_code){
if (resultCode == Activity.RESULT_CANCELED) {
file_path?.onReceiveValue(null) //file_path is the filePathCallback
return
}
if(resultCode == Activity.RESULT_OK){
if (file_path == null){
return
}
var image: Array<Uri>? = null
image = arrayOf(data.data) //I get the error here! "arrayOf(data.data)" is underlined in red.
file_path?.onReceiveValue(image)
}
}
}
