Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-03 Thread TreKing
On Tue, Aug 2, 2011 at 11:55 PM, usafrmajor usafrma...@gmail.com wrote:

 Just wondering, is it possible to have both keys for the map view active?


Active as both set? No. But you can determine whether you are running in
debug or release mode and use the appropriate key or layout in either case.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

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

Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-03 Thread Adam Ratana
TreKing, would you mind giving some quick details on how you'd implement 
that?  I find myself changing the key manually when I go to upload a 
release, not very ideal or convenient. 

On Wednesday, August 3, 2011 8:17:56 AM UTC-4, TreKing wrote:

 On Tue, Aug 2, 2011 at 11:55 PM, usafrmajor usafr...@gmail.com wrote:

 Just wondering, is it possible to have both keys for the map view active?


 Active as both set? No. But you can determine whether you are running in 
 debug or release mode and use the appropriate key or layout in either case.



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

Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-03 Thread Nick Risaro
I'm not TreKing :)

I do it with a method like this

private boolean isDebuggable(Context context) {
 return (context.getApplicationInfo().flags 
 ApplicationInfo.FLAG_DEBUGGABLE) != 0;
 }


On Wed, Aug 3, 2011 at 3:39 PM, Adam Ratana adam.rat...@gmail.com wrote:

 TreKing, would you mind giving some quick details on how you'd implement
 that?  I find myself changing the key manually when I go to upload a
 release, not very ideal or convenient.

 On Wednesday, August 3, 2011 8:17:56 AM UTC-4, TreKing wrote:

 On Tue, Aug 2, 2011 at 11:55 PM, usafrmajor usafr...@gmail.com wrote:

 Just wondering, is it possible to have both keys for the map view active?


 Active as both set? No. But you can determine whether you are running in
 debug or release mode and use the appropriate key or layout in either case.



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

Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-03 Thread TreKing
On Wed, Aug 3, 2011 at 1:39 PM, Adam Ratana adam.rat...@gmail.com wrote:

 TreKing, would you mind giving some quick details on how you'd implement
 that?  I find myself changing the key manually when I go to upload a
 release, not very ideal or convenient.


This is what I do too - it's infrequent enough not to bother me.

However, at some point I plan to use
thishttp://developer.android.com/reference/android/content/pm/ApplicationInfo.html#FLAG_DEBUGGABLEand
thishttp://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/MapView.html#MapView(android.content.Context,
java.lang.String) to have it work automagically.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-02 Thread usafrmajor
I have an application that used Google Maps.  When I am developing and 
installing on my device the roads and such are displayed when I open a map, 
however when I sign the app and deploy on the Android Market all I see is a 
dashed grid, that is no roads or other map objects.  However, my custom 
marker overlays do show up.

I have a Map Key in the MapView XML file.   Can anyone tell me what may be 
going wrong?

thanks

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

Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-02 Thread Brad Gies


You're probably using your development map key. You need another key for 
your prod app.


Sincerely,

Brad Gies
---
MaxHOMEValue.com
Kelowna, British Columbia, Canada
email: bg...@maxhomevalue.com
http://maxhomevalue.com  http://bgies.com
---


On 02/08/2011 8:11 PM, usafrmajor wrote:
I have an application that used Google Maps.  When I am developing and 
installing on my device the roads and such are displayed when I open a 
map, however when I sign the app and deploy on the Android Market all 
I see is a dashed grid, that is no roads or other map objects.  
However, my custom marker overlays do show up.


I have a Map Key in the MapView XML file.   Can anyone tell me what 
may be going wrong?


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


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


Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-02 Thread TreKing
On Tue, Aug 2, 2011 at 10:11 PM, usafrmajor usafrma...@gmail.com wrote:

 Can anyone tell me what may be going wrong?


You didn't get a new map key for your release / signing key.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

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

Re: [android-developers] Google Map Road Showing In Dev But not When Signed for Deployment

2011-08-02 Thread usafrmajor
Yep, that was it.  Thanks

Just wondering, is it possible to have both keys for the map view active?  I 
am assuming not, but thought I would ask just in case I could some way

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