-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
28 lines (26 loc) · 863 Bytes
/
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
apply plugin: "com.android.application"
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.adriangl.overlayhelperexample"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
}
dependencies {
implementation project(":lib")
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation "junit:junit:4.12"
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}