Ive working on a Java Extension that opens a file picker and then uses onActivityResult to handle the result of the action (user selects a file).
it use to work.
i can get the file chooser to open, user selects a file but nothing happens, the onActivityResult is never triggered. Why is this? What has changed? Im using latest Android version and latest GMS.
Here is the Java code:
onActivityResult in Android java extension is not being triggered after Intent action
it use to work.
i can get the file chooser to open, user selects a file but nothing happens, the onActivityResult is never triggered. Why is this? What has changed? Im using latest Android version and latest GMS.
Here is the Java code:
Java:
package ${YYAndroidPackageName};
import ${YYAndroidPackageName}.RunnerActivity;
import...