Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Klier Rainer
Am 26.01.2012 18:03, schrieb Mark Murphy: > On Thu, Jan 26, 2012 at 11:25 AM, Klier > Rainer wrote: >> ahh, do you mean like suggested here: >> http://blog.sofisoftware.com/post/2011/10/05/Android-Library-projects-and-Jars > >> > Considering that's referencing some of my early work on the subjec

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Mark Murphy
On Thu, Jan 26, 2012 at 11:25 AM, Klier Rainer wrote: > ahh, do you mean like suggested here: > http://blog.sofisoftware.com/post/2011/10/05/Android-Library-projects-and-Jars Considering that's referencing some of my early work on the subject, yes. :-) > you mean i should replace for example all

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Klier Rainer
hi mark, thank you for your fast response. Am 26.01.2012 15:57, schrieb Mark Murphy: > It is possible to create an Android library project that does not ahh, do you mean like suggested here: http://blog.sofisoftware.com/post/2011/10/05/Android-Library-projects-and-Jars > You have to rewrite you

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Mark Murphy
It is possible to create an Android library project that does not include source code. The limitations are: -- You still have to ship the resources. -- You have to rewrite your code to avoid using R. values, as they will be wrong. You will have to look up all resource IDs using getResources().get

[android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Klier Rainer
hi android-developers, i am trying to convert my existing (and working) app project into 2 projects. the first project (a library project) should act as a kind of SDK. the second project should use the first and make the original app. my goal is to be able to distribute the first project only as