- Bumped the versionCode to one past 3.72.

- Fixed the ij-install target which the new Android SDK broke.

git-svn-id: https://zxing.googlecode.com/svn/trunk@2043 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin@google.com 2011-11-17 19:19:55 +00:00
parent 3569162c69
commit 77a9722e16
3 changed files with 8 additions and 4 deletions

View file

@ -16,8 +16,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.zxing.client.android"
android:versionName="4.0"
android:versionCode="75"
android:versionName="4.0 alpha 1"
android:versionCode="77"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="7"/>

View file

@ -100,7 +100,9 @@ limitations under the License.
<!-- These targets only exist so they will be visible in IntelliJ. -->
<target name="ij-debug" depends="clean,debug"/>
<target name="ij-release" depends="clean,release"/>
<target name="ij-install" depends="clean,install"/>
<target name="ij-install" depends="clean">
<exec command="ant debug install"/>
</target>
<target name="ij-uninstall" depends="uninstall"/>
</project>

View file

@ -100,7 +100,9 @@ limitations under the License.
<!-- These targets only exist so they will be visible in IntelliJ. -->
<target name="ij-debug" depends="clean,debug"/>
<target name="ij-release" depends="clean,release"/>
<target name="ij-install" depends="clean,install"/>
<target name="ij-install" depends="clean">
<exec command="ant debug install"/>
</target>
<target name="ij-uninstall" depends="uninstall"/>
</project>