1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

Fixed installation on Russian LG devices (version number is included in native libraries names)

This commit is contained in:
Nikolay Pultsin 2011-12-03 13:23:51 +00:00
parent f8a4a0dcf8
commit 20e8ab8bf4
6 changed files with 10 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.geometerplus.zlibrary.ui.android" android:versionCode="102041" android:versionName="1.2.4" android:installLocation="auto"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.geometerplus.zlibrary.ui.android" android:versionCode="102051" android:versionName="1.2.5" android:installLocation="auto">
<uses-sdk android:minSdkVersion="4" android:maxSdkVersion="10"/> <uses-sdk android:minSdkVersion="4" android:maxSdkVersion="10"/>
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" /> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />

View file

@ -1,6 +1,9 @@
===== 1.2.5 (Dec ??, 2011) ===== ===== 1.2.6 (Dec ??, 2011) =====
* Tips subsystem has been implemented * Tips subsystem has been implemented
===== 1.2.5 (Dec 03, 2011) =====
* Installation on devices with pre-installed old version has been fixed
===== 1.2.4 (Dec 03, 2011) ===== ===== 1.2.4 (Dec 03, 2011) =====
* Android 4.* issues have been fixed * Android 4.* issues have been fixed
* Soft hyphen symbol (0xAD) support * Soft hyphen symbol (0xAD) support

View file

@ -1 +1 @@
1.2.4 1.2.5

View file

@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := DeflatingDecompressor LOCAL_MODULE := DeflatingDecompressor-v2
LOCAL_SRC_FILES := DeflatingDecompressor/DeflatingDecompressor.cpp LOCAL_SRC_FILES := DeflatingDecompressor/DeflatingDecompressor.cpp
LOCAL_LDLIBS := -lz LOCAL_LDLIBS := -lz
@ -10,7 +10,7 @@ include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := LineBreak LOCAL_MODULE := LineBreak-v2
LOCAL_SRC_FILES := LineBreak/LineBreaker.cpp LineBreak/liblinebreak-2.0/linebreak.c LineBreak/liblinebreak-2.0/linebreakdata.c LineBreak/liblinebreak-2.0/linebreakdef.c LOCAL_SRC_FILES := LineBreak/LineBreaker.cpp LineBreak/liblinebreak-2.0/linebreak.c LineBreak/liblinebreak-2.0/linebreakdata.c LineBreak/liblinebreak-2.0/linebreakdef.c
include $(BUILD_SHARED_LIBRARY) include $(BUILD_SHARED_LIBRARY)

View file

@ -4,7 +4,7 @@ import java.io.*;
class DeflatingDecompressor extends Decompressor { class DeflatingDecompressor extends Decompressor {
static { static {
System.loadLibrary("DeflatingDecompressor"); System.loadLibrary("DeflatingDecompressor-v2");
} }
// common variables // common variables

View file

@ -2,7 +2,7 @@ package org.vimgadgets.linebreak;
public final class LineBreaker { public final class LineBreaker {
static { static {
System.loadLibrary("LineBreak"); System.loadLibrary("LineBreak-v2");
init(); init();
} }