1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-01-08 12:18:07 -05:00
Yaaic/app/build.gradle
Sebastian Kaspari 2c78483c64 Refactoring ServersActivity to new (more "Material") OverviewFragment.
The new launch activity is MainActivity. The other activities will mostly become fragments.
2015-03-21 12:08:37 +01:00

30 lines
740 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'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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.viewpagerindicator:library:2.4.1@aar'
}