Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Created February 4, 2016 12:23
Show Gist options
  • Save miquelbeltran/bc5c611b635910fdb27a to your computer and use it in GitHub Desktop.
Save miquelbeltran/bc5c611b635910fdb27a to your computer and use it in GitHub Desktop.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
}
}
apply plugin: 'com.android.application'
apply plugin: 'jacoco-android'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.beltranfebrer.transformerviewpagerapp"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.github.lzyzsd.randomcolor:library:1.0.0'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile "org.robolectric:robolectric:3.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment