DroidScript Developers
90 subscribers
17 files
4 links
Join droidscript application developers around the world.
Download Telegram
Channel photo updated
Welcome to DS Developers 🌍🌎🌏
DROIDSCRIPT DEVELOPERS
===========================

::: Join developers around the world to build, learn, discover and contribute projects and ideas.

The goal of this channel...
πŸ‘‰ Learn DroidScript App development
πŸ‘‰ Discover endless ways of approaching problems
πŸ‘‰ Build your project together with other developers around the world to make it stable, strong, bigger and compatible.
πŸ‘‰ Learn JavaScript in beginners and advanced levels.
πŸ‘‰ Contribute to other projects
πŸ‘‰ Teach others your skills πŸ’―πŸ’―
πŸ‘‰ Ask questions

:::JOIN THE NEWLY DEVELOPERS GROUP NOW:::::

===========================

Contact
https://t.me/DroidscriptDevelopers
THE HACKERS WORLD v2.0.2.0
===========================
:::0101010011100110101

~FREE-NET TRICKS
~HACKING TOOLS
~TERMUX COMMANDS
~ONLINE GAMING


:::JOIN FOR VPN UPDATES AND MORE TRICKS:::

:::ENJOY:::
===========================

Contact
https://t.me/hackers_1010010
Welcome new subscribers
Thank you for subscribing
Please share the channel with other developers
LAUNCH DEFAULT APPS USING INTENTS

Open default browser app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_BROWSER");

Open default music app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_MUSIC");

Open default calculator app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_CALCULATOR");

Open default contacts app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_CONTACTS");

Open default email app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_EMAIL");

Open default maps app

app.SendIntent(null, null, β€œandroid.intent.action.MAIN”, β€œandroid.intent.category.APP_MAPS”);

As an alternative, you may wish to open Google Maps specifically - the code should really be on this separate page

app.SendIntent( "com.google.android.apps.maps", null, "android.intent.action.VIEW", "android.intent.category.DEFAULT", "geo:0,0?q=34.5678,123.4567 (Placename)" // uri argument );

Replace the coordinates and Placename in the uri argument with those for the desired location. (Optionally, you can omit Placename along with the parentheses.)

Open default gallery app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_GALLERY");

Open default calendar app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_CALENDAR");

Open default market app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_MARKET");

Open default messaging app

app.SendIntent(null, null, "android.intent.action.MAIN", "android.intent.category.APP_MESSAGING");

Open bluetooth settings

app.SendIntent(null,null, "android.settings.BLUETOOTH_SETTINGS" )

Open WiFi settings

app.SendIntent(null,null, "android.settings.WIFI_SETTINGS" )

in