diff options
author | Sven Gothel <[email protected]> | 2011-08-03 16:21:10 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-03 16:21:10 +0200 |
commit | d522b4dffd5d569c4116275d6ef278bb0741c79d (patch) | |
tree | 087e21ea3f05eee8b664f9ba229778a199f8582c /make/lib/android-sdk/9 | |
parent | e659f5994875275d4eb46e745676a3d84e27d1e9 (diff) |
Add android src zip, better license info; Dropped SDK 8 for now
Diffstat (limited to 'make/lib/android-sdk/9')
-rw-r--r-- | make/lib/android-sdk/9/LICENSE.txt | 10 | ||||
-rw-r--r-- | make/lib/android-sdk/9/android-java-src.txt | 22 | ||||
-rw-r--r-- | make/lib/android-sdk/9/android-java-src.zip | bin | 0 -> 6020823 bytes |
3 files changed, 32 insertions, 0 deletions
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 Binary files differnew file mode 100644 index 0000000..59e4979 --- /dev/null +++ b/make/lib/android-sdk/9/android-java-src.zip |