Yaaic/app/build.gradle

33 lines
815 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '22.0.0'
defaultConfig {
applicationId "org.yaaic"
minSdkVersion 21
targetSdkVersion 22
versionCode 14
versionName "2.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
// A warning inside of appcompat prevents us from enabling this option
abortOnError false
}
}
dependencies {
compile 'com.android.support:support-v4:22.1.1'
compile 'com.android.support:cardview-v7:22.1.1'
compile 'com.android.support:recyclerview-v7:22.1.1'
compile 'com.android.support:appcompat-v7:22.1.1'
}