[android-developers] android build steps in details

2011-09-15 Thread Ablaze
Hi,
I wanted to know the details of android build.

say, once we give
$ make - jn
which file android goes first and how the compilation process is
completed.
In other words, the step by step android build procedure which can
explain the sequence in which the different projects like bionic,
framework etc.. got build.

please comment/suggest links having the info.

-- 
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


[android-developers] Geo Tagging not working

2011-08-17 Thread Ablaze
Hi all,
>From the camera setting, I have enabled the "store location" option.
Also, checked that GPS is working fine.
Still in Image details, getting "unknown location".

Wanna know the probable causes for this.
Thanks in advance.

-- 
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


[android-developers] Re: Applying different commands at different location

2011-08-11 Thread Ablaze
Hi guys,
By little searching found out the following.
The script for the problem statement can be written as follows.

===
import os

path='/local/mnt/myspace/sample1'
os.chdir(path)
os.system('cmd1')

path='/local/mnt/myspace/sample2'
os.chdir(path)
os.system('cmd2')

path='/local/mnt/myspace'
os.chdir(path)
os.system('cmd3')

and so on...
===

if anyone have the better way to do it. Kindly post.
thanks in advance.



On Aug 11, 11:54 am, Ablaze  wrote:
> Hi...
> Its more related to python but the commands which i will be applying
> is on android source code.
>
> I am working in Ubuntu. I have a bunch of commands (say 10 commands
> like cmd1, cmd2, cmd3..cmd10)
> I want to write a python script, which can achieve the following:
>
> It should traverse through the directory structure and apply a command
> at particular directory path.
> The location and the commands are already known to me.
>
> Here is how, I want the script to operate.
>
> /local/mnt/myspace/sample1$ cmd1
> /local/mnt/myspace/sample2$ cmd2
> /local/mnt/myspace$ cmd3
> /local/mnt$cmd4
> /local/mnt/myspace/sample9$ cmd 8
> /local/mnt/myspace/sample3$ dmd10
>
> can someone please help on this.

-- 
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


[android-developers] Applying different commands at different location

2011-08-11 Thread Ablaze
Hi...
Its more related to python but the commands which i will be applying
is on android source code.

I am working in Ubuntu. I have a bunch of commands (say 10 commands
like cmd1, cmd2, cmd3..cmd10)
I want to write a python script, which can achieve the following:

It should traverse through the directory structure and apply a command
at particular directory path.
The location and the commands are already known to me.

Here is how, I want the script to operate.

/local/mnt/myspace/sample1$ cmd1
/local/mnt/myspace/sample2$ cmd2
/local/mnt/myspace$ cmd3
/local/mnt$cmd4
/local/mnt/myspace/sample9$ cmd 8
/local/mnt/myspace/sample3$ dmd10

can someone please help on this.

-- 
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