memories/android/app/build.gradle

57 lines
1.8 KiB
Groovy
Raw Normal View History

2023-05-04 03:10:02 +00:00
plugins {
id 'com.android.application'
2023-05-12 06:40:19 +00:00
id 'kotlin-android'
2023-08-21 19:32:52 +00:00
id 'com.google.devtools.ksp' version '1.9.0-1.0.13'
2023-05-04 03:10:02 +00:00
}
android {
namespace 'gallery.memories'
2023-05-08 01:57:29 +00:00
compileSdk 33
2023-05-04 03:10:02 +00:00
defaultConfig {
applicationId "gallery.memories"
minSdk 27
2023-05-08 01:57:29 +00:00
targetSdk 33
2023-10-14 06:43:43 +00:00
versionCode 4
versionName "1.4"
2023-05-04 03:10:02 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
2023-08-21 19:32:52 +00:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2023-05-04 03:10:02 +00:00
}
buildFeatures {
viewBinding true
}
}
dependencies {
2023-08-21 19:32:52 +00:00
def media_version = "1.1.1"
def room_version = "2.5.2"
2023-05-12 06:40:19 +00:00
implementation 'androidx.core:core-ktx:1.10.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2023-05-08 01:57:29 +00:00
implementation 'androidx.appcompat:appcompat:1.6.1'
2023-05-12 06:40:19 +00:00
implementation 'com.google.android.material:material:1.9.0'
2023-05-08 01:57:29 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2023-08-21 19:32:52 +00:00
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
2023-05-08 01:57:29 +00:00
implementation 'androidx.exifinterface:exifinterface:1.3.6'
2023-08-21 19:32:52 +00:00
implementation "androidx.media3:media3-exoplayer:$media_version"
implementation "androidx.media3:media3-ui:$media_version"
implementation "androidx.media3:media3-exoplayer-hls:$media_version"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
ksp "androidx.room:room-compiler:$room_version"
2023-05-16 08:07:00 +00:00
implementation "com.squareup.okhttp3:okhttp:4.10.0"
2023-05-18 05:56:42 +00:00
implementation "io.github.g00fy2:versioncompare:1.5.0"
2023-05-04 03:10:02 +00:00
}