-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes glide not a library project by default, although all that is really needed to use it as a library project is to just add android.library=true to project.properties again
- Loading branch information
Sam Judd
committed
Aug 8, 2013
1 parent
76c7bc1
commit 4e9cdbf
Showing
4 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
setup: | ||
jar: | ||
git submodule init | ||
git submodule update | ||
cd library/volley && ant jar | ||
cp library/volley/bin/volley.jar library/libs | ||
cd library && ant jar | ||
|
||
glide-minus-volley: | ||
cd library && ant glide-minus-volley | ||
|
||
update-ant: setup | ||
android update project --path .. --library glide/library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project name="glide-rules" default="help"> | ||
<target name="jar" depends="-compile"> | ||
<jar destfile="bin/glide.jar" | ||
basedir="bin/classes" > | ||
<zipgroupfileset dir="libs" includes="*.jar" /> | ||
</jar> | ||
</target> | ||
<target name="glide-minus-volley" depends="-compile"> | ||
<jar destfile="bin/glide-minus-volley.jar" | ||
basedir="bin/classes" > | ||
<zipgroupfileset dir="libs" includes="disklrucache*.jar" /> | ||
</jar> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters