forked from vanniktech/Emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (26 loc) · 950 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
29
30
31
32
33
34
apply plugin: 'com.android.library'
afterEvaluate {
generateReleaseBuildConfig.enabled = false
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion as int
buildToolsVersion rootProject.ext.buildToolsVersion as String
compileOptions {
sourceCompatibility rootProject.ext.javaVersion as JavaVersion
targetCompatibility rootProject.ext.javaVersion as JavaVersion
}
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion as int
}
resourcePrefix 'emoji'
}
dependencies {
compile rootProject.ext.supportAppCompat
compile rootProject.ext.supportCardView
testCompile rootProject.ext.testing.junit
testCompile rootProject.ext.testing.mockito
testCompile rootProject.ext.testing.assertJ
testCompile rootProject.ext.testing.robolectric
testCompile rootProject.ext.testing.privateConstructor
}
apply from: rootProject.file('gradle/gradle-mvn-push.gradle')