-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·97 lines (79 loc) · 3.41 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
88
89
90
91
92
93
94
95
96
97
apply plugin: 'com.android.application'
apply plugin: 'de.undercouch.download'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId 'com.ciber.foodieshoot.applications.detection'
minSdkVersion 28
targetSdkVersion 28
versionCode 1
versionName "1.0"
applicationIdSuffix = 'FoodieShoot'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
aaptOptions {
noCompress "tflite"
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
// Build off of nightly TensorFlow Lite
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation('org.tensorflow:tensorflow-lite:0.0.0-nightly') { changing = true }
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'com.google.truth:truth:1.0.1'
//Login and sign up dependencies
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:support-core-utils:28.0.0"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
implementation 'com.google.android.material:material:1.0.0-alpha1'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
//REST API library to make api calls in one line
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.4'
//JSON parser
implementation 'com.fasterxml.jackson.core:jackson-core:2.7.2'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.7.2'
implementation 'org.apache.commons:commons-lang3:3.6'
//Nav bar
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
//Circular image
implementation 'de.hdodenhof:circleimageview:3.1.0'
//Swipe refresh
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
//Collapsible post
implementation 'androidx.cardview:cardview:1.0.0'
//Geolocation
implementation 'com.google.android.gms:play-services-location:17.0.0'
}