hi and thank you!
maybe we are talking about "intent", i found a tutorial on this forum:
https://www.b4x.com/android/forum/threads/intent-for-beginner-messages-between-apps.123680/#content
i try to write this:
Private Sub Button1_Click
Dim intent1 As Intent
intent1.initialize(intent1.ACTION_VIEW,"
https://instagram.com/blahblah=")
intent1.setpackage("com.instagram.android") 'target app package name
intent1.setType("text/plain") 'mime types ex: text/plain
'intent1.PutExtra("android.intent.extra.*","your message content data")
StartActivity(intent1)
End Sub
in your example the manifest contains:
AddActivityText("main",
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="http" />
<data android:host="mydomain.myd" />
</intent-filter>
and this:
android:targetSdkVersion="14"
i haven't modified my manifest.
i've also read your article.
my code crash the app when i click the button.
this is the first step: click a sinple button and open istagram.
currently it's not working.
thank you.