forked from Cleveroad/WaveInApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (31 loc) · 1.11 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.cleveroad.audiovisualization.wallpaper"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
final SUPPORT_LIB_VERSION = '28.0.0'
final COLOR_PICKER_VERSION = '1.5'
final BUTTER_KNIFE_VERSION = '7.0.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
compile "com.android.support:appcompat-v7:$SUPPORT_LIB_VERSION"
compile "com.larswerkman:HoloColorPicker:$COLOR_PICKER_VERSION"
compile "com.jakewharton:butterknife:$BUTTER_KNIFE_VERSION"
compile project(':library')
}