-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
87 lines (73 loc) · 2.79 KB
/
build.gradle
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
}
android {
compileSdk 31
defaultConfig {
applicationId "com.example.careium"
minSdk 24
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
viewBinding true
mlModelBinding true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
// Drawer Layout
implementation 'androidx.drawerlayout:drawerlayout:1.1.1'
// Rounded Image View
implementation 'com.makeramen:roundedimageview:2.3.0'
// Bottom Navigation Bar
implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0'
// Circular Floating Action Menu
implementation 'com.oguzdev:CircularFloatingActionMenu:1.0.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
//tensorflow
implementation('org.tensorflow:tensorflow-lite:2.4.0') { changing = true }
implementation('org.tensorflow:tensorflow-lite-support:0.1.0') { changing = true }
implementation 'org.tensorflow:tensorflow-lite-metadata:0.1.0'
implementation 'com.google.firebase:firebase-storage-ktx:20.0.1'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
//view model
def lifecycle_version = "2.1.0"
//noinspection GradleDependency
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
//YOYO animation
implementation 'com.daimajia.androidanimations:library:2.4@aar'
// Firebase
implementation 'com.google.firebase:firebase-auth-ktx:21.0.6'
implementation 'com.google.firebase:firebase-database:20.0.5'
// Testing
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
testImplementation "com.google.truth:truth:1.1.3"
androidTestImplementation "com.google.truth:truth:1.1.3"
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation 'androidx.test:core:1.4.0'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.3'
}