Index: build/android/ant/create-test-jar.js |
diff --git a/build/android/ant/create-test-jar.js b/build/android/ant/create-test-jar.js |
index 542a89e978feada38ddf99562bd856bc1ca0a623..d22c00319617a09ed155a28e631e8715deff6559 100644 |
--- a/build/android/ant/create-test-jar.js |
+++ b/build/android/ant/create-test-jar.js |
@@ -4,7 +4,7 @@ |
/** |
* Combines classes from javac.custom.classpath property and ${out.dir}/classes |
- * into a single jar file ${ant.project.name}-debug.jar and places the file in |
+ * into a single jar file ${ant.project.name}.jar and places the file in |
* ${lib.java.dir}. |
*/ |
@@ -26,7 +26,7 @@ var duplicate = Zip.Duplicate(); |
duplicate.setValue("preserve"); |
jarTask.setDuplicate(duplicate); |
-var destFile = project.getProperty("ant.project.name") + "-debug.jar"; |
+var destFile = project.getProperty("ant.project.name") + ".jar"; |
var destPath = File(project.getProperty("test.lib.java.dir") + "/" + destFile); |
jarTask.setDestFile(destPath); |