Update version

This commit is contained in:
MBuchalik 2017-12-06 12:21:18 +01:00
parent 68ea66305b
commit 1039509d0b
3 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ Maybe you simply need to build for one architecture because of other reasons? Th
# Usage
Include this plugin in your config.xml:
``` xml
<plugin name="cordova-build-architecture" spec="https://github.com/MBuchalik/cordova-build-architecture.git#v1.0.2" source="git" />
<plugin name="cordova-build-architecture" spec="https://github.com/MBuchalik/cordova-build-architecture.git#v1.0.3" source="git" />
```
By default, it will try to produce arm builds only. If you want to target x86, add the following preference:

View File

@ -1,6 +1,6 @@
{
"name": "cordova-build-architecture",
"version": "1.0.2",
"version": "1.0.3",
"description": "Experimental plugin to force one single arm or x86 build",
"repository": {
"type": "git",

View File

@ -3,13 +3,13 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-build-architecture"
version="1.0.1">
version="1.0.3">
<name>Build Architecture</name>
<description>Experimental plugin to force one single arm or x86 build</description>
<license>MIT</license>
<repo>https://github.com/MBuchalik/cordova-build-architecture</repo>
<engines>
<engine name="cordova-android" version=">=4"/>
<engine name="cordova-plugman" version=">=4.2.0"/><!-- needed for gradleReference support -->
@ -20,7 +20,7 @@
<config-file target="res/xml/config.xml" parent="/*">
<preference name="buildArchitecture" default="arm" />
</config-file>
<framework src="platforms/android/architecture.gradle" custom="true" type="gradleReference"/>
</platform>
</plugin>