This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<resources> | |
<!-- Totally "398 Colors" | |
Author : VenomVendor | |
Refer : http://stackoverflow.com/q/3769762/1008278 | |
Reference : http://www.computerhope.com/htmcolor.htm | |
--> | |
<!-- Colors arranged from Black to White, i.e., #000000 to #FFFFFF --> | |
<color name="black">#000000</color> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<resources> | |
<!-- Totally "398 Colors" | |
Author : VenomVendor | |
Refer : http://stackoverflow.com/q/3769762/1008278 | |
Reference : http://www.computerhope.com/htmcolor.htm | |
--> | |
<!-- Colors arranged from A -Z --> | |
<color name="algae_green">#64E986</color> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<resources> | |
<!-- Totally "960 Colors" | |
Author : VenomVendor | |
Refer : http://stackoverflow.com/q/3769762/1008278 | |
Reference : http://www.computerhope.com/htmcolor.htm , http://www.color-hex.com/color-names.html | |
--> | |
<!-- Colors arranged from Black to White, i.e., #000000 to #FFFFFF --> | |
<color name="black">#000000</color> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<resources> | |
<!-- Totally "960 Colors" | |
Author : VenomVendor | |
Refer : http://stackoverflow.com/q/3769762/1008278 | |
Reference : http://www.computerhope.com/htmcolor.htm , http://www.color-hex.com/color-names.html | |
--> | |
<!-- Colors arranged from A -Z --> | |
<color name="air_force_blue">#5D8AA8</color> |
This file contains hidden or 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
/* Single line request with response */ | |
System.out.println(EntityUtils.toString(new DefaultHttpClient().execute(new HttpGet("http://www.VenomVendor.com")).getEntity())); | |
/* Equivalent for the above */ | |
String url = "http://www.VenomVendor.com"; | |
HttpClient httpClient = new DefaultHttpClient(); | |
HttpGet httpGet = new HttpGet(url1); | |
HttpResponse response = httpClient.execute(httpGet); |
This file contains hidden or 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 hidden or 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" |