-
-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathbuild.gradle
More file actions
67 lines (56 loc) · 2 KB
/
Copy pathbuild.gradle
File metadata and controls
67 lines (56 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.devtools.ksp' version '2.3.4'
}
android {
namespace 'gallery.memories'
compileSdk = 36
buildFeatures {
buildConfig = true
}
defaultConfig {
applicationId "gallery.memories"
minSdk 30
targetSdk 36
versionCode 15
versionName "1.15"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}
buildFeatures {
viewBinding true
}
}
dependencies {
def media_version = "1.9.0"
def room_version = "2.8.4"
implementation 'androidx.core:core-ktx:1.17.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'com.google.android.material:material:1.13.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.9.6'
implementation 'androidx.navigation:navigation-ui-ktx:2.9.6'
implementation 'androidx.exifinterface:exifinterface:1.4.2'
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"
implementation "com.squareup.okhttp3:okhttp:5.3.2"
implementation "io.github.g00fy2:versioncompare:1.5.0"
def work_version = "2.9.1"
implementation "androidx.work:work-runtime-ktx:$work_version"
implementation 'com.github.bumptech.glide:glide:4.16.0'
}