Name | type:web | type:privileged | type:certified |
---|---|---|---|
geolocation | ! | ! | ! |
geolocation-noprompt | ✕ | ✕ | ✓ |
mmi-test | ✕ | ✕ | ✓ |
camera | ✕ | ! | ✓ |
alarms | ✓ | ✓ | ✓ |
tcp-socket | ✕ | ✓ | ✓ |
udp-socket | ✕ | ✓ | ✓ |
This file contains 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
#!/bin/bash | |
apt install wget | |
apt install gcc | |
apt install make | |
apt install cmake | |
WORKDIR=$(pwd .) | |
export WORKDIR |
This file contains 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
World Wide | |
YouTube com.google.android.youtube | |
Facebook com.facebook.katana | |
Facebook Lite com.facebook.lite | |
Facebook Messenger com.facebook.orca (?) | |
Google+ com.google.android.apps.plus | |
WhatsApp com.whatsapp | |
Google Play Books com.google.android.apps.books | |
Google Play Games com.google.android.play.games |
This file contains 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
<?php | |
error_reporting(-1); | |
require_once 'vendor/autoload.php'; | |
require_once 'src/InstagramScraper.php'; | |
use InstagramScraper\Exception\InstagramException; | |
use InstagramScraper\Instagram; | |
try { | |
$medias = Instagram::getMedias('kevin', 1497); |
This file contains 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
public class DeviceAdminInteractor { | |
private static final String LOG_TAG = DeviceAdminInteractor.class.getName(); | |
// Can be dev and production key | |
private static final String ELM_LICENSE_KEY | |
= "SECRETKEY"; | |
public ComponentName componentName; | |
private DevicePolicyManager devicePolicyManager; | |
/** | |
* Samsung KNOX Standard SDK related variables |