apply plugin: 'com.android.library' android { compileSdkVersion 22 buildToolsVersion "25.0.2" defaultConfig { minSdkVersion 8 targetSdkVersion 19 versionCode 1 versionName "4.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { testCoverageEnabled = true } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } lintOptions { abortOnError false } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile ('com.smartdevicelink:bson_java_port:1.0.0@aar'){ transitive = true } androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) testCompile 'junit:junit:4.12' } buildscript { repositories { jcenter() mavenCentral() } dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' classpath 'com.trickyandroid:jacoco-everywhere:0.2.1' } } apply from: 'bintray.gradle' apply plugin: 'jacoco-everywhere'