/* * Copyright (c) 2023 Samson Achiaga * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ plugins { id("com.android.application") kotlin("android") id("kotlin-kapt") id("kotlin-parcelize") id("dagger.hilt.android.plugin") id("androidx.navigation.safeargs.kotlin") id("com.google.devtools.ksp") id("org.jetbrains.kotlin.plugin.compose") version "2.1.0" kotlin("plugin.serialization") version "2.1.0" } android { compileSdk = 35 namespace = "com.certified.audionote" defaultConfig { applicationId = "com.certified.audionote" minSdk = 21 targetSdk = 35 versionCode = 7 versionName = "0.1.5.2" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" ksp { arg("generateKotlin", "true") } } buildTypes { release { isMinifyEnabled = false isShrinkResources = false proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } buildFeatures { dataBinding = true viewBinding = true compose = true } } dependencies { implementation("androidx.core:core-ktx:1.15.0") implementation("androidx.appcompat:appcompat:1.7.0") implementation("com.google.android.material:material:1.12.0") implementation("androidx.constraintlayout:constraintlayout:2.2.0") implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7") implementation("androidx.navigation:navigation-fragment-ktx:2.8.5") implementation("androidx.navigation:navigation-ui-ktx:2.8.5") implementation("androidx.legacy:legacy-support-v4:1.0.0") implementation("androidx.preference:preference-ktx:1.2.1") implementation("androidx.work:work-runtime-ktx:2.10.0") implementation("androidx.core:core-splashscreen:1.0.1") // Compose implementation(platform("androidx.compose:compose-bom:2024.12.01")) implementation("androidx.compose.material3:material3") implementation("androidx.compose.material:material-icons-extended:1.7.6") implementation("androidx.compose.ui:ui-tooling-preview") debugImplementation("androidx.compose.ui:ui-tooling") implementation("androidx.activity:activity-compose:1.9.3") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7") implementation("androidx.navigation:navigation-compose:2.8.5") // Intuit ssp/sdp implementation("com.intuit.ssp:ssp-android:1.1.0") implementation("com.intuit.sdp:sdp-android:1.1.0") // Coroutines implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0") // Room persistence library implementation("androidx.room:room-runtime:2.6.1") implementation("androidx.room:room-ktx:2.6.1") ksp("androidx.room:room-compiler:2.6.1") // Datastore implementation("androidx.datastore:datastore-preferences:1.1.1") // Hilt implementation("com.google.dagger:hilt-android:2.53.1") ksp("com.google.dagger:hilt-compiler:2.53.1") ksp("androidx.hilt:hilt-compiler:1.2.0") implementation("androidx.hilt:hilt-navigation-compose:1.2.0") // TimerX implementation("com.github.arsvechkarev:TimerX:3.1.0") // Serilization implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") // Page indicator implementation("com.github.romandanylyk:PageIndicatorView:v.1.0.3") // Window implementation("androidx.window:window:1.3.0") // Integration testing androidTestImplementation("androidx.test.ext:junit:1.2.1") androidTestImplementation("com.google.truth:truth:1.1.3") androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1") androidTestImplementation(platform("androidx.compose:compose-bom:2024.12.01")) androidTestImplementation("androidx.compose.ui:ui-test-junit4") debugImplementation("androidx.compose.ui:ui-test-manifest") // Unit testing testImplementation("junit:junit:4.13.2") testImplementation("com.google.truth:truth:1.1.3") testImplementation("androidx.room:room-testing:2.6.1") }