summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AndroidManifest.xml5
-rw-r--r--src/com/github/junrar/unpack/decode/Compress.java2
2 files changed, 4 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ab35188..aafe485 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttcomics"
- android:versionCode="18"
+ android:versionCode="19"
android:versionName="1.0.9" >
<uses-sdk
@@ -14,7 +14,8 @@
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
- android:hardwareAccelerated="true"
+ android:hardwareAccelerated="true"
+ android:largeHeap="true"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
diff --git a/src/com/github/junrar/unpack/decode/Compress.java b/src/com/github/junrar/unpack/decode/Compress.java
index 12bf342..bb96dad 100644
--- a/src/com/github/junrar/unpack/decode/Compress.java
+++ b/src/com/github/junrar/unpack/decode/Compress.java
@@ -25,7 +25,7 @@ package com.github.junrar.unpack.decode;
*/
public class Compress {
public static final int CODEBUFSIZE = 0x4000;
- public static final int MAXWINSIZE = 0x400000;
+ public static final int MAXWINSIZE = 0x100000;
public static final int MAXWINMASK = (MAXWINSIZE-1);
public static final int LOW_DIST_REP_COUNT = 16;