Hi Thanks for the steps.
I got this error when I previously tried to push config file.
failed to copy 'd:/APK_files/config.ini' to '/sdcard/config.ini': Read-only file system
Then I realised that emulator is to be started and loaded with sdcard, then it worked.
Here are the steps I followed -
1. mksdcard -l SD256M 256M sdcard.img
2. Started the emulator and loaded the SDcard from command prompt
emulator -avd My_android1.5 -sdcard sdcard.img
Note - I had already made My_android avd using android create avd --target 2 --name newavd
3. once emulator is started, in another command prompt instance copied a file to SDcard.
adb push d:/APK_files/config.ini sdcard/config.ini
4. The I installed the apk file using the command
adb install file_name.apk
Now the application launches successfully, but it gets exception http error 500 for the URL mentioned in config.ini file. So the application do not connects.

trying to figure this out..