plugins { id("com.android.application") id("org.jetbrains.kotlin.android") } android { namespace = "com.myreader.app" compileSdk = 34 defaultConfig { applicationId = "com.myreader.app" minSdk = 26 targetSdk = 34 versionCode = 1 versionName = "1.0" } buildTypes { release { isMinifyEnabled = false proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } buildFeatures { compose = true } composeOptions { kotlinCompilerExtensionVersion = "1.5.5" } packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } } } dependencies { implementation(platform("androidx.compose:compose-bom:2023.10.01")) implementation("androidx.core:core-ktx:1.12.0") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2") implementation("androidx.activity:activity-compose:1.8.1") implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-graphics") implementation("androidx.compose.ui:ui-tooling-preview") implementation("androidx.compose.material3:material3") implementation("androidx.compose.material:material-icons-extended") implementation("androidx.compose.foundation:foundation") implementation("androidx.documentfile:documentfile:1.0.1") implementation("org.commonmark:commonmark:0.21.0") implementation("org.commonmark:commonmark-ext-gfm-tables:0.21.0") implementation("org.commonmark:commonmark-ext-autolink:0.21.0") implementation("org.commonmark:commonmark-ext-task-list-items:0.21.0") implementation("org.commonmark:commonmark-ext-heading-anchor:0.21.0") implementation("com.google.code.gson:gson:2.10.1") debugImplementation("androidx.compose.ui:ui-tooling") }