build.gradle

 1apply plugin: 'com.android.library'
 2
 3repositories {
 4    mavenCentral()
 5    google()
 6}
 7
 8dependencies {
 9    implementation 'com.android.support:support-v4:27.0.2'
10    implementation 'com.nineoldandroids:library:2.4.0'
11}
12
13android {
14    compileSdkVersion 27
15    buildToolsVersion "27.0.3"
16
17    defaultConfig {
18        minSdkVersion 14
19        targetSdkVersion 25
20        versionName "0.3.4"
21        versionCode 9
22    }
23
24    lintOptions {
25        abortOnError false
26    }
27}
28
29apply plugin: 'maven'
30apply plugin: 'signing'
31
32version = android.defaultConfig.versionName
33group = "de.timroes.android"