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:
parent
f8a4a0dcf8
commit
20e8ab8bf4
6 changed files with 10 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
<?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"/>
|
||||
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
===== 1.2.5 (Dec ??, 2011) =====
|
||||
===== 1.2.6 (Dec ??, 2011) =====
|
||||
* 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) =====
|
||||
* Android 4.* issues have been fixed
|
||||
* Soft hyphen symbol (0xAD) support
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.2.4
|
||||
1.2.5
|
||||
|
|
|
@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
|
|||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := DeflatingDecompressor
|
||||
LOCAL_MODULE := DeflatingDecompressor-v2
|
||||
LOCAL_SRC_FILES := DeflatingDecompressor/DeflatingDecompressor.cpp
|
||||
LOCAL_LDLIBS := -lz
|
||||
|
||||
|
@ -10,7 +10,7 @@ include $(BUILD_SHARED_LIBRARY)
|
|||
|
||||
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
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.io.*;
|
|||
|
||||
class DeflatingDecompressor extends Decompressor {
|
||||
static {
|
||||
System.loadLibrary("DeflatingDecompressor");
|
||||
System.loadLibrary("DeflatingDecompressor-v2");
|
||||
}
|
||||
|
||||
// common variables
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.vimgadgets.linebreak;
|
|||
|
||||
public final class LineBreaker {
|
||||
static {
|
||||
System.loadLibrary("LineBreak");
|
||||
System.loadLibrary("LineBreak-v2");
|
||||
init();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue