Go Back   Android Forums > Android Development > Application Development
Application Development Dev Lounge for the Coder Folks
Gamers - Check out our new sister sites!
Nintendo Wii U!    |    OUYA - $99 Android System!

test: Reply
 
LinkBack Thread Tools
Old May 11th, 2009, 05:07 AM   #1 (permalink)
New Member
Thread Author (OP)
 
Join Date: May 2009
Posts: 3
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default NMEA File and 1.5 SDK

Hi everyone, I am using the new 1.5 SDK and I am trying to extract NMEA files but I failed:
I tried to do this:

Code:
C:\AndroidSDK\tools>adb pull data/misc/location/gps/nmea C:\Android
and I got this error:
remote object 'data/misc/location/gps/nmea' does not exist

I am thinking that there is no such folder location.

Please help me.
Thanks in advance!

abir.said is offline  
Last edited by abir.said; May 11th, 2009 at 05:08 AM.
Reply With Quote
Sponsors
Old May 11th, 2009, 07:01 AM   #2 (permalink)
New Member
 
Join Date: Feb 2009
Posts: 8
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default

you need to make sure to put a / at the beginning of the list. So it would be:

adb pull /data/misc/location/gps/nmea C:\Android

if that doesn't work, try the following:
adb remount
adb shell
ls /data/misc/location/gps

see if nmea is listed there. if not, go back one directory:
ls /data/misc/location

see if gps is listed there. if not, go back etc.. until you find where the directory starts.

also, while in the shell, you can use cp to copy from one location to another:
cd /data/misc/location/gps
cp all nmea C:\Android
PCTechNerd is offline  
Last edited by PCTechNerd; May 11th, 2009 at 07:02 AM.
Reply With Quote
Old May 11th, 2009, 12:48 PM   #3 (permalink)
New Member
Thread Author (OP)
 
Join Date: May 2009
Posts: 3
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks PCTechNerd for the response,
I have searched the folders: location and gps but I found nothing.

Maybe they have changed the names of these folders with this new version of the SDK.

Does anyone has encountered the same problem?
Does someone can help me.
Thank you in advance.
abir.said is offline  
Reply With Quote
Old May 26th, 2009, 08:52 PM   #4 (permalink)
New Member
 
Join Date: May 2009
Posts: 1
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi, All

I can find the way to get NMEA file after installing SDK1.5.
If you hava the old version SDK1.0 that was installed in your PC, the way is running the old emulator.exe program. If you don't have that, you must install SDK1.0 in your PC.
After running emulator.exe, you run CMD.exe and move to the directory of SDK1.0 tools. And you enter the command below.
adb pull /data/location/gps/nmea .
You can get the NMEA file in the tools directory.

Thank you.
Yoshi,Ishibashi is offline  
Reply With Quote
Reply


Go Back   Android Forums > Android Development > Application Development
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 02:36 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.