<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - Playing with the N95 - The LBS API - Comments</title>
 <link>http://www.newlc.com/en/playing-n95</link>
 <description>Comments for &quot;Playing with the N95 - The LBS API&quot;</description>
 <language>en</language>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-50715</link>
 <description>&lt;p&gt;Hi&lt;br /&gt;
I changed the code in the following manner..&lt;/p&gt;

&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;/*&lt;br /&gt;============================================================================&lt;br /&gt; Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : CActivePositioner.cpp&lt;br /&gt; Author&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : MarCo&lt;br /&gt; Version&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :&lt;br /&gt; Copyright&amp;nbsp;&amp;nbsp; : Just Try It&lt;br /&gt; Description : CCActivePositioner implementation&lt;br /&gt;============================================================================&lt;br /&gt;*/&lt;br /&gt;#include &amp;quot;FirstGpsAppView.h&amp;quot;&lt;br /&gt;#include &amp;quot;CActivePositioner.h&amp;quot;&lt;br /&gt;&lt;br /&gt;TInt myVar;&lt;br /&gt;// CONSTANTS&lt;br /&gt;&lt;br /&gt;//Second&lt;br /&gt;//const TInt KSecond = 1000000;&lt;br /&gt;&lt;br /&gt;//Update interval&lt;br /&gt;//const TInt KUpdateInterval = KSecond;&lt;br /&gt;&lt;br /&gt;//Update time out&lt;br /&gt;//const TInt KUpdateTimeOut = 15*KSecond;&lt;br /&gt;&lt;br /&gt;//MaxAge&lt;br /&gt;//const TInt KMaxAge = 500000;&lt;br /&gt;&lt;br /&gt;//The name of the requestor&lt;br /&gt;_LIT(KRequestor,&amp;quot;First GPS Application&amp;quot;);&lt;br /&gt;&lt;br /&gt;CCActivePositioner::CCActivePositioner() : CActive(EPriorityStandard)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Standard priority&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CActiveScheduler::Add( this );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void CCActivePositioner::ConstructL(CFirstGpsAppView *aView)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Lbs Stuff&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Connect to the position server&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TInt error = iPosServer.Connect( );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Open subsession to the position server&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; error = iPositioner.Open(iPosServer);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set position requestor&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; error = iPositioner.SetRequestor( CRequestor::ERequestorService ,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CRequestor::EFormatApplication , KRequestor );&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; // Set update interval to one second to receive one position data per second&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp; /*&amp;nbsp; TPositionUpdateOptions upOpt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upOpt.SetUpdateInterval(TTimeIntervalMicroSeconds(KUpdateInterval));&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // If position server could not get position&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // In two minutes it will terminate the position request&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upOpt.SetUpdateTimeOut(TTimeIntervalMicroSeconds(KUpdateTimeOut));&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Positions which have time stamp below KMaxAge can be reused&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upOpt.SetMaxUpdateAge(TTimeIntervalMicroSeconds(KMaxAge));&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enables location framework to send partial position data&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; upOpt.SetAcceptPartialUpdates(EFalse);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set update options&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //error =&amp;nbsp; iPositioner.SetUpdateOptions( upOpt );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; iView = aView;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; iPositioner.NotifyPositionUpdate(iPositionInfo,iStatus);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SetActive();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;CCActivePositioner::~CCActivePositioner()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cancel(); // Cancel any request, if outstanding&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iPositioner.Close(); // Destroy the RTimer object&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iPosServer.Close();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Delete instance variables if any&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void CCActivePositioner::DoCancel()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iPositioner.CancelRequest(EPositionerNotifyPositionUpdate );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void CCActivePositioner::RunL()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch ( iStatus.Int() )&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The fix is valid&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KErrNone:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // The fix has only partially valid information.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // It is guaranteed to only have a valid timestamp&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case KPositionPartialUpdate:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Pre process the position information&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iView-&amp;gt;SetPos(iPositionInfo);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iView-&amp;gt;SetErrorCode(0);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iView-&amp;gt;SetErrorCode(iStatus.Int());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Request next position&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( myVar != 1 )&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; iPositioner.NotifyPositionUpdate( iPositionInfo, iStatus );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; myVar = 1;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CActiveScheduler::Stop();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set this object active&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SetActive();&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;is the above code correct? Need help..&lt;/p&gt;</description>
 <pubDate>Mon, 30 Mar 2009 09:34:46 +0200</pubDate>
 <dc:creator>nlvraghavendra</dc:creator>
 <guid isPermaLink="false">comment 50715 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-50712</link>
 <description>&lt;p&gt;HI&lt;br /&gt;
I went through the FirstGps code. I&#039;ve a doubt as i dont want to get the locations periodically. How to achieve that? &lt;br /&gt;
I removed the line SetUpdateOptions(UpOp) and it its not working.&lt;br /&gt;
Looking for help..&lt;/p&gt;

&lt;p&gt;Regards&lt;br /&gt;
NLV&lt;/p&gt;</description>
 <pubDate>Sun, 29 Mar 2009 15:09:00 +0200</pubDate>
 <dc:creator>nlvraghavendra</dc:creator>
 <guid isPermaLink="false">comment 50712 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-50500</link>
 <description>&lt;p&gt;Hi MarCo&lt;br /&gt;
Are there any way to know if user cancel the BT GPS selection dialog ?, because in all cases, the dialog showed after calling NotifyPositionUpdate, and when user cancel the dialog, RunL called and iStatus.Int() will give the same error, so is there any way to know if user cancel the dialog?&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br /&gt;
Ahmed.&lt;/p&gt;</description>
 <pubDate>Sat, 07 Mar 2009 10:02:12 +0100</pubDate>
 <dc:creator>ahmedj</dc:creator>
 <guid isPermaLink="false">comment 50500 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-48464</link>
 <description>&lt;p&gt;Hey very nice article..&lt;/p&gt;

&lt;p&gt;Although I am a newbie here still coud get the details&lt;/p&gt;

&lt;p&gt;thnx &lt;div class=&quot;bb-quote&quot;&gt;&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;img src=&quot;/sites/all/modules/smileys/packs/example/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; /&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/p&gt;</description>
 <pubDate>Mon, 08 Sep 2008 12:03:38 +0200</pubDate>
 <dc:creator>vikrant</dc:creator>
 <guid isPermaLink="false">comment 48464 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-47541</link>
 <description>&lt;p&gt;Hi,&lt;br /&gt;
I have two newbe&#039;s questions: &lt;br /&gt;
1.Is it possible to get more raw data from internal GPS via LBS API? Most needed are pseudorange measurements  which I want to use to recalculate the position by my application after it gets some correction data from the net.&lt;br /&gt;
2. Is the internal GPS module able to read RTCM correction data to recalculate the position to increase the accuracy? If yes, what methods inside LPS API are responsible for it?&lt;/p&gt;

&lt;p&gt;Java JSR 179 API do not offer above, so maybe LBS API will do? &lt;/p&gt;

&lt;p&gt;Thanks &lt;/p&gt;

&lt;p&gt;piter &lt;/p&gt;</description>
 <pubDate>Wed, 16 Jul 2008 23:44:52 +0200</pubDate>
 <dc:creator>pz1974</dc:creator>
 <guid isPermaLink="false">comment 47541 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-47026</link>
 <description>&lt;p&gt;Hi ,&lt;/p&gt;

&lt;p&gt;RSG file is  a header specifying resource identifier that  will be created in the epoc32/include directory.&lt;br /&gt;
Within CARBIDE  it can be found in the following path:&lt;br /&gt;
FirstGps/Includes/C:/Symbian/9.2/S60_3rd_FP1/Epoc32/include  &lt;br /&gt;
This file is generated by the build process.&lt;/p&gt;

&lt;p&gt;Christian&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Fri, 13 Jun 2008 11:35:21 +0200</pubDate>
 <dc:creator>christian le jalle</dc:creator>
 <guid isPermaLink="false">comment 47026 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-46695</link>
 <description>&lt;p&gt;I had a problem here.&lt;br /&gt;
When I tried building the project (from FirstGps.zip) appeared an error: &quot;FirstGps.rsg: No such or directory[/Symbian/Carbide/workspace/FirstGps/src/firstgpsappui.cpp:14]&quot;, I just started to use S60 SDK 3 FP1 (to nokia n95). Do anyone know exactly whats wrong (besides my terrible english)?&lt;br /&gt;
I couldn´t locate this missing file (FirstGps.rsg).&lt;/p&gt;</description>
 <pubDate>Fri, 30 May 2008 05:38:38 +0200</pubDate>
 <dc:creator>gtraballi</dc:creator>
 <guid isPermaLink="false">comment 46695 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: FirstGps  N95 error &quot;unable to install&quot;  installind FirstGps</title>
 <link>http://www.newlc.com/en/playing-n95#comment-46153</link>
 <description>&lt;p&gt;Hi&lt;/p&gt;

&lt;p&gt;When i wrate this tutorial it was just to present the symbian LBS API , It wasn&#039;t designed to be use as is in a real program.&lt;/p&gt;

&lt;p&gt;For your sis problem, you can check this url : &lt;a href=&quot;http://www.newlc.com/Why-the-fuck-won-t-my-SIS-file.html&quot;&gt;http://www.newlc.com/Why-the-fuck-won-t-my-SIS-file.html&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;--&lt;br /&gt;
MarCo&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Mon, 05 May 2008 09:35:18 +0200</pubDate>
 <dc:creator>marciallus</dc:creator>
 <guid isPermaLink="false">comment 46153 at http://www.newlc.com</guid>
</item>
<item>
 <title>FirstGps  N95 error &quot;unable to install&quot;  installind FirstGps sis</title>
 <link>http://www.newlc.com/en/playing-n95#comment-46097</link>
 <description>&lt;p&gt;Hi ,&lt;/p&gt;

&lt;p&gt;I have signed &quot;fistGps &quot; app with  symbiansigned  WEB, &lt;br /&gt;
after adding capabilities Location and ReadUserData , got a new sis file. &lt;br /&gt;
but  installation  of the signed sis file on N95 failed  &quot;unable to install&quot; &lt;br /&gt;
work fine on Emulator  &lt;br /&gt;
I have upgraded my N95firmwrar to the latest release. didn&#039;t fixed &lt;br /&gt;
Sounds it&#039;s coming from my Pkg file ?&lt;br /&gt;
I have created one with the following contents:&lt;/p&gt;

&lt;p&gt;; Installation file for FirstGps example application&lt;br /&gt;
;&lt;br /&gt;
;Languages&lt;br /&gt;
&amp;EN&lt;br /&gt;
;&lt;br /&gt;
; UID is the app&#039;s UID&lt;br /&gt;
;&lt;br /&gt;
#{&quot;FirstGps&quot;},(0xE1EF0018 ),2,0,0&lt;br /&gt;
;Supports Series 60 v 3.0&lt;br /&gt;
[0x101F7961], 0, 0, 0, {&quot;Series60ProductID&quot;}&lt;br /&gt;
%{&quot;Forum Nokia Test EN&quot;}&lt;br /&gt;
:&quot;Forum Nokia&quot;&lt;br /&gt;
;&lt;/p&gt;

&lt;p&gt;; Four files to install&lt;br /&gt;
;&lt;br /&gt;
&quot;$(EPOCROOT)\Epoc32\release\$(PLATFORM)\$(TARGET)\FirstGps.exe&quot;-&quot;!:\sys\bin\FirstGps.exe&quot;&lt;br /&gt;
&quot;$(EPOCROOT)\EPOC32\data\Z\resource\apps\FirstGps.rsc&quot;-&quot;!:\resource\apps\FirstGps.rsc&quot;&lt;br /&gt;
&quot;$(EPOCROOT)\EPOC32\data\Z\private\10003a3f\apps\FirstGps_reg.RSC&quot;-&quot;!:\private\10003a3f\import\apps\FirstGps_reg.rsc&quot;&lt;br /&gt;
&quot;$(EPOCROOT)\Epoc32\data\z\resource\apps\FirstGps.mif&quot; -&quot;!:\resource\apps\FirstGps.mif&quot;&lt;/p&gt;

&lt;p&gt;- &lt;br /&gt;
Run with no error .&lt;br /&gt;
I&#039;m wondering what I&#039;m doing wrong ???&lt;/p&gt;

&lt;p&gt;I have also used the FirstGps classes in another  application. worked fine on emulator &lt;br /&gt;
but crashed on the &quot;live&quot; N95  when calling the GPS function ....&lt;/p&gt;

&lt;p&gt;Any help and suggestion will be appreciated &lt;br /&gt;
Christian&lt;br /&gt;
 &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Wed, 30 Apr 2008 18:57:55 +0200</pubDate>
 <dc:creator>christian le jalle</dc:creator>
 <guid isPermaLink="false">comment 46097 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-45209</link>
 <description>&lt;p&gt;thanks for your reply ..ok i will the signing procedure &lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Wed, 19 Mar 2008 14:29:21 +0100</pubDate>
 <dc:creator>agamit</dc:creator>
 <guid isPermaLink="false">comment 45209 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-45020</link>
 <description>&lt;p&gt;Sorry but I can&#039;t help you&lt;/p&gt;

&lt;p&gt;You must have a problem with signing your application and there&#039;s a lot of information about the Symbian Signed procedure on the Web.&lt;/p&gt;

&lt;p&gt;The requested Capabilitie for GPS feature is Location.&lt;/p&gt;

&lt;p&gt;--&lt;br /&gt;
MarCo&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Tue, 11 Mar 2008 09:09:30 +0100</pubDate>
 <dc:creator>marciallus</dc:creator>
 <guid isPermaLink="false">comment 45020 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-45015</link>
 <description>&lt;p&gt;On March 10th, 2008 agamit said:&lt;br /&gt;
Hi ,&lt;br /&gt;
wen I tried to install your FirstGPS app with self signed in N-95 I am getting this error message&lt;/p&gt;

&lt;p&gt;&quot;required application access not granted&quot;&lt;/p&gt;

&lt;p&gt;Please help me regarding the same. &lt;/p&gt;

&lt;p&gt;And also I added criteria in FirstGPS app and ran it on simulator but its getting crash so i thought to run it on N-95 but I &lt;br /&gt;
am not able to install it &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Tue, 11 Mar 2008 05:38:44 +0100</pubDate>
 <dc:creator>agamit</dc:creator>
 <guid isPermaLink="false">comment 45015 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The LBS API are not Nokia</title>
 <link>http://www.newlc.com/en/playing-n95#comment-44996</link>
 <description>&lt;p&gt;Hi ,&lt;br /&gt;
wen I tried to install your FirstGPS app with self signed in N-95 I am getting this error message&lt;/p&gt;

&lt;p&gt;&quot;required application access not granted&quot;&lt;/p&gt;

&lt;p&gt;Please help me regarding the same. &lt;/p&gt;

&lt;p&gt;And also I added criteria in  FirstGPS app and ran it on simulator but its getting crash so i thought to run it on N-95 but  I &lt;br /&gt;
am not able to install it &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Mon, 10 Mar 2008 10:33:27 +0100</pubDate>
 <dc:creator>agamit</dc:creator>
 <guid isPermaLink="false">comment 44996 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-44364</link>
 <description>&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;If  you want to install on your device you can Sign an application for being installed on your phone only so you can have program run on your device, there&#039;s a lot of doc on the web about the SymbianSigned process, you can go to SymbianSigned.com to have more informations.&lt;/p&gt;

&lt;p&gt;What you can not do easily is signing an applicatio for every phone but that&#039;s not what you want I think&lt;/p&gt;

&lt;p&gt;--&lt;br /&gt;
MarCo&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Tue, 05 Feb 2008 15:57:48 +0100</pubDate>
 <dc:creator>marciallus</dc:creator>
 <guid isPermaLink="false">comment 44364 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95#comment-44362</link>
 <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Quick question:&lt;/p&gt;

&lt;p&gt;What have you had to do about signing/certifying this program?&lt;br /&gt;
I&#039;ve been told the N95 OS wont install any programs that aren&#039;t digitally signed/certified etc.&lt;/p&gt;

&lt;p&gt;My N95 is nearly on order, so haven&#039;t had a chance to play around with copying programs to / from any devices yet.&lt;br /&gt;
The program works fine on the emulator, I just need to wait &#039;till I have a copy of the real thing in my hands.&lt;br /&gt;
Good post tho...&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br /&gt;
Andy.&lt;/p&gt;

&lt;p&gt;P.S. Please reply using words a complete beginner would understand.&lt;/p&gt;</description>
 <pubDate>Tue, 05 Feb 2008 15:49:22 +0100</pubDate>
 <dc:creator>aml_1989</dc:creator>
 <guid isPermaLink="false">comment 44362 at http://www.newlc.com</guid>
</item>
<item>
 <title>Playing with the N95 - The LBS API</title>
 <link>http://www.newlc.com/en/playing-n95</link>
 <description>&lt;p&gt;So this tutorial will describe a simple App, very simple App, which just get the current location of the phone and write it on the view.&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.newlc.com/en/playing-n95&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.newlc.com/en/playing-n95#comments</comments>
 <category domain="http://www.newlc.com/en/taxonomy/term/1">Basics</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/37">S60</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/41">Symbian OS</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/54">NewLC</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/55">Nokia</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/208">N95</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/209">GPS</category>
 <category domain="http://www.newlc.com/en/taxonomy/term/210">LBS</category>
 <pubDate>Sun, 27 May 2007 18:09:38 +0200</pubDate>
 <dc:creator>marciallus</dc:creator>
 <guid isPermaLink="false">1097 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
