NFS Hot Pursuit for qvga, hvga and wvga (not fix on qvga)

The Android | What is Android | Androids | Android Market | App for Android | Android Apps | Android Application | Download Android | Tablet Android | Tablet PC | Phone Android | Android 2.2 | Android 2.3 | Android Free | Games for Android | Android Samsung | Galaxy Android | Android Google | Games Android | アンドロイド | Android | Android 2 | Android PC | Google Android | Android Galaxy | Phones with Android | Which Android Phone | What is an Android Tablet | What is an Android Phone

silahkan yang mau mencoba nfs hot pursuit buat hpnya kk2 sekalian. game ini udah ane test di galmin (qvga) dan tombol di layarnya masih ngaco bgt,tp klo kk mau coba ya silahkan aja..:-D.
yang hvga udah ane test di live walkman,masih bisa di pencet tombol2nya,ikutin aja gambar di bawah postingan ini buat layar hvga,nah yg wvga work perfect udh ane test di huawei ideos s7 sama galaxy s2. cekidot

Image Hosted by ImageShack.us


Image Hosted by ImageShack.us




Download apknya dimari(pilih sesuai resolusi layar android kk2 sekalian) :

-Nfs Hot Pursuit for qvga(240x320)

-Nfs Hot Pursuit for hvga (320x480)

-Nfs Hot Pursuit for wvga,fwvga (480x800),(480x854)

Download datanya dimari(untuk semua jenis layar) :

-Nfs Hot pursuit part 1

-Nfs Hot pursuit part 2

-Nfs Hot pursuit part 3

Extract data to sdcard>Android>Data

notes :

-masih belum ada apk yg fix utk qvga,setelah selesai The Android | What is Android | Androids | Android Market | App for Android | Android Apps | Android Application | Download Android | Tablet Android | Tablet PC | Phone Android | Android 2.2 | Android 2.3 | Android Free | Games for Android | Android Samsung | Galaxy Android | Android Google | Games Android | アンドロイド | Android | Android 2 | Android PC | Google Android | Android Galaxy | Phones with Android | Which Android Phone | What is an Android Tablet | What is an Android Phone pada saat pertama x di mainkan pasti tidak akan bisa di pencet tombol yg manapun,jadi pencet tombol home dlu agar keluar dr game baru masuk ke gamenya lg. disini saya mau menshare utk qvga jg agar tidak ada yg iri dan semua jenis layar android kebagian game ini.haha

-inilah gambar letak tombol2 yg harus di gunakan pada android hvga

Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us


Image Hosted by ImageShack.us

Mengubah Kerapatan Tampilan

Ketika anda binggung karena LCD pada android anda kecil, beberapa tampilan terpotong? Bagaimana caranya mengubah kerapatan agar tampilan menjadi terlihat semua dan terlihat menjadi lebih lebar? Dalam artikel ini saya akan mencoba menjelaskan bagaimana caranya untuk mengubah agar LCD kita menjadi seolah lebih lebar dengan mengubah kerapatan pada tampilan.

Baca selengkapnya »

Solusi Mengatasi Bootloop Ketika Gagal Edit Framework

Anda suka memodifikasi tampilan android anda? Apakah anda mengedit user interface anda melalui file framework? Bagaimana jika anda gagal mengedit dan android anda selalu restart berulang kali atau dengan kata lain bootloop? Mari kita bahas bersama tentang solusinya

Baca selengkapnya »

Android SDK / Terminal Command & Script

Sering kali kita jumpai kata "Android SDK" dan "Terminal Command" dalam dunia developing android. Apakah android sdk itu? Bagaimana menggunakannya? Mari kita bahas bersama tentang Android SDK dan Terminal Command

Baca selengkapnya »

DJ Mahesa Album ke 14

 The Android | What is Android | Androids | Android Market | App for Android | Android Apps | Android Application | Download Android | Tablet Android | Tablet PC | Phone Android | Android 2.2 | Android 2.3 | Android Free | Games for Android | Android Samsung | Galaxy Android | Android Google | Games Android | アンドロイド | Android | Android 2 | Android PC | Google Android | Android Galaxy | Phones with Android | Which Android Phone | What is an Android Tablet | What is an Android Phonelagunaya Mahes lewat link 4Shared dibawah...
CANG SING NGON>>   4Shared
The Android | What is Android | Androids | Android Market | App for Android | Android Apps | Android Application | Download Android | Tablet Android | Tablet PC | Phone Android | Android 2.2 | Android 2.3 | Android Free | Games for Android | Android Samsung | Galaxy Android | Android Google | Games Android | アンドロイド | Android | Android 2 | Android PC | Google Android | Android Galaxy | Phones with Android | Which Android Phone | What is an Android Tablet | What is an Android PhoneRecing Celubing>>   4Shared
Hancur>>  4Shared
Hay Gilr 2>>  4Shared
Karna Aku Mencintaimu>>  4Shared
Nyen To>>  4Shared
Pantet Uut>>  4Shared
GoThe Android | What is Android | Androids | Android Market | App for Android | Android Apps | Android Application | Download Android | Tablet Android | Tablet PC | Phone Android | Android 2.2 | Android 2.3 | Android Free | Games for Android | Android Samsung | Galaxy Android | Android Google | Games Android | アンドロイド | Android | Android 2 | Android PC | Google Android | Android Galaxy | Phones with Android | Which Android Phone | What is an Android Tablet | What is an Android Phonein Kita Donk>>  4Shared
Kiss Sabar versi Dj Mahes>>  4Shared



Unifying Key Store Access in ICS

[This post is a group effort by Tony Chan, Fred Chung, Brian Carlstrom, and Kenny Root. — Tim Bray]



Android 4.0 (ICS) comes with a number of enhancements that make it easier for people to bring their personal Android devices to work. In this post, we’re going to have a look at the key store functionality.

Back in Android 1.6 (Donut), a system key store was added for use by VPN. Although this was later expanded to support WiFi authentication, applications weren’t able to access it.

In the past, it was common practice for apps to maintain their own key store if they needed to authenticate a secure SSL web server, or authenticate the user to a server via a client certificate. While this works, it can present manageability issues in an enterprise environment where multiple certificates may be shared across a number of apps such as Email and Browser.

New in ICS: KeyChain

To bridge the gap in ICS, there’s a new API named KeyChain that regulates application access to the system key store and allows users to grant application access to the credentials stored there. Additionally, this API enables applications to initiate installation of credentials from X.509 certificates and PKCS#12 key stores.

The KeyChain API is rather simple. To install a key store or a certificate, you retrieve an install intent, supply the raw bytes of the credentials, and use the intent to launch a system installation dialog. If it’s a keystore, as in the example below, you’ll need provide the data in PKCS#12 format, and the user will have to know the PKCS#12 password.

  byte[] keystore = . . (read from a PKCS#12 keystore)

Intent installIntent = KeyChain.createInstallIntent();
installIntent.putExtra(KeyChain.EXTRA_PKCS12, keystore);
startActivityForResult(installIntent, INSTALL_KEYSTORE_CODE);

The install intent launches a system dialog that prompts the user to enter the password for the keystore.

This can also be used for installing organizational CA certificates which will then be trusted by all applications to authenticate to non-public servers with certificates issued by the same CA.

In ICS, Android no longer requires a separate password to protect the system credential storage. Rather, it uses the screen lock password for this purpose, and the Android Device Administration API can be used for central policy enforcement. This means, for example, that the screen lock password can’t be removed as long as the secured credentials remain on the device.

Accessing System Key Store Credentials

Once the system key store is configured, the KeyChain API offers functions such as requesting a client certificate for authenticating with an SSL server. The first time an application requests access, the user is prompted with a list of available certificates and can select one to grant access to that certificate to the application. If the user chooses to allow access to a certificate, a string alias name for the certificate is returned to the application. The application can then use the alias to access the certificate in the future without further user involvement.

The code below illustrates how an application can prompt the user to select a credential alias and grant access to the application. KeyChain will remember this selection such that the same application can save the credential alias selection and have access to the same certificate in future. For example, the Email application for ICS has implemented this feature in its Server Settings screen.

  KeyChain.choosePrivateKeyAlias(this,
new KeyChainAliasCallback() {

public void alias(String alias) {
// Credential alias selected. Remember the alias selection for future use.
if (alias != null) saveAlias(alias);
}
},
new String[] {"RSA", "DSA"}, // List of acceptable key types. null for any
null, // issuer, null for any
"internal.example.com", // host name of server requesting the cert, null if unavailable
443, // port of server requesting the cert, -1 if unavailable
null); // alias to preselect, null if unavailable

Once an application has been granted access to the certificate, it can access the private key through the getPrivateKey() method. It is worth noting that as with any PrivateKey objects, the application should not make assumptions about the encoding. For example, on some implementations the PrivateKey object may just be an opaque representation of a key stored in a hardware key store.

Here’s a sample code snippet that demonstrates the use of private key retrieved from the key store for signing:

    PrivateKey privateKey = KeyChain.getPrivateKey(context, savedAlias);
if (privateKey != null) {
...
Signature signature = Signature.getInstance("SHA1withRSA");
signature.initSign(privateKey);
...
}

A common use of the private key is for SSL client authentication. This can be implemented by using an HttpsURLConnection with a custom X509KeyManager that returns the PrivateKey retrieved from the KeyChain API. The open source Email application for ICS uses KeyChain with an X509ExtendedKeyManager. To learn more, have a look at the source code (in SSLUtils.java).

This API provides a unified way to access the system key store credentials. If your application uses client certificates (take note: enterprise email client or web browser developers) you should definitely look into the KeyChain API for your next update!

Tips Optimalkan Android Anda

OS Android mulai banyak dikembangkan mulai dari software maupun hardware, namun selain kedua hal tersebut, perkembangkan harus diiringi dari brainware atau segi pengguna (anda sebagai android user). Sudahkah anda mengoptimalkan android device yang anda miliki?

Baca selengkapnya »