From d522b4dffd5d569c4116275d6ef278bb0741c79d Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 3 Aug 2011 16:21:10 +0200 Subject: Add android src zip, better license info; Dropped SDK 8 for now --- make/lib/android-sdk/9/LICENSE.txt | 10 ++++++++++ make/lib/android-sdk/9/android-java-src.txt | 22 ++++++++++++++++++++++ make/lib/android-sdk/9/android-java-src.zip | Bin 0 -> 6020823 bytes 3 files changed, 32 insertions(+) create mode 100644 make/lib/android-sdk/9/LICENSE.txt create mode 100644 make/lib/android-sdk/9/android-java-src.txt create mode 100644 make/lib/android-sdk/9/android-java-src.zip (limited to 'make/lib/android-sdk/9') diff --git a/make/lib/android-sdk/9/LICENSE.txt b/make/lib/android-sdk/9/LICENSE.txt new file mode 100644 index 0000000..c817537 --- /dev/null +++ b/make/lib/android-sdk/9/LICENSE.txt @@ -0,0 +1,10 @@ + +http://source.android.com/faqs.html#what-kind-of-open-source-project-is-android + +What kind of open-source project is Android? + +Google oversees the development of the core Android open-source platform, and works to create robust developer and user communities. For the most part the Android source code is licensed under the permissive Apache Software License 2.0, rather than a "copyleft" license. The main reason for this is because our most important goal is widespread adoption of the software, and we believe that the ASL2.0 license best achieves that goal. + ++++ + +See file NOTICE.txt in this folder ! diff --git a/make/lib/android-sdk/9/android-java-src.txt b/make/lib/android-sdk/9/android-java-src.txt new file mode 100644 index 0000000..da7d9fb --- /dev/null +++ b/make/lib/android-sdk/9/android-java-src.txt @@ -0,0 +1,22 @@ +Retrieved from public sources as described in script below. + +++++ + +#! bin/sh + +git clone git://git.source.android.com/platform/frameworks/base android-api +cd android-api/ +git checkout gingerbread-release + +zipfile=./android-java-src.zip + +rm -f $zipfile + +jar cvf $zipfile -C core/java . + +for i in `find . -maxdepth 2 -name java` ; do + if [ "$i" != "core/java" ] ; then + jar uvf $zipfile -C $i . + fi +done + diff --git a/make/lib/android-sdk/9/android-java-src.zip b/make/lib/android-sdk/9/android-java-src.zip new file mode 100644 index 0000000..59e4979 Binary files /dev/null and b/make/lib/android-sdk/9/android-java-src.zip differ -- cgit v1.2.3