mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
- 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:
parent
3569162c69
commit
77a9722e16
|
@ -16,8 +16,8 @@
|
||||||
-->
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.zxing.client.android"
|
package="com.google.zxing.client.android"
|
||||||
android:versionName="4.0"
|
android:versionName="4.0 alpha 1"
|
||||||
android:versionCode="75"
|
android:versionCode="77"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
<uses-sdk android:minSdkVersion="7"
|
<uses-sdk android:minSdkVersion="7"
|
||||||
android:targetSdkVersion="7"/>
|
android:targetSdkVersion="7"/>
|
||||||
|
|
|
@ -100,7 +100,9 @@ limitations under the License.
|
||||||
<!-- These targets only exist so they will be visible in IntelliJ. -->
|
<!-- These targets only exist so they will be visible in IntelliJ. -->
|
||||||
<target name="ij-debug" depends="clean,debug"/>
|
<target name="ij-debug" depends="clean,debug"/>
|
||||||
<target name="ij-release" depends="clean,release"/>
|
<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"/>
|
<target name="ij-uninstall" depends="uninstall"/>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -100,7 +100,9 @@ limitations under the License.
|
||||||
<!-- These targets only exist so they will be visible in IntelliJ. -->
|
<!-- These targets only exist so they will be visible in IntelliJ. -->
|
||||||
<target name="ij-debug" depends="clean,debug"/>
|
<target name="ij-debug" depends="clean,debug"/>
|
||||||
<target name="ij-release" depends="clean,release"/>
|
<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"/>
|
<target name="ij-uninstall" depends="uninstall"/>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue