[android-developers] Re: When will the next version of SDK be published

2008-05-19 Thread Kosmaj

This is very disappointing ...
There were hints that the new SDK will be published soon after
announcing results of ADC Round-1. What happened?

> A source inside Google reiterates that these snapshots are not
> being made public only because of the instability and bugs.

Isn't m5 already full with instabilities and bugs??
People from Google on this very forum call it "pre-alpha".
We are accustomed to such problems.
But it's a big difference between working with a buggy SDK
and not having one at all  :-((


On May 20, 10:14 am, "Shane Isbell" <[EMAIL PROTECTED]> wrote:
> On Mon, May 19, 2008 at 3:51 PM, Josh Guilfoyle <[EMAIL PROTECTED]> wrote:
>
> > I think you missed a subtext in the referenced post.  According to
> > Zach's source, the public release will not be coming for "several
> > months", effectively barring the ADC losers from even creating Android
> > software that is on schedule to launch with a real handset!
>
> Yes, I caught that! Google has now has a select group of emerging software
> vendors and the rest of us don't matter much. It's the early days of J2ME
> and the Sprint Developer Program all over again. Nothings changed. Time to
> start looking at LiMo and see if it has any teeth for open-source.
>
> Shane
>
>
>
> > On May 19, 3:16 pm, "Shane Isbell" <[EMAIL PROTECTED]> wrote:
> > > "As a Round 2 participant, we'll be providing you with the most
> > up-to-date
> > > Android SDK so that you can take advantage of the latest tools & platform
> > > capabilities that will be shipping in devices later this year."
>
> > > I privately addressed concerns to Dan M. that Google is raising the next
> > > group of software vendors, rather than focusing on the general developer
> > > community; and I have also posted this comment publicly, which sums up my
> > > thoughts pretty well:
>
> > >http://androidguys.com/2008/05/14/speak-up-how-would-you-change-the-a...
>
> > > Shane
>
> > > On Mon, May 19, 2008 at 2:41 PM, Shane Isbell <[EMAIL PROTECTED]>
> > > wrote:
>
> > > > I'm growing more skeptical about Android's openness with each passing
> > day.
> > > > Now the top 50 get advanced previews of the new SDK features.
>
> > > > Shane
>
> > > > On Mon, May 19, 2008 at 2:04 PM, Josh Guilfoyle <[EMAIL PROTECTED]>
> > wrote:
>
> > > >> I just saw this:
>
> > > >>http://www.helloandroid.com/node/572
>
> > > >> I will try to confirm this to be true when I'm at Google I/O next
> > > >> week.  If true, I will officially pause development of my Android
> > > >> project.
>
> > > >> On May 19, 12:24 pm, Josh Guilfoyle <[EMAIL PROTECTED]> wrote:
> > > >> > I am also becoming anxious.  I had hoped for a release shortly after
> > > >> > the Apr 14th deadline, but now here we are well into the second
> > round
> > > >> > of the challenge and there is no update.  Are we to assume that it
> > > >> > won't come until after the challenge is entirely over?
>
> > > >> > For those that are counting, it has been more than 3 months since
> > the
> > > >> > last significant release, longer than the gap between M3 and M5.  In
> > > >> > fact, in the last 6 months, we have only seen 2 major releases.  I
> > am
> > > >> > not filled with confidence by this unpredictable behaviour and
> > > >> > complete lack of official statement on schedule or road plan.
>
> > > >> > Let's not forget that the target for the official launch of the
> > > >> > platform is no more than 7 months away and we have seen precious few
> > > >> > details about the long term strategy for the SDK, platform in
> > general,
> > > >> > or the launch of handsets.
>
> > > >> > On Apr 28, 1:25 pm, Adriano Crestani <[EMAIL PROTECTED]>
> > > >> > wrote:
>
> > > >> > > Soon? 1 week? 1 month? 6 months?
>
> > > >> > > On Apr 23, 12:13 am, Kosmaj <[EMAIL PROTECTED]> wrote:
>
> > > >> > > > No idea but I hope very soon.
>
> > > >> > > > IMO, it's not worth wasting any more time with this version.
>
> > > >> > > > On Apr 23, 4:05 am, Jim T <[EMAIL PROTECTED]> wrote:
>
> > > >> > > > > I assum

[android-developers] Re: When will the next version of SDK be published

2008-04-23 Thread Kosmaj

No idea but I hope very soon.

IMO, it's not worth wasting any more time with this version.



On Apr 23, 4:05 am, Jim T <[EMAIL PROTECTED]> wrote:
> I assume that Google has been holding this release in the pipeline to
> provide a non-moving target in the weeks leading up to the challenge.
>
> However, there are a number of bugs in the platform (Location Manager,
> XML Processing, Notification Manager, etc.).  I would like to respin
> my application with the next version of the platform.
>
> Any idea as to when we might see a version newer that M5-RC15?
>
> - Jim
--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to update my current location from GPS

2008-04-17 Thread Kosmaj

It's not MapView.requestUpdate
but LocationManager.requestUpdates.


On Apr 17, 3:39 pm, tanin <[EMAIL PROTECTED]> wrote:
> I forget that you have to call MapView.requestUpdate(...
> Something ...), so that it will broadcast its Intent.
>
> On Apr 16, 10:50 pm, tanin <[EMAIL PROTECTED]> wrote:
>
> > If you mean that you want it to update automatically as the user's
> > position changes, then you gotta use "Intent".
>
> > First call MapView.requestUpdate();
>
> > Then register IntentReceiver();
>
> > here is some code
>
> > static Intent gpsIntent = null;
> > static IntentReceiver gpsIntentReceiver = null;
> > static IntentFilter gpsIntentFilter = null;
>
> > gpsIntent = new Intent("GPS_ACTION");
>
> > locationManager =
> > (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
>
> > gpsIntentReceiver = new IntentReceiver()
> > {
> > public void onReceiveIntent(Context context, Intent intent)
> > {
> > Location l = (Location) intent.getExtra("location");
> > // do something with new location
> > }
> > };
>
> > gpsIntentFilter = new IntentFilter();
> > gpsIntentFilter.addAction("GPS_ACTION");
>
> > // register IntentReceiver
> > this.registerReceiver(gpsIntentReceiver, gpsIntentFilter);
>
> > On Apr 16, 3:02 pm, [EMAIL PROTECTED] wrote:
>
> > > How to update my current location from GPS
> > > I got the current location from GPS with the following method,
> > > i want to update the my current location
> > > any body help me how to do it
>
> > > // method to get current location from gps
>
> > > public void gotoCurrentGPSPosition() {
> > >  bubbleIcon = BitmapFactory.decodeResource(getResources(),
> > > R.drawable.bubble);
> > > shadowIcon = BitmapFactory.decodeResource(getResources(),
> > > R.drawable.shadow);
>
> > > this.myLocationManager = (LocationManager)
> > > getSystemService(Context.LOCATION_SERVICE);
> > >  mMapView = new MapView(this);
> > > MapController mc = mMapView.getController();
> > > currentGPSLocationOfPhone =
> > > myLocationManager.getCurrentLocation("gps");
> > > // Create a Point that represents our GPS-Location
> > >  Double lat = this.currentGPSLocationOfPhone.getLatitude() *
> > > 1E6;
> > > Double lng = this.currentGPSLocationOfPhone.getLongitude() *
> > > 1E6;
> > > // My gps location
> > > point = new Point(lat.intValue(), lng.intValue());
>
> > > MapLocationOverlay mylocation = new MapLocationOverlay();
> > > OverlayController overlaycontrol =
> > > mMapView.createOverlayController();
> > > overlaycontrol.add(mylocation, true);
>
> > > //mc.setFollowMyLocation(true);
> > >  mc.animateTo(point);
> > > mc.zoomTo(21);
> > > mMapView.toggleSatellite();
> > > setContentView(mMapView);
> > > }
--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: What time is the deadline? Midnight tonight PST?

2008-04-13 Thread Kosmaj

>From http://code.google.com/android/adc-submit/tandc.html :
The First Round ... ends at 11:59:59 P.M. PT on April 14, 2008

>>>
5. CHALLENGE PERIOD: The Challenge is divided into two Rounds. You
must enter during the First Round in order to be eligible to receive a
Qualifying Grant as well as to enter the Second Round. The First Round
begins at 12:00:00 A.M. Pacific Time (PT) Zone in the United States on
January 2, 2008 and ends at 11:59:59 P.M. PT on April 14, 2008 ("First
Round Period"). The Second Round begins at 12:00:00 A.M. PT on May 5,
2008 and ends at 11:59:59 P.M. PT on June 30, 2008 ("Second Round
Period"). Grants will be awarded after each Round as set forth in
these Terms.


--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Displaying already existing activities

2008-04-12 Thread Kosmaj

I'm facing exactly the same problem.
I'd also like to reuse an already started activity (A) in the
background
but no luck so far. I haven't tried singleInstance but I tried to set
various
launch flags (Intent.setLaunchFlags) on the Intent being used to
restart A,
however, always a new instance of A was created.
BTW, my activity B from where I try to reuse A is also a MapActivity.

I'd also like to set intent-filters on A so that it can be accessed
from
other activities, then one can end up with several instances of A
in the background...

Kosmaj

On Apr 9, 11:06 pm, Mihai Fonoage <[EMAIL PROTECTED]> wrote:
> Any other comments are welcome!
>
> Mihai
>
> On Apr 8, 3:12 pm, Mihai Fonoage <[EMAIL PROTECTED]> wrote:
>
> > The solution you mentioned was also the one I found on this forum, and
> > which requires the task id for theactivityto be passed in the
> > moveTaskToFront method call. Unfortunately, everyactivityI create
> > has the same task id. This would not be the case if theactivitywould
> > be created withsingleInstance, but I detailed the problem I have with
> > this solution.
>
> > Thank you,
> > Mihai
>
> > On Apr 8, 2:35 pm, "David Welton" <[EMAIL PROTECTED]> wrote:
>
> > > >  It would have been nice to be able to get a list of all existing
> > > >  (background) activities and close them manually, but I don't think
> > > >  it's possible.
>
> > > My guess is that you're going to have to go fishing in the
> > > undocumented stuff, which might all change tomorrow.
>
> > > This class looks interesting:
>
> > > public final class android.server.am.ActivityManagerService extends
> > > android.app.ActivityManagerNative{
>
> > > It has this method, for instance:
>
> > > public void moveTaskToFront(int);
>
> > > No idea of course whether any of it's accessible.
>
> > > --
> > > David N. Welton
>
> > >http://www.welton.it/davidw/
>
> > >http://www.dedasys.com/
--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to setup a server for streaming audio files

2008-04-05 Thread Kosmaj

> Has anyone got the MediaPlayer examples to stream .mp4 files

Yes! We can stream mp4 over http!
(Admittedly, after many attempts...)
Try this (from the MediaPlayerTest):
http://kosmaj.sakura.ne.jp/vids/cm/copy_cm.mp4

mp4 files have to satisfy conditions given here:
http://groups.google.com/group/android-challenge/msg/114f11e31351840d

Thanks to Megha Joshi for his help.

--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Discussion on media-sample-apps

2008-03-31 Thread Kosmaj

Hi Megha

Thank you for the samples.
I'm sorry for bothering you again, but I just tried
MediaPlayerTest and "Play Streaming Video" doesn't.
I tried on Vista a few days ago, and now on
Win-XP but it's the same, I'm getting a java.io.IOException
in "mp.prepare()". I'm using:
path = "http://daily3gp.com/vids/747.3gp";
as before and this is the only line I changed in your sample
(line 77 in MediaPlayer_Video.java).

My SDK is mp5-rc14.
Can you try it over there, and/or possibly publish a sample
with a real URL of a video included.

Many thanks,
Kosmaj


--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Upgrade to m5-rc15

2008-03-30 Thread Kosmaj

Thanks for the prompt reply.
Then I'll use rc14 until the next major release.


On Mar 31, 1:26 am, Digit <[EMAIL PROTECTED]> wrote:
> rc15 only contains fixes than remove some security holes that where found in
> some of the native image loading libraries we use. Apart from that, it's the
> exact same SDK/API/environment than rc14 to develop applications...
>
> On Sun, Mar 30, 2008 at 1:46 PM, Kosmaj <[EMAIL PROTECTED]> wrote:
>
> > I'm still using m5-rc14, shall I upgrade to rc15?
> > On some doc pages there are even references to m5-rc15b
> > but I couldn't find any specifics.
> > What's the difference?
> > I'd appreciate correction of existing bugs but I'm afraid
> > of new ones :-) at this late stage, just two weeks before
> > the Challenge deadline.
>
> > Is the Eclipse plug-in affected too?
>
> > Thanks,
> > Kosmaj
--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Upgrade to m5-rc15

2008-03-30 Thread Kosmaj

I'm still using m5-rc14, shall I upgrade to rc15?
On some doc pages there are even references to m5-rc15b
but I couldn't find any specifics.
What's the difference?
I'd appreciate correction of existing bugs but I'm afraid
of new ones :-) at this late stage, just two weeks before
the Challenge deadline.

Is the Eclipse plug-in affected too?

Thanks,
Kosmaj

--~--~-~--~~~---~--~~
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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---