blob: da7d9fbfd25c7082ecf316139625a010fc300fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|