[android-developers] Re: How to insure the singed file is correct?

2008-11-21 Thread atrus123

Hello,

If you try and install a signed package on top of a pre-existing
unsigned package, you will get this error.  To resolve, uninstall the
currently existing package from the G1.

Sometimes if an install has previously failed, you may have to
reinstall the unsigned package and then uninstall in order to remove
any left-over files (databases, etc.)

Hope this helps,

J.

On Nov 21, 11:36 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I upgraded my android app version, but user report me Error: "Package
> file was not signed correctly".
>
> keytool -genkey    -keystore keys/androidrss.keystore -alias
> androidrss.keystore -keyalg RSA -validity 1
>    keytool -genkey -v -keystore keys/androidrss.keystore -alias
> androidrss.keystore -keyalg RSA -validity 1
>
> jarsigner -verbose -keystore keys/androidrss.keystore -signedjar
> androidrss_signed.apk androidrss.apk androidrss.keystore
>
> I retry this twice, but not fix this problem. can you help me asap?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: What are the possible way to work on database?

2008-11-21 Thread atrus123

Hello Dilu,

Have you gone through the Android Notepad tutorial yet?  There is a
lot of database stuff in there with examples that fit what you're
asking.

J.

On Nov 21, 1:21 pm, dilu <[EMAIL PROTECTED]> wrote:
> Hi,
> I have a question in my mind that what are the possible way to work on
> databse?
> My means, can we create the database in our main file only through
> code? OR first create the database using Sqlite manager and then
> integrate it to the code.If second option, we can use then it will be
> little bit easy comparing to the first method.If second method works
> in android then can anyone provide me a sample code for this?
> I will be highly obliged for this.
> Thanks
> Dilu.
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Where to find Jarsigner

2008-11-12 Thread atrus123

If you are still having a tough time finding it, and it isn't easily
accessible from the command line, maybe do something like this:

find / -name jarsigner

Then navigate to that directory, and run it like this ./jarsigner -
args

(won't work in Windows)

On Nov 11, 5:20 am, CM <[EMAIL PROTECTED]> wrote:
> I have checked the bin folder of my jre and it is not there.  Keytool
> is there, but no jarsigner.  I tried googling this but all I found was
> to check the bin folder.  Does anyone know where jarsigner is or know
> where I can download it from?
>
> 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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Unsuccessful Install

2008-11-10 Thread atrus123

You may also need to set mimetype if you're installing from a
website.  You can do this by editing an .htaccess file.

On Nov 10, 2:56 pm, Mark Murphy <[EMAIL PROTECTED]> wrote:
> BCatDC wrote:
> > however the exported .apks still won't install over the air or
> > from the sd card.
>
> If they're unsigned, I think that is to be expected. I'm fairly certain
> that anything downloaded (Market, Web site, alternative markets) needs
> to be signed. I'm less certain about installing off an SD card.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
>
> Android Training on the Ranch! -- Mar 16-20, 
> 2009http://www.bignerdranch.com/schedule.shtml
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Unsuccessful Install

2008-11-10 Thread atrus123

BTW -- it is possible to install something on your G1 without signing
using Eclipse or the adb shell application.  You can find adb from the
command line under tools.  Try ./adb install myapp.apk.

On Nov 10, 12:27 pm, atrus123 <[EMAIL PROTECTED]> wrote:
> I'm guessing you need to sign your application.
>
> This is the best description I've found on how to do this:
>
> http://www.anddev.org/signing_your_apk-application_for_release_keytoo...
>
> On Nov 9, 11:57 pm, BCatDC <[EMAIL PROTECTED]> wrote:
>
> > Hi there,
>
> > I'm just getting started with android developing. I have a very
> > frustrating problem. I've worked with samples to do a number of
> > little .APKs a few different hello worlds. A slightly modded version
> > of lunar lander. Very basic stuff. They work great in the emulator,
> > and they seem to export just fine. But then things go south.
>
> > I've used my web server to download them over the air. I've transfered
> > them to the sd card and tried to install them with Apps Installer (by
> > modmyGphone) It doesn't seem to matter what I do. Every install fails
> > with the stupid check mark and the words "Unsuccessful Install."
> > Needless to say I'm very frustrated, I have no idea how to trouble
> > shoot this and move forward.
>
> > FYI I have Unknown Sources checked in my settings. And I've
> > successfully installed plenty of non market apps both over the air and
> > off the sd card.
>
> > Alright android geniuses thats where I'm at can you help me?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Unsuccessful Install

2008-11-10 Thread atrus123

I'm guessing you need to sign your application.

This is the best description I've found on how to do this:

http://www.anddev.org/signing_your_apk-application_for_release_keytooljarsigner-t3069.html


On Nov 9, 11:57 pm, BCatDC <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I'm just getting started with android developing. I have a very
> frustrating problem. I've worked with samples to do a number of
> little .APKs a few different hello worlds. A slightly modded version
> of lunar lander. Very basic stuff. They work great in the emulator,
> and they seem to export just fine. But then things go south.
>
> I've used my web server to download them over the air. I've transfered
> them to the sd card and tried to install them with Apps Installer (by
> modmyGphone) It doesn't seem to matter what I do. Every install fails
> with the stupid check mark and the words "Unsuccessful Install."
> Needless to say I'm very frustrated, I have no idea how to trouble
> shoot this and move forward.
>
> FYI I have Unknown Sources checked in my settings. And I've
> successfully installed plenty of non market apps both over the air and
> off the sd card.
>
> Alright android geniuses thats where I'm at can you help me?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: AppMarket: does changing title/description of an app wipe out ratings and reviews?

2008-11-04 Thread atrus123

IIRC, you can change the title/desc without it wiping out ratings,
etc.

I hope Google fixes this soon.  I try and do frequent updates for my
users, and I hate seeing all their ratings/comments go away every time
I add a feature.

On Nov 3, 4:24 pm, zl25drexel <[EMAIL PROTECTED]> wrote:
> Hi all
>
> I know putting a new version upgrade will clear out ratings and
> reviews. Does anyone knows if changing title/description of an app
> will wipe out ratings and reviews?
>
> 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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to make a desktop widget?

2008-11-04 Thread atrus123

I have high hopes that this will be supported in SDK 1.1.

On Nov 4, 12:39 pm, Romain Guy <[EMAIL PROTECTED]> wrote:
> You can't :)
>
> On Tue, Nov 4, 2008 at 5:26 AM, blau <[EMAIL PROTECTED]> wrote:
>
> > Anyone have a clue how to make a desktop widget? I haven't seen any
> > created ones. I haven't been able to find the source for the google
> > created ones in the android source. I have no clue how to start.
>
> --
> Romain Guywww.curious-creature.org
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Testing internationalization...

2008-11-04 Thread atrus123

Hello,

I'm currently working to add international variations to my app, but
I'm not sure how to test them.  Is there some way in the emulator or
the phone to mimic being in the UK?

I'm handling international variations by using the values-en-rUK/
method.  Should there always be a generic values/ folder in case there
is a user outside those countries or will that always trump the
others?

Also, is there a schedule as to when the G1 will be released in
countries other than the US and the UK?

Thank you for any insight.
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Quick method for capturing country...

2008-11-02 Thread atrus123

Is there a class that provides quick method for capturing the user's
country without needing to query the GPS?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: AuthenticationException when accessing Google Spreadsheets

2008-10-30 Thread atrus123

Did you ever have any luck getting this to work?  I'm also interested
in accessing Google Spreadsheets, but before I spend a bunch of man
hours trying, I'd like to know if it's even possible.

On Oct 15, 9:43 am, androidian <[EMAIL PROTECTED]> wrote:
> I removed the libs and added gdata-core and gdata-spreadsheetas
> source into my project, but I get the same error.  The project has no
> errors, so Dalvik has compiled successfully.  Why can't it login?
>
> Here's the relevant stack trace from ddms:
> 10-15 21:34:38.216: WARN/System.err(205):
> com.google.gdata.util.AuthenticationException: Error connecting with
> login URI
> 10-15 21:34:38.225: WARN/System.err(205):     at
> com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthToken 
> Factory.java:
> 421)
> 10-15 21:34:38.237: WARN/System.err(205):     at
> com.google.gdata.client.GoogleAuthTokenFactory.setUserCredentials(GoogleAut 
> hTokenFactory.java:
> 301)
> 10-15 21:34:38.246: WARN/System.err(205):     at
> com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java :
> 323)
> 10-15 21:34:38.246: WARN/System.err(205):     at
> com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java :
> 300)
> 10-15 21:34:38.255: WARN/System.err(205):     at
> com.mydomain.hello.HelloAndroid.login4(HelloAndroid.java:39)
> 10-15 21:34:38.255: WARN/System.err(205):     at
> com.mydomain.hello.HelloAndroid.onCreate(HelloAndroid.java:25)
> 10-15 21:34:38.255: WARN/System.err(205):     at
> android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:
> 1122)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.app.ActivityThread.performLaunchActivity(ActivityThread.java:
> 2103)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:
> 2156)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.app.ActivityThread.access$1800(ActivityThread.java:112)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.app.ActivityThread$H.handleMessage(ActivityThread.java:1580)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.os.Handler.dispatchMessage(Handler.java:88)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.os.Looper.loop(Looper.java:123)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> android.app.ActivityThread.main(ActivityThread.java:3742)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> java.lang.reflect.Method.invokeNative(Native Method)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> java.lang.reflect.Method.invoke(Method.java:515)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> com.android.internal.os.ZygoteInit
> $MethodAndArgsCaller.run(ZygoteInit.java:739)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:497)
> 10-15 21:34:38.265: WARN/System.err(205):     at
> dalvik.system.NativeStart.main(Native Method)
> 10-15 21:34:38.265: WARN/System.err(205): Caused by:
> java.io.IOException: Hostname  was not verified
> 10-15 21:34:38.287: WARN/System.err(205):     at
> org.apache.harmony.luni.internal.net.www.protocol.http.HttpConnection.getSecureSocket(HttpConnection.java:
> 169)
> 10-15 21:34:38.287: WARN/System.err(205):     at
> org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnection
> $HttpsEngine.connect(HttpsURLConnection.java:398)
> 10-15 21:34:38.297: WARN/System.err(205):     at
> org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection...
> 1129)
> 10-15 21:34:38.297: WARN/System.err(205):     at
> org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnection.getOutputStream(HttpsURLConnect...
> 262)
> 10-15 21:34:38.306: WARN/System.err(205):     at
> com.google.gdata.client.GoogleAuthTokenFactory.makePostRequest(GoogleAuthTo 
> kenFactory.java:
> 477)
> 10-15 21:34:38.306: WARN/System.err(205):     at
> com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthToken 
> Factory.java:
> 418)
> 10-15 21:34:38.306: WARN/System.err(205):     ... 18 more
>
> Any ideas?
>
> thanks,
> Ian
>
> On Oct 13, 11:37 pm, androidian <[EMAIL PROTECTED]> wrote:
>
> > Great stuff Mark, thank you very much.  As a first step I'll try
> > recompiling the gdata stuff and see what happens.
> > cheers,
> > Ian
>
> > On Oct 13, 10:14 pm, Mark Murphy <[EMAIL PROTECTED]> wrote:
>
> > > androidian wrote:
> > > > I imported gdata-core-1.0.jar and gdata-spreadsheet-1.0.jar into my
> > > > project and the SpreadsheetService class comes from the latter.  The
> > > > HTTP requests must be being done in the setUserCredentials method (all
> > > > inside those two jars).  Perhaps one of those jars is not compatible
> > > > with android?  
>
> > > Off the cuff, given the symptoms, I'd say that's likely.
>
> > >  > Is there a support matrix somewhere that I can check?
>
> > > Not that I'm aware of.
>
> > > There are at least two possible problems with any give

[android-developers] How long does it take for ratings/reviews to return?

2008-10-29 Thread atrus123

So I've updated my app, and as warned, all my ratings and reviews are
gone.  How long does it take for those to return?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Why Android Market does not accept payments from China?

2008-10-27 Thread atrus123

Wait... we can register as Android developers already?  I expected to
see an announcement on the Android blog.  Where's the link?

On Oct 27, 11:06 am, NY <[EMAIL PROTECTED]> wrote:
> I come from China and register as a developer
> When I click continue  and pay my registration fee with google
> checkout
> System said "Android Market does not accept payments from China"
> I bought google apps use the some card before
> When will Android Market support developer from China?
> Or just a mistake?
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ADB via USB

2008-10-22 Thread atrus123

I work in Gentoo, and I don't automount any USB device.  Oddly,
accessing the G1 was surprisingly easy.  I created a directory in my
home and mounted:

sudo mount /dev/sdb ~/g1

ls ~/g1 showed the folders on the SD card.

I found it odd that the mountpoint was actually sdb as opposed to sdb1
or something like that.

Using adb to list devices showed the G1 connected.  From there, I
could interface with it just as I would the emulator.

Not sure if this will help anyone using other distros or Windows, but
I figure I'll drop it here anyway just in case.

On Oct 22, 4:20 pm, Ed Burnette <[EMAIL PROTECTED]> wrote:
> It's not working for me. The device driver won't install, and I get
> this error from Vista64:
>
> Description:
>   Windows detected a new device attached to your computer, but could
> not find the driver software it needs to make the device usable. Each
> device manufacturer typically includes driver software of a CD that
> comes with the device, or as a download from its website. The hardware
> ID of your device is USB\VID_0BB4&PID_0C02&REV_0100&MI_01.
>
> Problem signature:
>   Problem Event Name:   PnPDriverNotFound
>   Architecture: x64
>   Hardware Id:  USB\VID_0BB4&PID_0C02&REV_0100&MI_01
>   OS Version:   6.0.6001.2.1.0.256.4
>   Locale ID:    1033
>
> On Oct 22, 3:03 pm, "Xavier Ducrohet" <[EMAIL PROTECTED]> wrote:
>
> > Hi Mark,
>
> > We just updated the doc regarding developing on devices, for all platforms.
>
> >http://code.google.com/android/intro/develop-and-debug.html#developin...
>
> > Xav
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Market Place and Trial Software?

2008-10-22 Thread atrus123

Another thing I was wondering if it would be possible to simply start
charging for the app once that becomes an option.  So we'd post our
stuff now... free... and then go in and edit the price later on.  It
might be a good option; by then we'd have feedback, and any popularity
might drive future revenue.

I'd love to hear from a Google employee about how they expect this to
work.

On Oct 22, 4:07 pm, cyntacks <[EMAIL PROTECTED]> wrote:
> Hi Al,
>
> Great stuuf, to be honest I'm not as adept at licensing as I should
> be, given my job description and all! But there is def. a need for
> licensing of some sort. I'm really surprised we have to wait until Q1
> (which, as we all know could mean as late as March 31!). It just
> really puts a damper on the whole thing and is going to create
> headaches for most of us.
>
> Time-to-Market is huge in this industry, and those of us who worked
> very long days for too long toiling in the dark will not be able to
> benefit (read "$") from the vacuum created when the new store goes
> live on Monday. Just a shame, that's all... But then again, I guess we
> could use the opportunity to perfect our products, or create more
> apps.
>
> Keep on coding, and def. let me know about the licensing idea, very
> interested.
>
> Kevin
>
> On Oct 22, 3:57 pm, Al Sutton <[EMAIL PROTECTED]> wrote:
>
> > Hi Kevin,
>
> > I think you'll end up with two apps initially. I'm looking at working on
> > a licensing solution because there seems to be a need. Do you have any
> > tips as to what you'd like to see?
>
> > Al.
>
> > cyntacks wrote:
> > > Hi Al,
>
> > > I guess that is the question. Does Android support this type of
> > > transaction (i.e. "lite" version)? I don't recall seeing anything in
> > > the API about this. Of course I can just disable parts of the app, but
> > > how would the user "upgrade" to the full version?
>
> > > Am I making to much out of this, will it all make sense come Monday
> > > morning?
>
> > > Kevin
>
> > > On Oct 22, 3:44 pm, Al Sutton <[EMAIL PROTECTED]> wrote:
>
> > >> Can you not ship a cut down "lite" version with an option to pay for a
> > >> fuller version?
>
> > >> Al.
>
> > >> atrus123 wrote:
>
> > >>> I'm disappointed that we won't be able to charge until next quarter,
> > >>> and it does put a slight dent in my plans.  I guess I'll just sigh and
> > >>> deploy.
>
> > >>> On Oct 22, 1:56 pm, cyntacks <[EMAIL PROTECTED]> wrote:
>
> > >>>> Ok, so the Market Place will be live on Monday, AWESOME! AWESOME!
> > >>>> AWESOME!
>
> > >>>> But here is a question for all you developers like us who are hoping
> > >>>> to make some revenue off months of hard work.
>
> > >>>> Does the API currently support a way to make our applications "trial
> > >>>> software"? That is, making them free until "March 1st" or some other
> > >>>> date, at which time the user will have to pay?
>
> > >>>> Obviously getting on the phone and receiving user reviews is extremely
> > >>>> important, but giving away all of our hard work "just seems wrong". I
> > >>>> have read that over 1 million people have pre-ordered the phone, that
> > >>>> is a lot of free software giveaways..
>
> > >>>> What is everyone else doing? Waiting? Sayhing the heck with it and
> > >>>> deploying? Just looking for some advice.
>
> > >>>> Kevin
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Market Place and Trial Software?

2008-10-22 Thread atrus123

I'm disappointed that we won't be able to charge until next quarter,
and it does put a slight dent in my plans.  I guess I'll just sigh and
deploy.


On Oct 22, 1:56 pm, cyntacks <[EMAIL PROTECTED]> wrote:
> Ok, so the Market Place will be live on Monday, AWESOME! AWESOME!
> AWESOME!
>
> But here is a question for all you developers like us who are hoping
> to make some revenue off months of hard work.
>
> Does the API currently support a way to make our applications "trial
> software"? That is, making them free until "March 1st" or some other
> date, at which time the user will have to pay?
>
> Obviously getting on the phone and receiving user reviews is extremely
> important, but giving away all of our hard work "just seems wrong". I
> have read that over 1 million people have pre-ordered the phone, that
> is a lot of free software giveaways..
>
> What is everyone else doing? Waiting? Sayhing the heck with it and
> deploying? Just looking for some advice.
>
> Kevin
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Eclipse Layout Editor Errors

2008-10-17 Thread atrus123

I ended up rebuilding my workspace, and I haven't had any of the
strange editor errors since then.

On Oct 17, 7:37 pm, Anm <[EMAIL PROTECTED]> wrote:
> I am very definitely using Java 1.5, as I'm using generics and such.
> Additionally, the Java 1.6 java/javac fail miserably with a "Bad CPU
> type".
>
> Apparently, I'm not the only one:
>    http://www.anddev.org/viewtopic.php?p=11577#11642
>
> Anm
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: MapView API Key??

2008-10-16 Thread atrus123

I believe that should be it.  AFAIK, it's a different service than the
standard maps key service.

I wonder why Google hasn't activated it yet.  I also wonder why they
haven't opened the Market for submissions yet.

On Oct 16, 2:45 pm, zl25drexel <[EMAIL PROTECTED]> wrote:
> Can someone confirm that's the key i 
> need?http://code.google.com/android/toolbox/apis/mapkey.html
>
> On Oct 15, 7:14 pm, Anm <[EMAIL PROTECTED]> wrote:
>
> > Is this not it:
> >    http://code.google.com/apis/maps/signup.html
>
> > Same key used by any Google Maps mash-up.
>
> > Anm
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: What happens when network (GPRS) is not enabled, and you try to open connection?

2008-10-15 Thread atrus123

I've been wondering this too.  I guess I assumed that if an
application has permissions in the manifest that the device will
automatically connect without prompting.

On Oct 15, 6:30 am, denismo <[EMAIL PROTECTED]> wrote:
> Say, I'm opening connection to a website using URLConnection.  GPRS is
> not enabled yet.  What will happen?  Will GPRS become enabled?  Will
> user be notified and asked whether she wants to enable GPRS? Or will
> an exception be thrown?
>
> On current phones (like Nokia/Symbian), when GPRS is not enabled, and
> an application tries to access the internet (e.g. Maps), user is
> prompted to allow/deny the request.  Will similar happen on Android?
>
> Thanks.
>
> Denis
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---