tempus/app/build.gradle

104 lines
3.3 KiB
Groovy
Raw Normal View History

2020-11-20 15:38:08 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
2020-11-20 15:38:08 +01:00
android {
compileSdkVersion 34
buildToolsVersion '33.0.0'
2020-11-20 15:38:08 +01:00
defaultConfig {
2023-06-04 11:36:56 +02:00
applicationId 'com.cappielloantonio.tempo'
minSdkVersion 24
targetSdkVersion 34
2023-06-19 18:46:59 +02:00
versionCode 5
versionName '3.3.0'
2020-11-20 15:38:08 +01:00
2023-04-07 21:59:02 +02:00
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
2021-09-04 15:21:36 +02:00
javaCompileOptions {
annotationProcessorOptions {
2023-04-08 12:24:41 +02:00
arguments += [
"room.schemaLocation": "$projectDir/schemas".toString(),
"room.incremental" : "true"
]
2021-09-04 15:21:36 +02:00
}
}
2020-11-20 15:38:08 +01:00
}
buildTypes {
release {
shrinkResources true
minifyEnabled true
2020-11-20 15:38:08 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
debuggable false
2020-11-20 15:38:08 +01:00
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2020-11-20 15:38:08 +01:00
}
kotlin {
jvmToolchain(17)
2023-04-30 19:40:11 +02:00
}
2020-11-20 15:38:08 +01:00
buildFeatures {
2021-08-01 16:25:45 +02:00
viewBinding true
2020-11-20 15:38:08 +01:00
}
2023-04-30 19:40:11 +02:00
2023-06-17 15:30:23 +02:00
namespace 'com.cappielloantonio.tempo'
2020-11-20 15:38:08 +01:00
}
dependencies {
2023-04-07 21:59:02 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2020-12-05 21:31:12 +01:00
2020-11-22 19:11:38 +01:00
// AndroidX
2023-05-27 11:58:58 +02:00
implementation 'androidx.core:core-ktx:1.10.1'
2023-02-18 11:41:16 +01:00
implementation 'androidx.appcompat:appcompat:1.6.1'
2022-08-25 15:11:03 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2023-04-07 21:59:02 +02:00
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
2022-01-28 17:09:49 +01:00
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
2023-03-08 19:20:54 +01:00
implementation 'androidx.recyclerview:recyclerview:1.3.0'
2023-04-03 18:05:52 +02:00
implementation 'androidx.room:room-runtime:2.5.1'
2023-04-07 21:59:02 +02:00
implementation 'androidx.cardview:cardview:1.0.0'
2021-12-26 19:47:20 +01:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2023-05-06 16:43:21 +02:00
implementation 'androidx.core:core-splashscreen:1.0.1'
2020-11-22 19:11:38 +01:00
// Google GMS
2023-04-03 18:05:52 +02:00
implementation 'com.google.android.gms:play-services-cast-framework:21.3.0'
2020-11-22 19:11:38 +01:00
// Android Material
implementation 'com.google.android.material:material:1.9.0'
2020-11-22 19:11:38 +01:00
// SearchBar
2021-11-03 14:57:22 +01:00
implementation 'com.paulrybitskyi.persistentsearchview:persistentsearchview:1.1.4'
2023-04-07 21:59:02 +02:00
implementation 'com.arthurivanets.adapster:adapster:1.0.13'
2020-11-22 19:11:38 +01:00
// Glide
implementation 'com.github.bumptech.glide:glide:4.15.1'
implementation 'com.github.bumptech.glide:annotations:4.15.1'
2020-12-05 21:31:12 +01:00
2021-12-26 19:47:20 +01:00
// Media3
2023-05-27 11:58:58 +02:00
implementation 'androidx.media3:media3-session:1.0.2'
implementation 'androidx.media3:media3-common:1.0.2'
implementation 'androidx.media3:media3-exoplayer:1.0.2'
implementation 'androidx.media3:media3-ui:1.0.2'
implementation 'androidx.media3:media3-cast:1.0.2'
2022-08-25 15:11:03 +02:00
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
2023-04-03 18:05:52 +02:00
annotationProcessor 'androidx.room:room-compiler:2.5.1'
2021-07-24 12:28:06 +02:00
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
2022-03-19 22:44:45 +01:00
implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.6'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
2021-07-24 12:28:06 +02:00
2021-08-14 16:08:08 +02:00
// Crash Report
// debugImplementation 'com.balsikandar.android:crashreporter:1.1.0'
// DB debug
2023-03-10 11:20:37 +01:00
// debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
2020-11-20 15:38:08 +01:00
}