Skip to content

Instantly share code, notes, and snippets.

@diogenesjup
Created November 26, 2019 22:25
Show Gist options
  • Select an option

  • Save diogenesjup/258e1f1f5b9642f5c2d94f21226e392e to your computer and use it in GitHub Desktop.

Select an option

Save diogenesjup/258e1f1f5b9642f5c2d94f21226e392e to your computer and use it in GitHub Desktop.
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