[android-developers] Re: Update to 1.6 stops some ADC2 apps from working

2009-10-05 Thread julianc

I guess I've got exactly the same problem. The original app works fine
with 1.5. Have released a fix for 1.6 after some early adopters
reported problems, so the current version on the Marketplace works
fines with 1.6. However the patch was released after the ADC2 app was
submitted which means that my ADC2 app will fail with 1.6, which is a
shame as I've been getting really good reviews.

J.

On Oct 5, 7:31 am, bellapariah bellapar...@gmail.com wrote:
 I just got the 1.6 download and found out my ADC2 app is not working
 anymore. Works fine on 1.5 but people with 1.6 can't log in. Guess
 that explains the sudden drop in new accounts being created (We got
 around 70 testers before numbers plummeted to 5 to 6 over the
 weekend). :(  If Google planned to release 1.6 in the middle of a
 contest, they should have informed developers and given them the tools
 to test their app on this platform. We spent months on creating a high
 quality app for this contest and now people can't even judge it! There
 are probably hundreds of other developers that spent sleepless nights
 working their butt off to finish before the deadline just to have
 their chances decimated by google. All I can say is that I'm extremely
 disappointed in the way Google has handled this entire contest and I
 think it is extremely unfair and inconsiderate the way they are
 treating developers that they are supposed to be attracting to the
 Android platform.

 Shelby
--~--~-~--~~~---~--~~
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: Update to 1.6 stops some ADC2 apps from working

2009-10-05 Thread julianc

Presumably, this shouldn't be a problem as the contest rules specify
1.5 as the target platform. Anyone from Google care to comment?

On Oct 5, 11:54 am, julianc julian.coom...@googlemail.com wrote:
 I guess I've got exactly the same problem. The original app works fine
 with 1.5. Have released a fix for 1.6 after some early adopters
 reported problems, so the current version on the Marketplace works
 fines with 1.6. However the patch was released after the ADC2 app was
 submitted which means that my ADC2 app will fail with 1.6, which is a
 shame as I've been getting really good reviews.

 J.

 On Oct 5, 7:31 am, bellapariah bellapar...@gmail.com wrote:

  I just got the 1.6 download and found out my ADC2 app is not working
  anymore. Works fine on 1.5 but people with 1.6 can't log in. Guess
  that explains the sudden drop in new accounts being created (We got
  around 70 testers before numbers plummeted to 5 to 6 over the
  weekend). :(  If Google planned to release 1.6 in the middle of a
  contest, they should have informed developers and given them the tools
  to test their app on this platform. We spent months on creating a high
  quality app for this contest and now people can't even judge it! There
  are probably hundreds of other developers that spent sleepless nights
  working their butt off to finish before the deadline just to have
  their chances decimated by google. All I can say is that I'm extremely
  disappointed in the way Google has handled this entire contest and I
  think it is extremely unfair and inconsiderate the way they are
  treating developers that they are supposed to be attracting to the
  Android platform.

  Shelby
--~--~-~--~~~---~--~~
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: ADC2 entries so far...

2009-09-15 Thread julianc

Travel, Traffic4England, http://www.aquarius-solutions.net

--~--~-~--~~~---~--~~
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] Mapview setTraffic UK

2009-07-22 Thread julianc

Hi,
Does map.setTraffic(true) work with maps in the UK from within an
application? I can see the traffic effect on my HTC Magic using plain
google maps. However when I try and enable the traffic view from
within a MapView inside my application nothing appears to happy.

I already have a map overlay defined, could this be getting in the way
of the traffic overlay?

Thanks,

Julian.
--~--~-~--~~~---~--~~
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: Problem with a AndroidManifest.xml for a service

2009-06-24 Thread julianc

This is just an observation but having CAPITALISATION in you're
package names is not going to help you in the longer term. All package
names should be lower case, Classes should start with and upper case
letter. Then its a lot easier to figure out which is which, and your
manifest (among other things) becomes a lot easier for you (and
others) to read. For and example just examine the package and class
names of the standard android libraries.


Regards,

J.

On Jun 23, 1:46 pm, GAYET Thierry thierry_ga...@yahoo.fr wrote:
 Hello,

 I have used the Eclipse IDE for starting an Android Service but i have one 
 problem with my AndroidManifest.xml file on the line of the service tag.

 Here is my AndroidManifest.xml :

     package=com.OrangeLabs.gbaAndroid.BootstrapService
     application
         activity class=.BootstrapService android:label=@string/app_name
             intent-filter
                 action android:value=android.intent.action.MAIN /
                 category android:value=android.intent.category.LAUNCHER /
             /intent-filter
         /activity
        service class=”.BootstrapService”/     -- my problem is here !!
     /application
 /manifest

 And my Service skeleton :

 package com.OrangeLabs.gbaAndroid.BootstrapService;

 import android.app.Notification;
 import android.app.NotificationManager;
 import android.app.PendingIntent;
 import android.app.Service;
 import android.content.Intent;
 import android.os.Binder;
 import android.os.IBinder;
 import android.os.Parcel;
 import android.widget.Toast;

 //Need the following import to get access to the app resources, since this
 //class is in a sub-package.
 import com.OrangeLabs.gbaAndroid.BootstrapService.R;

 // @brief Main class for the BootstrapService Android service
 public class BootstrapService extends Service
 {
     // Actions to perform when service is started.
     @Override
     public void onStart(Intent intent, int startId)
     {
         // Test the TelephonyManager API (can we have an access to the 
 authenfication
         // function buildin the sim/usim card

         // Create the shared memory used between the bootstrap client and the
         // application in link with a NAF server

         // Check and wait until the WIFI become usable

     } // onStart

     // Initialize variables, get references to GUI objects
     @Override
     public void onCreate()
     {

     } // onCreate
     @Override
     public IBinder onBind(Intent intent)
     {

         return null;
     } // onBind

 } // BootstrapService

 Is there a place where i can view / download some services sample ?

 Regards

 Thierry GAYET
 NextInnovation.org
 +33(0)663.849.589

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