apply plugin: 'com.android.library' apply from: "quality.gradle" apply plugin: 'com.github.dcendents.android-maven' group='com.github.eggheadgames' android { compileSdkVersion 24 buildToolsVersion "24.0.2" defaultConfig { minSdkVersion 15 targetSdkVersion 24 versionCode 2 versionName "1.0.1" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } lintOptions { warningsAsErrors true disable 'GradleDependency' disable 'OldTargetApi' } } dependencies { compile 'com.github.daniel-stoneuk:material-about-library:1.5.0' compile('io.branch.sdk.android:library:2.5.7') { exclude module: 'answers.shim' } }