Increase allowed memory for build

This commit is contained in:
drdev
2014-05-02 02:58:26 +00:00
parent d37cc14fcb
commit 0ed941b09a

View File

@@ -176,7 +176,6 @@
<id>android</id> <id>android</id>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId> <groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId> <artifactId>android-maven-plugin</artifactId>
@@ -203,12 +202,12 @@
<dex> <dex>
<jvmArguments> <jvmArguments>
<argument>-Xms128m</argument> <argument>-Xms128m</argument>
<argument>-Xmx1024m</argument> <argument>-Xmx2048m</argument>
</jvmArguments> </jvmArguments>
</dex> </dex>
<jvmArguments> <jvmArguments>
<argument>-Xms128m</argument> <argument>-Xms128m</argument>
<argument>-Xmx1024m</argument> <argument>-Xmx2048m</argument>
</jvmArguments> </jvmArguments>
</configuration> </configuration>
</plugin> </plugin>
@@ -240,10 +239,8 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile> </profile>
</profiles> </profiles>
</project> </project>