plugins { id 'com.gladed.androidgitversion' version '0.3.4' } apply plugin: 'com.android.application' apply plugin: 'kotlin-android' repositories { jcenter() mavenCentral() maven { url "https://jitpack.io" } maven { url "https://maven.google.com" } } android { compileSdkVersion Integer.parseInt(project.TARGET_SDK) buildToolsVersion project.BUILD_TOOLS androidGitVersion { codeFormat = 'MMNNBBBB' prefix 'v' } defaultConfig { minSdkVersion Integer.parseInt(project.MIN_SDK) targetSdkVersion Integer.parseInt(project.TARGET_SDK) versionCode androidGitVersion.code() versionName androidGitVersion.name() testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } lintOptions { abortOnError false checkReleaseBuilds false } sourceSets { main.java.srcDirs += 'src/main/kotlin' test.java.srcDirs += 'src/test/kotlin' } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':about') compile project(':adapter') compile project(':colorpicker') compile project(':core') compile project(':core-ui') compile project(':kpref-activity') compile project(':searchview') compile project(':imagepicker') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) testCompile 'junit:junit:4.12' compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}" }