Currently browsing tag

Android

Cara Root Redmi 2/Prime dengan Stock MI Recovery (All ROMs)

‹ › Download RootRedmi2.zip dan Copy ke folder ‘Internal storage’ Kemudian buka aplikasi Updater yang berada di dalam folder Tools Selanjutnya klik Option menu (…) yang berada di bawah icon batere Setelah itu pilih Select Package Update (Pilih paket pembaruan) Berikutnya pilih file RootRedmi2.zip yang kita donlot tadi Tunggu sampai reboot Setelah …

Limited time only: Upgrade and Save on Genymotion!

We’re so thrilled that you’re now using Genymotion to test your apps! Did you know that there are over 25 premium features that come with a paid Genymotion license? For a limited time only, we’re offering a 15% discount on indie and business licenses. Simply use coupon code EMAIL15 when you check out. Read more about …

Android Java URLConnection

// HTTP POST request private String postData(String url, Map<String, String> dataIWantToSend) throws IOException { URL obj = new URL(url); HttpURLConnection con = (HttpURLConnection) obj.openConnection(); //add reuqest header con.setRequestMethod("POST"); con.setRequestProperty("User-Agent", USER_AGENT); con.setRequestProperty("Accept-Language", "en-US,en;q=0.5"); String urlParameters = mapToString(dataIWantToSend); // Send post request con.setDoOutput(true); DataOutputStream wr = new DataOutputStream(con.getOutputStream()); wr.writeBytes(urlParameters); wr.flush(); wr.close(); int …

Final Version ADT Bundle

Bagi yang kesulitan atau tidak bisa menggunakan Android Studio, silakan download Eclipse Android Developer Tools versi terakhir ini. Download Eclipse ADT Bundle Android Developer Tools linux 64 bit: http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20140702.zip linux 32 bit: http://dl.google.com/android/adt/adt-bundle-linux-x86-20140702.zip MacOS X: http://dl.google.com/android/adt/adt-bundle-mac-x86_64-20140702.zip Win32: http://dl.google.com/android/adt/adt-bundle-windows-x86-20140702.zip Win64: http://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip Untuk mempercepat dan menghemat memory, silakan download dan extract file …