-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 789 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 789 Bytes
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.github.mikephil.charting.realm"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "3.0.3"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
}
dependencies {
//compile fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':MPChartLib-Realm')
//implementation 'com.github.PhilJay:MPAndroidChart-Realm:v2.0.3@aar'
//testCompile 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.0.2'
}