plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id "kotlin-kapt" } android { compileSdk 34 defaultConfig { applicationId "com.denizk0461.textbasic" minSdk 23 targetSdk 33 versionCode 11 versionName "2.0.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } ndkVersion "21.3.6528147" buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' ndk { debugSymbolLevel 'SYMBOL_TABLE' } } } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = '17' } viewBinding.enabled = true namespace 'com.denizd.textbasic' } dependencies { implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.10.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.navigation:navigation-fragment-ktx:2.7.4' implementation 'androidx.navigation:navigation-ui-ktx:2.7.4' implementation 'com.google.code.gson:gson:2.10.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' implementation "com.github.skydoves:colorpickerview:2.2.4" implementation "androidx.room:room-runtime:2.6.0" kapt "androidx.room:room-compiler:2.6.0" }