@@ -4,13 +4,13 @@ plugins {
44}
55
66android {
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
5756dependencies {
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}
0 commit comments