2023-05-08 11:27:43 +02:00
|
|
|
plugins {
|
|
|
|
|
id 'com.android.application'
|
|
|
|
|
id 'org.jetbrains.kotlin.android'
|
2023-05-30 09:36:57 +02:00
|
|
|
id "kotlin-kapt"
|
2023-05-08 11:27:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdk 33
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-05-16 15:46:34 +02:00
|
|
|
|
2023-05-08 11:27:43 +02:00
|
|
|
applicationId "com.denizk0461.textbasic"
|
|
|
|
|
minSdk 23
|
|
|
|
|
targetSdk 33
|
2023-05-30 09:36:57 +02:00
|
|
|
versionCode 11
|
2023-05-28 12:26:48 +02:00
|
|
|
versionName "2.0.2"
|
2023-05-08 11:27:43 +02:00
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ndkVersion "21.3.6528147"
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2023-05-16 15:46:34 +02:00
|
|
|
|
2023-05-08 11:27:43 +02:00
|
|
|
minifyEnabled true
|
|
|
|
|
shrinkResources true
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
|
debugSymbolLevel 'SYMBOL_TABLE'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
}
|
|
|
|
|
viewBinding.enabled = true
|
|
|
|
|
namespace 'com.denizd.textbasic'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
2023-05-15 15:18:47 +02:00
|
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
2023-05-08 11:27:43 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
|
implementation 'androidx.preference:preference:1.2.0'
|
2023-05-15 15:18:47 +02:00
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
|
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
|
2023-05-08 11:27:43 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
2023-05-16 11:38:04 +02:00
|
|
|
|
|
|
|
|
implementation "com.github.skydoves:colorpickerview:2.2.4"
|
2023-05-30 09:36:57 +02:00
|
|
|
|
|
|
|
|
implementation "androidx.room:room-runtime:2.5.1"
|
|
|
|
|
kapt "androidx.room:room-compiler:2.5.1"
|
2023-05-08 11:27:43 +02:00
|
|
|
}
|