forked from jd-alexander/LikeButton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (33 loc) · 1.06 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 27
buildToolsVersion "27.0.1"
lintOptions {
abortOnError false
}
defaultConfig {
applicationId "com.like.example"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:appcompat-v7:27.0.1'
compile 'com.android.support:design:27.0.1'
compile project(':likebutton')
//compile 'com.github.jd-alexander:LikeButton:0.1.6'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'com.mikepenz:iconics-core:2.9.1@aar'
compile 'com.mikepenz:community-material-typeface:1.3.41.1@aar'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}