Skip to content

Commit 33b7ea0

Browse files
committed
updating projects files and Makefile to use ant clean and ant release
1 parent 9841e8f commit 33b7ea0

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<classpathentry kind="lib" path="libs/commons-codec.jar"/>
66
<classpathentry kind="lib" path="libs/guava-r09.jar"/>
77
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
8-
<classpathentry kind="output" path="bin"/>
8+
<classpathentry kind="output" path="bin/classes"/>
99
</classpath>

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ build.xml
88
proguard.cfg
99
bin/
1010
gen/
11+
external/openssl
12+
external/sqlcipher

AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="info.guardianproject.database" android:versionCode="2"
4-
android:versionName="v1 (0.0.6.RC1)">
3+
package="info.guardianproject.database" android:versionCode="4"
4+
android:versionName="v1 (0.0.6.FINAL)">
55
<uses-sdk android:minSdkVersion="7"></uses-sdk>
66
<application android:icon="@drawable/icon" android:label="@string/app_name">
77

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ build-jni:
1818
cd jni/ && ndk-build
1919

2020
build-java:
21-
ant compile && \
21+
ant clean && \
22+
ant release && \
2223
cd bin/classes && \
2324
jar -cvf sqlcipher.jar .
2425

default.properties

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)