[android-developers] Source code mismatch - android.jar and the source code (sources/android-23/...) do not match

2016-10-26 Thread Stevegogo
Hello,

My project is compiled with API level 23.  

To resolve an issue with cordova Google Plus plugin, I need to debug into 
the sdk.

When I stepped in android.app.Activity, I noticed that the source code did 
not match the actual class.  It pointed to a comment line.

Just to make sure, I tried to compile using different API levels and 
verified that I was using level 23.

So, bottom line is that the jar (android.jar) for level 23 and the source 
code for level 3 do not match.  They (jar and source code) were both 
installed using Android SDK Manager.  It's a serious issue.

Does anyone know how to get the right set of source files?

Help will be appreciated.

Thanks,

- Stevegogo

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5c003ee2-3524-4821-8a7f-dfa584f86e7e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Source code for Xperia X10 2.33?

2011-08-17 Thread jd
Hi developers, I've been looking at the download area and can not find
the source of android 2.3.3 for my Xperia X10 (3.0.1.G.0.75). Several
weeks ago this new firmware was released.
When will be available to download?

-- 
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] Source code for live wallpaper settings

2011-07-04 Thread Raghav Sood
You can check the source code for hex field on google code.

On Sun, Jul 3, 2011 at 10:34 PM, Zach  wrote:

> I want to make a button that points to my username on the market so a
> list of my apps will come up when the button is pressed.
>
> I also want an image as my background within wallpaper settings.
>
> What are the source codes for these and which xml folders do I put
> them in? I dont want java, but the text coding,
>
> thanks for your 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
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Raghav Sood
http://www.raghavsood.com/
http://www.androidappcheck.com/
http://www.telstop.tel/

-- 
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] Source code for live wallpaper settings

2011-07-04 Thread Zach
I want to make a button that points to my username on the market so a
list of my apps will come up when the button is pressed.

I also want an image as my background within wallpaper settings.

What are the source codes for these and which xml folders do I put
them in? I dont want java, but the text coding,

thanks for your 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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Source code for finding Route between two places in Google map

2011-06-29 Thread Latcho

The reply style on this forum is SHIT.
Why bother to reply if you don't even try to be informative.
I agree that the request is not elegant, but some people aren't that 
good in english and they might mean "can someone provide me with a 
working example", but write "give me the complete sourcecode"

Work your style here guys.

On 6/27/2011 6:41 PM, Raghav Sood wrote:
No one here is going to give you the complete code for free. Maybe if 
you tried and asked for help on errors you could get somewhere.


On Mon, Jun 27, 2011 at 10:04 PM, Md.Fazla Rabbi OPU 
mailto:md.fazlara...@gmail.com>> wrote:


Hi all,
I am unable to display the route between two places in google map.
Please anyone give me the*complete source code* of displaying
route between two places in google map.
Best Wishes
Md.Fazla Rabbi Opu
-- 
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




--
Raghav Sood
http://www.raghavsood.com/
http://www.androidappcheck.com/
http://www.telstop.tel/

--
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] Source code for finding Route between two places in Google map

2011-06-27 Thread New Developer
You could try something along this line

HttpClient client  = new DefaultHttpClient();
HttpGetrequest = new HttpGet();
request.setURI(new URI(  
"http://maps.google.com/maps/api/directions/json?origin="+locA.getLatitude()+","+locA.getLongitude()+"&destination="+locB.getLatitude()+","+locB.getLongitude()+"&mode=driving&sensor=false"
  ));
HttpResponse response;
response = client.execute(request);
html = EntityUtils.toString( response.getEntity() );
client.getConnectionManager().shutdown();


On Jun 27, 2011, at 12:41 PM, Raghav Sood wrote:

> No one here is going to give you the complete code for free. Maybe if you 
> tried and asked for help on errors you could get somewhere.
> 
> On Mon, Jun 27, 2011 at 10:04 PM, Md.Fazla Rabbi OPU 
>  wrote:
> Hi all,
> I am unable to display the route between two places in google map. Please 
> anyone give me the complete source code of displaying route between two 
> places in google map.
> Best Wishes
> Md.Fazla Rabbi Opu
> 
> -- 
> 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
> 
> 
> 
> -- 
> Raghav Sood
> http://www.raghavsood.com/
> http://www.androidappcheck.com/
> http://www.telstop.tel/
> 
> 
> -- 
> 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] Source code for finding Route between two places in Google map

2011-06-27 Thread Raghav Sood
No one here is going to give you the complete code for free. Maybe if you
tried and asked for help on errors you could get somewhere.

On Mon, Jun 27, 2011 at 10:04 PM, Md.Fazla Rabbi OPU <
md.fazlara...@gmail.com> wrote:

> Hi all,
> I am unable to display the route between two places in google map. Please
> anyone give me the* complete source code* of displaying route between two
> places in google map.
> Best Wishes
> Md.Fazla Rabbi Opu
>
> --
> 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




-- 
Raghav Sood
http://www.raghavsood.com/
http://www.androidappcheck.com/
http://www.telstop.tel/

-- 
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] Source code for finding Route between two places in Google map

2011-06-27 Thread Md.Fazla Rabbi OPU
Hi all,
I am unable to display the route between two places in google map. Please
anyone give me the* complete source code* of displaying route between two
places in google map.
Best Wishes
Md.Fazla Rabbi Opu

-- 
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] source code of the function uninstalls Program Files

2011-05-05 Thread D|3-H4rD
Hi all,
Who can tell me where I can find the source code of the function
uninstalls program file in Android?


Thanks in advanced

-- 
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] Source code for StackView(Honeycomb build) available yet?

2011-04-04 Thread Samuh
Has the source code for Honeycomb been made available for general
public yet?
I was looking for StackView.java in android.git.kernel.org but was not
able to find it.

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] Source code

2011-03-16 Thread Kostya Vasilyev

It in the Settings application.

http://android.git.kernel.org/?p=platform/packages/apps/Settings.git;a=summary

-- Kostya

16.03.2011 20:19, Raghav Sood пишет:

Hello everyone,

Do any of you guys have a link to the source code of the battery usage 
meter in about phone under settings? I have checked the source online 
but cannot find it


Thanks in advance

--
Raghav Sood
http://www.raghavsood.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en 



--
Kostya Vasilyev -- http://kmansoft.wordpress.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Source code

2011-03-16 Thread Mark Murphy
Use Google Code Search to search android.git.kernel.org for BatteryInfo

On Wed, Mar 16, 2011 at 1:19 PM, Raghav Sood  wrote:
> Hello everyone,
>
> Do any of you guys have a link to the source code of the battery usage meter
> in about phone under settings? I have checked the source online but cannot
> find it
>
> Thanks in advance
>
> --
> Raghav Sood
> http://www.raghavsood.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
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en



-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 3.5 Available!

-- 
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] Source code

2011-03-16 Thread Raghav Sood
Hello everyone,

Do any of you guys have a link to the source code of the battery usage meter
in about phone under settings? I have checked the source online but cannot
find it

Thanks in advance

-- 
Raghav Sood
http://www.raghavsood.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Source Code for HelloGoogleMaps Tutorial

2011-03-14 Thread Dominik Schury
Hello Developers,

I am new at Android development and I work through the tutorials.
The HelloGoogleMaps Tutorial

http://developer.android.com/resources/tutorials/views/hello-mapview.html

does not work on my phone. The map is shown but not the marker. So I
want to ask if someone has a working source code of the tutorial?
I can not understand that Google does not provide!

Thank you in advance.

-- 
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] Source code

2011-02-19 Thread Kostya Vasilyev

Depends on what source you need, exactly.

If you just need the framework, get it as a tar.gz file here:

http://android.git.kernel.org/?p=platform/frameworks/base.git;a=summary

For example, this is for Froyo:

http://android.git.kernel.org/?p=platform/frameworks/base.git;a=snapshot;h=refs/heads/froyo

-- Kostya

19.02.2011 7:36, kypriakos пишет:

Hi all,

So if I am developing under windows I am out of luck getting the
source? ;)

Is there a convenient (easy) way to search the online gitweb
repositories?
Is there a bundle of the code (depending on the version) that is
downloadable
without using git?

Thanks




--
Kostya Vasilyev -- http://kmansoft.wordpress.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Source code

2011-02-18 Thread kypriakos

Anyone has any idea as to why repo fails?

[android_2.1_src] % ../bin/repo init -u 
git://android.git.kernel.org/platform/manifest.git
Traceback (most recent call last):
  File "../bin/repo", line 92, in ?
import subprocess
ImportError: No module named subprocess

I have the latest git / python and other packages necessary in place.

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


[android-developers] Source code

2011-02-18 Thread kypriakos

Hi all,

So if I am developing under windows I am out of luck getting the
source? ;)

Is there a convenient (easy) way to search the online gitweb
repositories?
Is there a bundle of the code (depending on the version) that is
downloadable
without using git?

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


[android-developers] Source code and browser

2011-01-22 Thread kypriakos

Hi all,

does the native browser source code come with the distribution of the
OS
code? Is there an SVN repo or the only way to access it is through the
Repo
tool?

What version of Webkit is the native browser based on? How can I find
that?
I am running Browser version 4

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] source code for android camera app android 2.2

2011-01-05 Thread Kostya Vasilyev

Use a tag or a branch when checking out.

Or use the web interface:

http://android.git.kernel.org/?p=platform/packages/apps/Camera.git;a=summary

Click on one of "android-2.2" links under "tags", then click "snapshot" 
on the page that comes up after that.


-- Kostya

05.01.2011 19:42, higonnet пишет:

I can get the most recent android 2.3 version from git, but eclipse
doesn't like running it on my nexus one running 2.2.

Can someone provide the right link?

TIA
Bernard T. Higonnet




--
Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] source code for android camera app android 2.2

2011-01-05 Thread higonnet
I can get the most recent android 2.3 version from git, but eclipse
doesn't like running it on my nexus one running 2.2.

Can someone provide the right link?

TIA
Bernard T. Higonnet

-- 
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] source code

2010-08-18 Thread TreKing
On Fri, Aug 13, 2010 at 11:20 AM, zouheir elmach
wrote:

> i 've been following the answers on the this email ...without finding the
> right link
> So please i'm new with android development tools ..
> could  you give me some links wich can help my to develop android apps ...
>

I don't think you were following that closely.

On Thu, Aug 12, 2010 at 6:02 PM, TreKing  wrote:

> there's this amazing new technology that will allow you to find these kinds
> of answers on your own, almost immediately. It's called "Google" or
> something. Google it.


-
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] source code

2010-08-18 Thread zouheir elmach
Hi ,
 i 've been following the answers on the this email ...without finding the
right link
So please i'm new with android development tools ..
could  you give me some links wich can help my to develop android apps ...

-- 
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] source code

2010-08-13 Thread Tony Gonzalez
I'll look into that, thanks Kostya

On Fri, Aug 13, 2010 at 10:05 AM, Kostya Vasilyev wrote:

>  You can probably build Android under Linux running inside a virtual
> machine hosted on Windows.
>
> There are free ones out there, for example Virtual Box -
> http://www.virtualbox.org
>
> Might also subscribe to this Google group:
>
> http://groups.google.com/group/android-porting
>
> -- Kosyta
>
> 13.08.2010 19:59, Tony Gonzalez пишет:
>
> I thought about step 1 :-) but I'll continue with my research and if I have
> to get a mac/linux box that's what I'll have to do. Thanks
>
> On Fri, Aug 13, 2010 at 9:54 AM, TreKing  wrote:
>
>>  On Fri, Aug 13, 2010 at 10:48 AM, Tony Gonzalez <
>> tonygonzalez...@gmail.com> wrote:
>>
>>> Looks like a lot of fun, been running custom ROM of my droid since I
>>> purchase it and I want to learn to do my own. If I may ask what would you
>>> recommend me do?
>>
>>
>>  Well, if the site says Windows is not supported for building the source
>> code, getting a Mac / Linux box would probably be step #1. =)
>>
>>  I have not looked at the source code site very closely, but I have to be
>> believe there are instructions on there for how to get started once you have
>> the proper equipment.
>>
>>
>>
>> -
>> 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
>>
>
> --
> 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
>
>
>
> --
> Kostya Vasilev -- WiFi Manager + pretty widget -- 
> http://kmansoft.wordpress.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
> 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] source code

2010-08-13 Thread Kostya Vasilyev
 You can probably build Android under Linux running inside a virtual 
machine hosted on Windows.


There are free ones out there, for example Virtual Box - 
http://www.virtualbox.org


Might also subscribe to this Google group:

http://groups.google.com/group/android-porting

-- Kosyta

13.08.2010 19:59, Tony Gonzalez ?:
I thought about step 1 :-) but I'll continue with my research and if I 
have to get a mac/linux box that's what I'll have to do. Thanks


On Fri, Aug 13, 2010 at 9:54 AM, TreKing > wrote:


On Fri, Aug 13, 2010 at 10:48 AM, Tony Gonzalez
mailto:tonygonzalez...@gmail.com>> wrote:

Looks like a lot of fun, been running custom ROM of my droid
since I purchase it and I want to learn to do my own. If I may
ask what would you recommend me do?


Well, if the site says Windows is not supported for building the
source code, getting a Mac / Linux box would probably be step #1. =)

I have not looked at the source code site very closely, but I have
to be believe there are instructions on there for how to get
started once you have the proper equipment.



-
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


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



--
Kostya Vasilev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] source code

2010-08-13 Thread Tony Gonzalez
I thought about step 1 :-) but I'll continue with my research and if I have
to get a mac/linux box that's what I'll have to do. Thanks

On Fri, Aug 13, 2010 at 9:54 AM, TreKing  wrote:

> On Fri, Aug 13, 2010 at 10:48 AM, Tony Gonzalez  > wrote:
>
>> Looks like a lot of fun, been running custom ROM of my droid since I
>> purchase it and I want to learn to do my own. If I may ask what would you
>> recommend me do?
>
>
> Well, if the site says Windows is not supported for building the source
> code, getting a Mac / Linux box would probably be step #1. =)
>
> I have not looked at the source code site very closely, but I have to be
> believe there are instructions on there for how to get started once you have
> the proper equipment.
>
>
>
> -
> 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
>

-- 
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] source code

2010-08-13 Thread TreKing
On Fri, Aug 13, 2010 at 10:48 AM, Tony Gonzalez
wrote:

> Looks like a lot of fun, been running custom ROM of my droid since I
> purchase it and I want to learn to do my own. If I may ask what would you
> recommend me do?


Well, if the site says Windows is not supported for building the source
code, getting a Mac / Linux box would probably be step #1. =)

I have not looked at the source code site very closely, but I have to be
believe there are instructions on there for how to get started once you have
the proper equipment.

-
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] source code

2010-08-13 Thread Tony Gonzalez
Oh I didn't know that, but I'm not trying to develop an app, what I want to
do is to customize my ROM or create a new one for my phone. Looks like a lot
of fun, been running custom ROM of my droid since I purchase it and I want
to learn to do my own. If I may ask what would you recommend me do?

On Fri, Aug 13, 2010 at 9:40 AM, TreKing  wrote:

> On Fri, Aug 13, 2010 at 10:31 AM, Tony Gonzalez  > wrote:
>
>> On the android source website is says you need to download git and repo,
>> in addition it states that windows is not supported. I'll be using windows
>> as my development computer.
>
>
>
>> Do you use windows to develop ?
>
>
> I do, yes. To be clear, you DO NOT need the entire Android Source code to
> develop an app - you just need the SDK (and using Eclipse as the IDE is
> probably a good idea).
>
>
> -
> 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
>

-- 
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] source code

2010-08-13 Thread TreKing
On Fri, Aug 13, 2010 at 10:31 AM, Tony Gonzalez
wrote:

> On the android source website is says you need to download git and repo, in
> addition it states that windows is not supported. I'll be using windows as
> my development computer.



> Do you use windows to develop ?


I do, yes. To be clear, you DO NOT need the entire Android Source code to
develop an app - you just need the SDK (and using Eclipse as the IDE is
probably a good idea).

-
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] source code

2010-08-13 Thread Frank Weiss
I wonder which source code the OP is getting and why.

On Aug 13, 2010 8:34 AM, "Tony Gonzalez"  wrote:

Sounds like great advise, but their is a lot of information. As I just
mention it to TreKing I'm doing that right now, trying to get the source
code but have to figure out how to install and use git and repo.

thanks

Tony



On Fri, Aug 13, 2010 at 9:27 AM, Chris Stewart 
wrote:
>
> Off topic...
>
>...

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" g...

-- 
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] source code

2010-08-13 Thread Tony Gonzalez
Sounds like great advise, but their is a lot of information. As I just
mention it to TreKing I'm doing that right now, trying to get the source
code but have to figure out how to install and use git and repo.

thanks

Tony

On Fri, Aug 13, 2010 at 9:27 AM, Chris Stewart wrote:

> Off topic...
>
> I've found that losing myself in searching on specific Android topics *is*a 
> great way to learn.  Sometimes you'll run across completely outdated
> information but often the trail to your answer is exceptionally valuable.
>  So while you are working to learn the Android platform, I would consider
> that to be sound advice.
>
> --
> Chris Stewart
> http://chriswstewart.com
>
> Fantasy 
> Football- 
> Android app for fantasy football fanatics and MFL owners
> Social 
> Updater- An 
> easy way to send your status blast to multiple social networks
>
>
>
> On Fri, Aug 13, 2010 at 11:20 AM, TreKing  wrote:
>
>> On Thu, Aug 12, 2010 at 10:15 PM, Tony Gonzalez <
>> tonygonzalez...@gmail.com> wrote:
>>
>>> I hope that's sarcasm, because it would be a low blow just trying to
>>> learn man.
>>
>>
>> The part about the amazing new technology? Yes.
>> The part about using Google for simple queries like "where is thing on the
>> internet"? No.
>>
>> A fantastic way to learn is to lose yourself in internet searches on
>> whatever you're trying to learn about. Try it. =)
>>
>>
>> -
>>  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
>>
>
>  --
> 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] source code

2010-08-13 Thread Tony Gonzalez
Okay thanks for the advise, I'm doing that right now. Trying to download the
source code to get moving on with the learning process. On the android
source website is says you need to download git and repo, in addition it
states that windows is not supported. I'll be using windows as my
development computer. I've downloaded the SDK and Eclipse and have already
practice with the "hello world" script, and others' question for you. Do you
use windows to develop ?


thanks


Tony

Sent from my Android phone

On Aug 13, 2010 9:22 AM, "TreKing"  wrote:
> On Thu, Aug 12, 2010 at 10:15 PM, Tony Gonzalez
> wrote:
>
>> I hope that's sarcasm, because it would be a low blow just trying to
learn
>> man.
>
>
> The part about the amazing new technology? Yes.
> The part about using Google for simple queries like "where is thing on the
> internet"? No.
>
> A fantastic way to learn is to lose yourself in internet searches on
> whatever you're trying to learn about. Try it. =)
>
>
-
> 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

-- 
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] source code

2010-08-13 Thread Chris Stewart
Off topic...

I've found that losing myself in searching on specific Android topics *is* a
great way to learn.  Sometimes you'll run across completely outdated
information but often the trail to your answer is exceptionally valuable.
 So while you are working to learn the Android platform, I would consider
that to be sound advice.

--
Chris Stewart
http://chriswstewart.com

Fantasy 
Football-
Android app for fantasy football fanatics and MFL owners
Social Updater-
An easy way to send your status blast to multiple social networks



On Fri, Aug 13, 2010 at 11:20 AM, TreKing  wrote:

> On Thu, Aug 12, 2010 at 10:15 PM, Tony Gonzalez  > wrote:
>
>> I hope that's sarcasm, because it would be a low blow just trying to learn
>> man.
>
>
> The part about the amazing new technology? Yes.
> The part about using Google for simple queries like "where is thing on the
> internet"? No.
>
> A fantastic way to learn is to lose yourself in internet searches on
> whatever you're trying to learn about. Try it. =)
>
>
> -
>  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
>

-- 
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] source code

2010-08-13 Thread TreKing
On Thu, Aug 12, 2010 at 10:15 PM, Tony Gonzalez
wrote:

> I hope that's sarcasm, because it would be a low blow just trying to learn
> man.


The part about the amazing new technology? Yes.
The part about using Google for simple queries like "where is thing on the
internet"? No.

A fantastic way to learn is to lose yourself in internet searches on
whatever you're trying to learn about. Try it. =)

-
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] source code

2010-08-12 Thread Tony Gonzalez
I hope that's sarcasm, because it would be a low blow just trying to learn
man.

Sent from my Android phone

On Aug 12, 2010 5:03 PM, "TreKing"  wrote:
> Tony, for future reference, there's this amazing new technology that will
> allow you to find these kinds of answers on your own, almost immediately.
> It's called "Google" or something. Google it.
>
>
-
> 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

-- 
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] source code

2010-08-12 Thread TreKing
Tony, for future reference, there's this amazing new technology that will
allow you to find these kinds of answers on your own, almost immediately.
It's called "Google" or something. Google it.

-
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] source code

2010-08-12 Thread Tony Gonzalez
Thanks Frank

Tony

Sent from my Android phone

On Aug 12, 2010 4:28 PM, "Frank Weiss"  wrote:
> http://source.android.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
> 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] source code

2010-08-12 Thread Frank Weiss
http://source.android.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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] source code

2010-08-12 Thread Tony319
Hey guys,

Just downloaded the Android SDK and want to get busy learing how to
program using this platform. My question is, where can I download the
source code? Thanks


Cheers,

Tony319

-- 
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] source code for google voice input

2010-06-14 Thread Dianne Hackborn
That is not available; it is Google proprietary code that talks with
Google's servers.  The Froyo platform defines a framework API for talking to
a voice recognizer, which Google's code plugs in to.

On Mon, Jun 14, 2010 at 3:29 PM, cindy  wrote:

> Hi there
>
> Google API has support the voice input. Where could I find the source
> code for that?
>
> Thanks!
>
> April
>
> --
> 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
>



-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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] source code for google voice input

2010-06-14 Thread cindy
Hi there

Google API has support the voice input. Where could I find the source
code for that?

Thanks!

April

-- 
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] source code help - reading framebuffer using glReadPixels

2010-06-09 Thread zorcad
Hi,

I am new to Android development and working on an assignment to read
the framebuffer after some time interval and save it as an image.
I have come up with the following code initially only for reading and
saving the framebuffer, but this is not working and giving a run time
error. The emulator says that "the application stopped unexpectedly,
Please try again"

This is the current code: (I am using the Android 2.2 with API level 8
virtual device for testing, I don't have a physical device at the
moment)

public class mainActivity extends Activity
{
Bitmap mSavedBM;
private EGL10 egl;
private EGLDisplay display;
private EGLConfig config;
private EGLSurface surface;
private EGLContext eglContext;
private GL11 gl;
protected int width, height;


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

// get the screen width and height
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int screenWidth = dm.widthPixels;
int screenHeight = dm.heightPixels;

String SCREENSHOT_DIR = "/screenshots";
initGLFr(); //GlView initialized.
savePixels( 0, 10, screenWidth, screenHeight, gl); //this gets
the screen to the mSavedBM.
saveBitmap(mSavedBM, SCREENSHOT_DIR, "capturedImage");

//Now we need to save the bitmap (the screen capture) to some
location.
setContentView(R.layout.main); //This displays the content on
the screen

}
private void initGLFr()
{
egl = (EGL10) EGLContext.getEGL();
display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
int[] ver = new int[2];
egl.eglInitialize(display, ver);

int[] configSpec = {EGL10.EGL_NONE};
EGLConfig[] configOut = new EGLConfig[1];
int[] nConfig = new int[1];
egl.eglChooseConfig(display, configSpec, configOut, 1,
nConfig);
config = configOut[0];
eglContext = egl.eglCreateContext(display, config,
EGL10.EGL_NO_CONTEXT, null);
surface = egl.eglCreateWindowSurface(display, config,
SurfaceHolder.SURFACE_TYPE_GPU, null);
egl.eglMakeCurrent(display, surface, surface, eglContext);
gl = (GL11) eglContext.getGL();
}
public void savePixels(int x, int y, int w, int h, GL10 gl)
{
if (gl == null)
return;

 synchronized (this) {
 if (mSavedBM != null) {
 mSavedBM.recycle();
 mSavedBM = null;
 }
 }

int b[] = new int[w * (y + h)];
int bt[] = new int[w * h];
IntBuffer ib = IntBuffer.wrap(b);
ib.position(0);
gl.glReadPixels(x, 0, w, y + h,
GL10.GL_RGBA,GL10.GL_UNSIGNED_BYTE,ib);

for (int i = 0, k = 0; i < h; i++, k++)
{
//OpenGLbitmap is incompatible with Android bitmap
//and so, some corrections need to be done.
for (int j = 0; j < w; j++)
{
int pix = b[i * w + j];
int pb = (pix >> 16) & 0xff;
int pr = (pix << 16) & 0x00ff;
int pix1 = (pix & 0xff00ff00) | pr | pb;
bt[(h - k - 1) * w + j] = pix1;
}
}

Bitmap sb = Bitmap.createBitmap(bt, w, h,
Bitmap.Config.ARGB_);
synchronized (this)
{
mSavedBM = sb;
}
}

static String saveBitmap(Bitmap bitmap, String dir, String
baseName) {
try {
File sdcard = Environment.getExternalStorageDirectory();
File pictureDir = new File(sdcard, dir);
pictureDir.mkdirs();
File f = null;
for (int i = 1; i < 200; ++i) {
String name = baseName + i + ".png";
f = new File(pictureDir, name);
if (!f.exists()) {
break;
}
}
if (!f.exists()) {
String name = f.getAbsolutePath();
FileOutputStream fos = new FileOutputStream(name);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.flush();
fos.close();
return name;
}
} catch (Exception e) {

} finally {
/*
if (fos != null) {
fos.close();
}
*/
}
return null;
}
}


Also, if someone can point me to sample code/tutorial to get this work
done through the NDK r4. I have read that the NDK r4 supports the
opengl es 1.1 and 2.0.
>From the previous posts in this group I know that we can not access
the framebuffer directly using the "/dev/graphics/fb0".


Thanks,

-- 
You received this message because you are subscribed to the Google
Groups "Android Develop

Re: [android-developers] Source code fro Genie Widget

2010-04-20 Thread Dianne Hackborn
Sorry that isn't the code for the news and weather app.  I don't think the
code for that app has been made available at this point.

On Tue, Apr 20, 2010 at 6:18 PM, a a  wrote:

> Dear Stone,
>
> http://android-sky.googlecode.com/svn/trunk/Sky/
>
> 2010/4/20 droidin.net :
> > Hi guys,
> >
> > Can anyone help me find source code for Android's Weather and News app
> > (Genie Widget). It doesn't look like it can be found at
> http://android.git.kernel.org/
> > and Google's Code Search does not return any results ether
> >
> > Thanks,
> >
> > Bo Stone
> >
> > --
> > 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
>



-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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] Source code fro Genie Widget

2010-04-20 Thread a a
Dear Stone,

http://android-sky.googlecode.com/svn/trunk/Sky/

2010/4/20 droidin.net :
> Hi guys,
>
> Can anyone help me find source code for Android's Weather and News app
> (Genie Widget). It doesn't look like it can be found at 
> http://android.git.kernel.org/
> and Google's Code Search does not return any results ether
>
> Thanks,
>
> Bo Stone
>
> --
> 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


[android-developers] Source code fro Genie Widget

2010-04-19 Thread droidin.net
Hi guys,

Can anyone help me find source code for Android's Weather and News app
(Genie Widget). It doesn't look like it can be found at 
http://android.git.kernel.org/
and Google's Code Search does not return any results ether

Thanks,

Bo Stone

-- 
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] source code for Voice Search application

2010-04-13 Thread Ravi
Is it possible to get the Voice Search applications source code. This
will help a lot in getting Speech Recognition to work independently.

thanks,
Ravi.

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

To unsubscribe, reply using "remove me" as the subject.


Re: [android-developers] Source code for keyboard in Android 2.1

2010-03-17 Thread Dianne Hackborn
The voice input requires interaction with proprietary Google services, which
can't be open-sourced.  Thus to do this in the time we had, a fork was made
of the LatinIME to a Google version that integrates the voice search.  This
situation should be cleaned up in Froyo.

On Wed, Mar 17, 2010 at 9:49 AM, Trygve  wrote:

> Hi
>
> Does anyone know if the source code for the updates of the keyboard in
> Android 2.1 is available somewhere?
>
> I know that you can get the source for the Android keyboard here:
>
> http://android.git.kernel.org/?p=platform/packages/inputmethods/LatinIME.git;a=summary
> But this doesn't seem to contain code for the updates in 2.1, like
> voice input. I would really like to see this code. 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
>



-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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] Source code for keyboard in Android 2.1

2010-03-17 Thread Trygve
Hi

Does anyone know if the source code for the updates of the keyboard in
Android 2.1 is available somewhere?

I know that you can get the source for the Android keyboard here:
http://android.git.kernel.org/?p=platform/packages/inputmethods/LatinIME.git;a=summary
But this doesn't seem to contain code for the updates in 2.1, like
voice input. I would really like to see this code. 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


[android-developers] Source code for Android 2.0 (Eclair)

2010-03-11 Thread Deepak Arul
I used "repo init -u git://android.git.kernel.org/platform/manifest.git
-b eclair", but I got Android 2.1
I need to download the source code for Android 2.0 .
What is the correct input for "-b" option ?

-- 
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] Source Code

2009-12-16 Thread Dan Sherman
Also to note, many of the apps on the phone (outside of the OS) are
proprietary, and the source is not available.  One of notable mention is the
Market.

- Dan

On Wed, Dec 16, 2009 at 11:01 PM, Frank Weiss  wrote:

> Source.android.com
>
> On Dec 16, 2009 7:38 PM, "Michael J"  wrote:
>
> Is there an easy way of getting the Android source code?
>
> More than anything else, I just want to be able to look at the source
> for some of the standard apps, such as the Android Market, Contacts,
> etc.
>
> I took a look at dev.android.com, but I don't see an easy way of
> getting the source I'm looking for.
>
> TIA
>
> --
> 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
>

-- 
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] Source Code

2009-12-16 Thread Frank Weiss
Source.android.com

On Dec 16, 2009 7:38 PM, "Michael J"  wrote:

Is there an easy way of getting the Android source code?

More than anything else, I just want to be able to look at the source
for some of the standard apps, such as the Android Market, Contacts,
etc.

I took a look at dev.android.com, but I don't see an easy way of
getting the source I'm looking for.

TIA

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

[android-developers] Source Code

2009-12-16 Thread Michael J
Is there an easy way of getting the Android source code?

More than anything else, I just want to be able to look at the source
for some of the standard apps, such as the Android Market, Contacts,
etc.

I took a look at dev.android.com, but I don't see an easy way of
getting the source I'm looking for.

TIA

-- 
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] source code to launch the emulator

2009-11-20 Thread shri
can anybody share the emulator dependent source files.
we are using avd in the emulator for selecting the skin.
so how this avd function is called in the source code. and emulator is
launching  .

is there any maximum resolution set to the emulator??

thanks in advance

-- 
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] Source code for the latest emulator of Android 2.0

2009-11-10 Thread eh
I searched but could not find the source code for the latest emulator.
The emulator is based on QEMU source. In the past, several versions of
its source were published. Has Google published the new one yet?

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


[android-developers] source code for android's SDKs.

2009-11-09 Thread poohtbear
Hi,
After google made it clear they will not release the source code with
each SDK, i took he liberty to do it myself.
I hope to keep the SDK's source updated so for every new release i'll
put in the source for it.

Each source was gathered from the git repository after checking out
the appropriate branch and gathering the sources using a python script
i found online that takes all the java files and places them in a
directory according to their package.
here is the link to the article with the instructions of how to use
the sources and where to get them:
http://www.devfrustrated.com/devBlog/browsing-android-source-code-in-eclipse/

Enjoy...

-- 
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] Source Code required for Android App

2009-10-30 Thread Maxood

Source code is required for a simple content based app.

It involves simple vertical scrolling and random access and retrieval
of data from SQLite database. Possibly random numbers are used. On
each view a single random fact is fetched from the database and
displayed(possibly ListView with a custom adapter is required).
The user keeps on scrolling until the app is terminated by the user.

Here is the link to the application that gives an overview about it:

http://www.amusingsexfacts.com/#

Although the app is very simple in functionality but if there are any
questions, please feel free to ask me on my hotmail id:
maqsood_rah...@hotmail.com. Payment will be made on the desired time.

Waiting for your reply,

Maxood
--~--~-~--~~~---~--~~
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] Source Code for dx

2009-04-02 Thread ScottG

Anybody know where one can obtain the source code for dx all in one
downloadable blob?

The following gives dx a file at a time:

http://www.netmite.com/android/mydroid/dalvik/dx/src/com/android/dx/

Thanks for any insight.

Cheers, Scott

--~--~-~--~~~---~--~~
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] source code for android application mms

2008-11-14 Thread jalandar

Hi
Is com.android.mms application's source code  available ?
If so,In future will it be available?

Regards
jagtap
Email: [EMAIL PROTECTED]
--~--~-~--~~~---~--~~
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] source code file

2008-10-20 Thread jalandar

Hi
Anybody will send me the following source code files


SMSAPISample.zip Megha Joshi 35.7 KB Aug 29
SoundRecordingAPISample.zi Megha 41.7 KB Sep 2
CameraAPISample.zip Justin (Google Employee) 27.3 KB Aug 25


Regards
Jalandar Jagtap
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---