Skip to content

Commit bebe181

Browse files
Merge pull request #43 from LeKiosqueFr/release/1.16.0
[V1.16.0] Update Reader Version
2 parents 469408c + 5cf153d commit bebe181

5 files changed

Lines changed: 25 additions & 21 deletions

File tree

CHANGELOG.md

100644100755
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# MiLibrisReaderSDK Android changelog
22

3+
# 1.16.0
4+
5+
## Features
6+
- Support for [16 KB page sizes](https://developer.android.com/guide/practices/page-sizes)
7+
38
# 1.15.0
49

510
## Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repositories {
4343
}
4444
4545
dependencies {
46-
def miLibrisReader = "1.15.0"
46+
def miLibrisReader = "1.16.0"
4747
api("com.milibris:one-reader:$miLibrisReader") { //If you ever have conflict with the version used in our library add this line
4848
exclude group: "androidx.lifecycle"
4949
}

app/build.gradle

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ plugins {
44
}
55

66
android {
7-
compileSdk 35
8-
buildToolsVersion "35.0.0"
7+
compileSdk 36
8+
buildToolsVersion "36.0.0"
99

1010
defaultConfig {
1111
applicationId "com.milibris.reader.sdk.sample"
1212
minSdk 21
13-
targetSdk 35
13+
targetSdk 36
1414
versionCode 1
1515
versionName "1.0"
1616

@@ -28,7 +28,6 @@ android {
2828

2929
buildTypes {
3030
debug {
31-
minifyEnabled true
3231
signingConfig signingConfigs.debug
3332
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt') , 'proguard-rules.pro'
3433
}
@@ -40,33 +39,33 @@ android {
4039
}
4140
compileOptions {
4241
coreLibraryDesugaringEnabled = true
43-
44-
sourceCompatibility JavaVersion.VERSION_1_8
45-
targetCompatibility JavaVersion.VERSION_1_8
42+
// Sets Java compatibility to Java 11
43+
sourceCompatibility = JavaVersion.VERSION_11
44+
targetCompatibility = JavaVersion.VERSION_11
4645
}
4746
kotlinOptions {
48-
jvmTarget = '1.8'
47+
jvmTarget = JavaVersion.VERSION_11.toString()
4948
}
5049
androidResources {
51-
noCompress ''
50+
noCompress += "milibris_sample.complete"
5251
}
5352
namespace 'com.milibris.reader.sdk.sample'
5453
}
55-
ext.readerVersion = "1.15.0"
54+
ext.readerVersion = "1.16.0"
5655

5756
dependencies {
5857

5958
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
60-
implementation 'androidx.core:core-ktx:1.15.0'
61-
implementation 'androidx.appcompat:appcompat:1.7.0'
59+
implementation 'androidx.core:core-ktx:1.16.0'
60+
implementation 'androidx.appcompat:appcompat:1.7.1'
6261
implementation 'com.google.android.material:material:1.12.0'
63-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.7'
64-
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
62+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.9.2'
63+
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2'
6564
testImplementation 'junit:junit:4.13.2'
6665
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
6766
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
68-
api("com.milibris:one-reader:$readerVersion") {
67+
api "com.milibris:milibris-reader:1.16.0"
68+
api("com.milibris:one-reader:1.16.0") {
6969
exclude group: "androidx.lifecycle"
7070
}
71-
api "com.milibris:milibris-reader:$readerVersion"
7271
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.7.3' apply false
4-
id 'com.android.library' version '8.7.3' apply false
3+
id 'com.android.application' version '8.11.1' apply false
4+
id 'com.android.library' version '8.11.1' apply false
55
id 'org.jetbrains.kotlin.android' version '1.9.24' apply false
66
}
77
task clean(type: Delete) {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Dec 03 10:42:10 CET 2024
1+
#Fri Jul 25 11:31:07 CEST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)