-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (46 loc) · 1.3 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
buildscript {
ext.androidVersion = project.hasProperty("androidVersion") ? androidVersion as int : 28
ext.androidVersionText = project.hasProperty("androidVersionText") ? androidVersionText : "28.0.0"
repositories {
mavenCentral()
jcenter()
google()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
apply plugin: "com.android.application"
android {
compileSdkVersion androidVersion
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "kr.co.mediex.myhealth.sample"
minSdkVersion 16
targetSdkVersion androidVersion
multiDexEnabled true
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
repositories {
mavenCentral()
jcenter()
google()
maven { url "https://maven.google.com" }
flatDir { dirs "libs" }
}
dependencies {
// compile project(path: ":library")
implementation(name: "kr.co.mediex.myhealth-1.0.4", ext: "aar")
implementation "com.android.support:appcompat-v7:$androidVersionText"
implementation "com.android.support:design:$androidVersionText"
}