[android-developers] Re: " Creating Android.Jar File "

2009-03-19 Thread Kenny

from device directory, "make sdk" will generate android.jar to ./out/
host/linux-x86/sdk/android-sdk_eng.user_linux-x86/...

Kenny

On Mar 18, 9:55 pm, Rajendrakumar C  wrote:
> Hi all,
>
> I downloaded the android source code..
>
> Can any one tell me how to make our own jar file with all our
> available java classes in the Android source code
>
> If any one know please help me how to do this...
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: " Creating Android.Jar File "

2009-03-20 Thread AndRaj

Hi Kenny,

But this also will generate the default android.jar file what we can
get from the Android SDK.

My problem is when you make the android.jar from the source code will
it make the SDK from all the available APIs in the source code..

For example,

The Iwindow manager interface is not available with the default
andorid.jar file. So when you make the jar file from your device
direcory will it make the ja with all the API's??

Or

Do you know any way to use the system hidden API's. There are lot of
API's are hidden in the Android.

Regards,
AndRaj

On Mar 19, 1:42 pm, Kenny  wrote:
> from device directory, "make sdk" will generate android.jar to ./out/
> host/linux-x86/sdk/android-sdk_eng.user_linux-x86/...
>
> Kenny
>
> On Mar 18, 9:55 pm, Rajendrakumar C  wrote:
>
>
>
> > Hi all,
>
> > I downloaded the android source code..
>
> > Can any one tell me how to make our own jar file with all our
> > available java classes in the Android source code
>
> > If any one know please help me how to do this...- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: " Creating Android.Jar File "

2009-03-20 Thread Kenny

http://groups.google.com/group/android-developers/browse_thread/thread/0f9c17b789e2e602#
may be your question answered.

But I suggest to put the class file to the android.jar with JAR tool
manually. I feel it feasible, haven't tried.

Kenny

On Mar 20, 7:42 pm, AndRaj  wrote:
> Hi Kenny,
>
> But this also will generate the default android.jar file what we can
> get from the Android SDK.
>
> My problem is when you make the android.jar from the source code will
> it make the SDK from all the available APIs in the source code..
>
> For example,
>
> The Iwindow manager interface is not available with the default
> andorid.jar file. So when you make the jar file from your device
> direcory will it make the ja with all the API's??
>
> Or
>
> Do you know any way to use the system hidden API's. There are lot of
> API's are hidden in the Android.
>
> Regards,
> AndRaj
>
> On Mar 19, 1:42 pm, Kenny  wrote:
>
> > from device directory, "make sdk" will generate android.jar to ./out/
> > host/linux-x86/sdk/android-sdk_eng.user_linux-x86/...
>
> > Kenny
>
> > On Mar 18, 9:55 pm, Rajendrakumar C  wrote:
>
> > > Hi all,
>
> > > I downloaded the android source code..
>
> > > Can any one tell me how to make our own jar file with all our
> > > available java classes in the Android source code
>
> > > If any one know please help me how to do this...- Hide quoted text -
>
> > - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: " Creating Android.Jar File "

2009-03-20 Thread Dianne Hackborn
You are posting on android-developers, so the answer is simple: DO NOT USE
PRIVATE APIS.

If you have code that needs to use private APIs, I strongly suggest you have
it build as part of the regular platform build system, because what you are
creating is code that is tied to the particular version of the platform it
is being built against, so you shouldn't be building it separately.

On Fri, Mar 20, 2009 at 4:42 AM, AndRaj  wrote:

>
> Hi Kenny,
>
> But this also will generate the default android.jar file what we can
> get from the Android SDK.
>
> My problem is when you make the android.jar from the source code will
> it make the SDK from all the available APIs in the source code..
>
> For example,
>
> The Iwindow manager interface is not available with the default
> andorid.jar file. So when you make the jar file from your device
> direcory will it make the ja with all the API's??
>
> Or
>
> Do you know any way to use the system hidden API's. There are lot of
> API's are hidden in the Android.
>
> Regards,
> AndRaj
>
> On Mar 19, 1:42 pm, Kenny  wrote:
> > from device directory, "make sdk" will generate android.jar to ./out/
> > host/linux-x86/sdk/android-sdk_eng.user_linux-x86/...
> >
> > Kenny
> >
> > On Mar 18, 9:55 pm, Rajendrakumar C  wrote:
> >
> >
> >
> > > Hi all,
> >
> > > I downloaded the android source code..
> >
> > > Can any one tell me how to make our own jar file with all our
> > > available java classes in the Android source code
> >
> > > If any one know please help me how to do this...- Hide quoted text -
> >
> > - Show quoted text -
> >
>


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