-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (63 loc) · 2.59 KB
/
build.gradle
File metadata and controls
69 lines (63 loc) · 2.59 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
68
69
plugins {
id('com.android.application')
id('com.apollographql.apollo').version('2.5.12')
id('com.google.gms.google-services')
}
def keyFile = file('../keys.properties')
def keyProperties = new Properties()
keyProperties.load(new FileInputStream(keyFile))
android {
compileSdkVersion 33
defaultConfig {
applicationId "com.cornellappdev.android.eatery"
minSdkVersion 26
targetSdkVersion 33
versionCode 52
versionName "2.7.6"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resValue 'string', "google_maps_key", keyProperties["googleMapApiKey"]
resValue 'string', "encryption_key", keyProperties['encryptionKey']
resValue 'string', "encryption_salt", keyProperties['encryptionSalt']
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation platform('com.google.firebase:firebase-bom:30.3.2')
implementation 'com.apollographql.apollo:apollo-runtime:2.5.12'
implementation 'com.apollographql.apollo:apollo-android-support:2.5.12'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'com.facebook.shimmer:shimmer:0.5.0'
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.exifinterface:exifinterface:1.3.3'
implementation 'org.jetbrains:annotations:16.0.2'
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
implementation "com.airbnb.android:lottie:3.2.2"
implementation 'com.google.android.gms:play-services-maps:18.1.0'
implementation 'com.squareup.picasso:picasso:2.71828'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
apollo {
packageName.set("com.cornellappdev.android.eatery")
generateKotlinModels.set(false)
}