DroidScript Developers
90 subscribers
17 files
4 links
Join droidscript application developers around the world.
Download Telegram
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
Forwarded from HackersWorld v2.1
🖥🖥🐧 Pentester Academy : x86 Assembly Language and Shellcoding on Linux 🐧🖥🖥

Download Link : https://mega.nz/file/xgISCSCR#P_S8g86D6C4fQpQaCZ6MnFcrL0MRDLy0__EEXsEvNqo
File Size : 4.77GB

Course Link : https://www.pentesteracademy.com/course?id=3

This course focuses on teaching the basics of 32-bit assembly language for the Intel Architecture (IA-32) family of processors on the Linux platform and applying it to Infosec. Once we are through with the basics, we will look at writing shellcode, encoders, decoders, crypters and other advanced low level applications.
Download DroidScript plugins now

works on all versions
👇👇👇👇👇👇👇👇👇👇👇
Support plugin for additional UI components for your app. 😎
Filter.js
1.6 KB
Filter Items

_This sample shows how to filter the files and folders in sdcard directory. You can also filter any other items on a List View from this sample._

https://t.me/DroidscriptDevelopers