On Feb 12, 1:35 pm, mechatronicsStudent
<filipp.mich...@googlemail.com> wrote:
> I´ve written a programm helloWorld.apk and installed it with adb
> install on the phone.
>
> Were can I find this programm now in the file system?
> And how can I get this programm starting just by typing helloWorld in
> the shell?

The apk is installed in /data/app and files used by your application
are stored (normally) in /data/data/com.example.yourpackagename. The
apk files are not directly executable, but there is a command that you
can use to invoke an activity from the command-line:

am start -n com.example.yourpackagename/.YourActivity

--
Jon

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to