This is my first time trying intents, so please be gentle with me
I'm trying to get a response from another (not my app) activity that I start with an intent, but when my app resumes the intent extras is empty and the Intent.GetData is null.
I know the intent is being handled correctly as I see the activity I am starting show up, and my app resumes when it closes. Their example test app seems to communicate with their app just fine. It's a pretty simple request:
Is there something I need to add to the manifest to see the response? The app's SDK says it can, "return a response as a string from the "response" extra of the onActivityResult" but I don't see an event prototype for that in the Intellisense for the Activity subs.
Any direction to look would be helpful, thanks!
I'm trying to get a response from another (not my app) activity that I start with an intent, but when my app resumes the intent extras is empty and the Intent.GetData is null.
I know the intent is being handled correctly as I see the activity I am starting show up, and my app resumes when it closes. Their example test app seems to communicate with their app just fine. It's a pretty simple request:
B4X:
Dim poIn As Intent
poIn.Initialize("com.whateverapp.action.REQUEST", "")
poIn.PutExtra("Extra_1", "Some Data")
poIn.PutExtra("Extra_2", 5)
StartActivity(poIn)
Is there something I need to add to the manifest to see the response? The app's SDK says it can, "return a response as a string from the "response" extra of the onActivityResult" but I don't see an event prototype for that in the Intellisense for the Activity subs.
Any direction to look would be helpful, thanks!