Custom Kernel Android?

Kemarin malam saya mencoba iseng menggunakan custom Kernel Android 2.1.

Bersumber dari blog ini.

Dan juga tutorialnya di sini.
Dan diperolehlah hasilnya seperti ini :

Apa aja kelebihannya? 😀

Ini dia….

Features:
– latest SE sources (2.1.A.0.492)
– FPS cap removed
– overclocked to 1.13GHz
– in-call volume increased
– full netfilter support (droid wall, wifi tether)
– drivemapper support (2.2+ native app2sd)
– working with basebands 54+ (67 recommended)
– no battery drain / sleep issues observed – 100% stock behaviour

 

How to download SDCard Data of gameloft games via (through the) PC

Hi, everyone! 😀

This time i want to show you how the way to download SDcard data of gameloft games through the Computer, not on the Phone.

Follow my Instructions :

Download and Extract here to your PC.

Run “GLZip.exe” and click “view links in apk” button

After clicked, then there’s new window like this :

There’s PVRT (for Samsung), ATC (HTC/Acer/Sony Ericsson), and DXT (Motorola), just go with copy that address (in accordance with your phone) to the download manager on your PC.

Download till finish and copy that zip package to the folder GLZip on your PC.

Then open again “GLZip.exe” and click “Unpack” button. And don’t forget to browse your sd data zip file.

and wait the progress till finish.

Ok, now you will see the folder of your gameloft sdcard data on the folder GLZip 🙂

Just copy the contents of sdfiles to the location sd data of your gameloft games on sdcard.

Done! 😀

[Tips for Android Developer] Using Android Emulator or Android Virtual Device

If you don’t have a android phone, don’t worry..you can still develop apps android and try it through Android Emulator (Android Virtual Device – AVD)

you can use the command via command prompt (don’t forget to set adb tools on system variable path on your PC) :

emulator -avd emulator-name

to start the emulator. If you want to customize the emulator appearance, you can use the command:

emulator -avd emulator-name -skin 480×320

where the Andori emulator appearance standard is:

480×320, landscape: emulator -skin HVGA-L
320×480, portrait : emulator -skin HVGA-P (default)
320×240, landscape: emulator -skin QVGA-L
240×320, portrait : emulator -skin QVGA-P

[Tips for Android Developer] Using ADB Tool and DDMS for support.

Hi, everyone! 😀

Welcome back 🙂

First, i want to show you about how important ADB tool for support your Android Development.

There many advantage about using ADB (Android Debug Bridge), such as :

1st : You can install/uninstall application pass through PC via USB debugging mode and mini-USB cable connected.

2nd : You can enter Shell Command (like Linux Command) inside ADB Shell.

3rd : You can detect your device, debug your application, save to log file, and report you if there’s bugs.

4th : You can push/pull file to/from device to your PC through ADB push or ADB pull.

Ok, lets know about interface 🙂

If you want to activate ADB Tools via Command Prompt on Windows, you can entry this path to System Environment Path on Windows, like :

Path” src=”https://butterflydroid.wordpress.com/wp-content/uploads/2011/06/05-06-2011-14-21-23.png?w=256″ alt=”” width=”256″ height=”300″ />

Add new variable value on Path System Variable : [drive]:\[Location on Windows]\android-sdk-windows\platform-tools; (if you are using new ADB tool)

Or

[drive]:\[Location on Windows]\android-sdk-windows\tools (if you are using old ADB Tool)

Now, lets try it 😀

Several commands that you should know :

ADB install [APK File] : To install Android Application (APK) to your device (on emulator or Android Phone)

Example : adb install facebook.apk [enter]

ADB push [source_file] [destination_file] : To push your file on your PC to your device.

Example : adb install “c:\Temp\sample.txt” \sdcard\sample.txt [enter]

ADB pull [source_file] [destination_file] : to pull your file on the device to your PC.

Example : adb pull /sdcard/music.mp3 “c:\music\music.mp3” [enter]

ADB Shell : to enter shell command like linux (you can gain superuser access too, if you want to copy file from /sdcard to /system file)

Example : ADB Shell [enter] enter shell command prompt, start with “$” if you are ordinary user, or “#” if you re superuser.

So if you want to access superuser on your Android System, you just go :

adb shell [enter]

$ <= shown like this if you are ordinary user.

$ su [enter]

# <= shown like this if you have superuser.

If failed to access your shell with superuser, maybe your device is not rooted yet.

# reboot [enter] (for reboot your device) or on ADB Tools, you can entry command : adb shell reboot [enter]

now, lets talk about DDMS (Dalvik Debug Monitor)

This software is used for examining and tracing your application process, you can check every process, debug your application, take a capture of interface and logcat (event log).

If you want to check your application that supporting multitouch, you can use DDMS to check how it’s works.

You can access DDMS via command prompt or Run command : ddms [enter]

Enough 🙂

Paramore – Monster

You were my conscience, so solid now you’re like water.
And we started drowning, not like we’d sink any farther.
But I let my heart go, its somewhere down at the bottom.
But I’ll get a new one and come back for the hope that you´ve stolen.

I’ll stop the whole world, I’ll stop the whole world
From turning into a monster and eating us alive
Dont you ever wonder how we survived?
Now that you’re gone, the world is ours.

Oh oh oh oh, oh oh oh oh

I’m only human, I’ve got a skeleton in me
But i’m not the villain despite what you’re always preaching
Call me a traitor, I’m just collecting your victims
They’re getting stronger, I hear them calling (calling, calling)


I’ll stop the whole world, I’ll stop the whole world
From turning into a monster and eating us alive
Dont you ever wonder how we survived?
Now that you’re gone, the world is ours.

Well, you thought of straight big solutions, well I liked attention
We’re not always knowing the answers, you’re gonna lose it, you’re gonna lose it.

I’ll stop the whole world, I’ll stop the whole world
From turning into a monster and eating us alive
Dont you ever wonder how we survived?
Well, now that you’re gone the world is ours.

I’ll stop the whole world, I’ll stop the whole world
From turning into a monster and eating us alive
Dont you ever wonder how we survived?
Well, now that you’re gone the world is ours.

Download MP3 here.

Game sederhana Sudoku dan solvernya dengan metode algoritma Backtracking

Beberapa hari yang lalu temen minta bantu buatin game sudoku, ok..saya terima.
Saya coba-coba contoh game sudoku yang ada di code.google.com

Namun ternyata setelah itu, dosen dia meminta dia untuk ditambahin “penguatan tema skripsi” yang membuat skripsi tersebut lebih berbobot.

Terpikirlah oleh dia untuk menambahkan Solving problem masalah sudoku. Namun ternyata dia bingung…hahaha.
Dengan agak lama saya coba pelajari metode apa yang bisa dipakai untuk game sudoku tersebut.

Diapun bilang : “wid, coba metode Backtracking”

Ok..well, saya coba baca-baca ternyata gak ngerti..wakakakak..
Akhirnya terus berangsur-angsur saya coba pahami beberapa hal mengenai algoritma backtracking secara umum dari googling.

Dan kemudian game sudoku yang tadinya saya pelajari dari code.google, bisa bertahap saya tambahkan function backtracking.

Berikut gamenya :

Kalau mau nyobain di Android : silahkan download 😀

Game ini sudah ada fitur musik, problem solving sudoku dengan backtracking, dan level (mudah, sedang, sulit)

Kalau ada waktu, saya kembangin lagi deh 😀