mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-14 13:05:02 -05:00
0a539c3a04
Unfortunately a warning inside of appcompat prevents us from enabling this option.
33 lines
815 B
Groovy
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.0.0'
|
|
compile 'com.android.support:cardview-v7:22.0.0'
|
|
compile 'com.android.support:recyclerview-v7:22.0.0'
|
|
compile 'com.android.support:appcompat-v7:22.0.0'
|
|
}
|