I'm making some changes to the provisioning app that ships with the Android Eclair source code. I'd like a way to launch the app to test it that doesn't involve reflashing my device or restarting my emulator. The app is located in packages/apps/Provision and the main Activity is src/com/android/provision/DefaultActivity.java. I've tried:
adb shell am start -a android.intent.action.MAIN -n com.android.provision/.DefaultActivity
adb shell am start -n com.android.provision/com.android.provision.DefaultActivity
Both of which return:
Starting: Intent { act=android.intent.action.MAIN cmp=com.android.provision/.DefaultActivity }
Error type 3
Error: Activity class {com.android.provision/com.android.provision.DefaultActivity} does not exist.