Yaaic/app/build.gradle

33 lines
815 B
Groovy
Raw Normal View History

2015-03-13 12:03:56 -04:00
apply plugin: 'com.android.application'
android {
2015-03-13 19:02:11 -04:00
compileSdkVersion 22
2015-03-18 03:26:07 -04:00
buildToolsVersion '22.0.0'
2015-03-13 12:03:56 -04:00
defaultConfig {
applicationId "org.yaaic"
minSdkVersion 21
2015-03-13 19:02:11 -04:00
targetSdkVersion 22
2015-03-17 12:42:31 -04:00
versionCode 14
versionName "2.0"
2015-03-13 12:03:56 -04:00
}
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
}
2015-03-13 12:03:56 -04:00
}
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'
2015-03-13 12:03:56 -04:00
}