tags:

views:

26

answers:

1

when I am trying to install my application apk into suitable emulator the followingerrors are coming

C:\Program Files\android-sdk-windows\tools>adb install TeslaWorldNet.apk 1583 KB/s (2911477 bytes in 1.796s) Can't dispatch DDM chunk 46454154: no handler defined Can't dispatch DDM chunk 4d505251: no handler defined pkg: /data/local/tmp/TeslaWorldNet.apk Failure [INSTALL_FAILED_OLDER_SDK]

What is the problem .Thanks in advance

+5  A: 

You just have to read the error message... it clearly says: INSTALL_FAILED_OLDER_SDK. So, you are trying to install an application with a SDK version that is superior to the SDK installed on the device.

Cristian