mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Enable zipalign for Maven Android builds
This commit is contained in:
parent
654bf49a57
commit
85417072e1
12
pom.xml
12
pom.xml
|
@ -274,6 +274,15 @@
|
|||
<artifactId>android-maven-plugin</artifactId>
|
||||
<version>3.9.0-rc.1</version>
|
||||
<extensions>true</extensions>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>android-zipalign</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>zipalign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<sdk>
|
||||
<platform>15</platform>
|
||||
|
@ -284,6 +293,9 @@
|
|||
<sign>
|
||||
<debug>true</debug>
|
||||
</sign>
|
||||
<zipalign>
|
||||
<skip>false</skip>
|
||||
</zipalign>
|
||||
<release>false</release>
|
||||
<apkDebug>true</apkDebug>
|
||||
</configuration>
|
||||
|
|
Loading…
Reference in a new issue