Issue
I am using Titanium
framework for creating Android apps in Mac OSX. I am searching for the location of android apps which are created using Titanium.
We can see our iPad
or iPhone
apps based on the iOS version
. Its location is its iOS version folder. But I am unable to find android apps location.
I have googled for it but no help.
Thanks.
Solution
Usually they are saved in your user profile. ~/.android/avd
is a typical location. It is also possible that they are located within the SDK's directory. This could happen if you set ANDROID_SDK_HOME
as environment variable.
To access the file system of android emulator you have two possibilities:
Use the SDK Device Monitor. It provides a graphical interface to the file system of the emulator. If you have android SDK in your PATH environment you can access it via Terminal ->
monitor
.Alternatively you can access the file system via command line shell: Terminal ->
adb -e shell
. You already have root access.
Answered By - mr.VVoo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.