Created
November 26, 2019 22:25
-
-
Save diogenesjup/258e1f1f5b9642f5c2d94f21226e392e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function teste6(){ | |
| startApp.set({ /* params */ | |
| "action": "ACTION_VIEW", | |
| "uri": "fb://facewebmodal/f?href=https://www.facebook.com/GitHub" | |
| }).start(); | |
| } | |
| function teste7(){ | |
| startApp.set({ /* params */ | |
| "action": "ACTION_SEND", | |
| "package": "com.whatsapp", | |
| "type": "text/plain" | |
| }, { | |
| "android.intent.extra.TEXT":"Text..." | |
| }).start(); | |
| } | |
| function teste8(){ | |
| startApp.set({ /* params */ | |
| "action": "ACTION_SEND", | |
| "package": "com.luccasmelo.intentapp", | |
| "type": "text/plain" | |
| }, { | |
| "android.intent.extra.TEXT":'{name:"information",value:"teste"}' | |
| }).start(); | |
| } | |
| function teste9(){ | |
| startApp.set({ /* params */ | |
| "action": "ACTION_SEND", | |
| "package": "com.luccasmelo.intentapp", | |
| "type": "application/json" | |
| }, { | |
| "android.intent.extra.TEXT":'{name:"information",value:"teste"}' | |
| }).start(); | |
| } | |
| function teste10(){ | |
| startApp.set({ /* params */ | |
| "action": "ACTION_SEND", | |
| "package": "com.luccasmelo.intentapp" | |
| },).start(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment