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
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
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
:: Check for Devices | |
adb devices | |
:: -r >> reinstalls without removing the data | |
:: -s >> installs in SD Card | |
:: to install all APKs in folder D:/APK Backup/. | |
for %f in ("D:/APK Backup/*.apk") do adb install -r -s "%f" | |
:: to install all APKs in current folder | |
for %f in ("*.apk") do adb install -r -s "%f" |
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
String details = "VERSION.RELEASE : "+Build.VERSION.RELEASE | |
+"\nVERSION.INCREMENTAL : "+Build.VERSION.INCREMENTAL | |
+"\nVERSION.SDK.NUMBER : "+Build.VERSION.SDK_INT | |
+"\nBOARD : "+Build.BOARD | |
+"\nBOOTLOADER : "+Build.BOOTLOADER | |
+"\nBRAND : "+Build.BRAND | |
+"\nCPU_ABI : "+Build.CPU_ABI | |
+"\nCPU_ABI2 : "+Build.CPU_ABI2 | |
+"\nDISPLAY : "+Build.DISPLAY | |
+"\nFINGERPRINT : "+Build.FINGERPRINT |
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
String details = "VERSION.RELEASE : "+Build.VERSION.RELEASE | |
+"\nVERSION.INCREMENTAL : "+Build.VERSION.INCREMENTAL | |
+"\nVERSION.SDK.NUMBER : "+Build.VERSION.SDK_INT | |
+"\nBOARD : "+Build.BOARD | |
+"\nBOOTLOADER : "+Build.BOOTLOADER | |
+"\nBRAND : "+Build.BRAND | |
+"\nCPU_ABI : "+Build.CPU_ABI | |
+"\nCPU_ABI2 : "+Build.CPU_ABI2 | |
+"\nDISPLAY : "+Build.DISPLAY | |
+"\nFINGERPRINT : "+Build.FINGERPRINT |
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
// |
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
A : Make Android SDK | |
STEP1: Example for extract the part1 and part2 rar files | |
root# unrar x -e HiSTBAndroidV800R001C00SPC020.tar.part1.rar | |
resutls -> HiSTBAndroidV800R001C00SPC020.tar.gz | |
STEP2: Download the Android SDK through | |
root# sudo apt -y install git | |
root# repo init -u https://android.googlesource.com/platform/manifest -b android-8.0.0_r4 | |
root# git config --global user.email "[email protected]" |