This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (57 loc) · 2.15 KB
/
build.gradle
File metadata and controls
60 lines (57 loc) · 2.15 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "com.microsoft.graph.snippets"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName '1.5'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath false
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/maven/com.google.guava/guava/pom.properties'
exclude 'META-INF/maven/com.google.guava/guava/pom.xml'
exclude 'META-INF/jersey-module-version'
}
configurations {
all {
resolutionStrategy.force 'com.android.support:support-annotations:25.3.1'
}
}
productFlavors {
}
}
dependencies {
implementation 'com.android.volley:volley:1.0.0'
implementation 'com.android.support:support-fragment:25.1.0'
implementation 'com.android.support:appcompat-v7:25.1.0'
// Butterknife
implementation 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
implementation 'joda-time:joda-time:2.9.4'
implementation 'com.google.guava:guava:19.0'
// Test libraries
androidTestImplementation 'com.android.support:support-annotations:25.1.0'
//noinspection GradleCompatible
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test:rules:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-intents:2.2.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-web:2.2.2'
implementation 'com.microsoft.graph:microsoft-graph-android-auth:0.1.0-SNAPSHOT'
}