Myterio/app/build.gradle

48 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2015-06-23 12:43:35 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.1'
}
}
apply plugin: 'com.android.application'
repositories {
jcenter()
}
android {
compileSdkVersion 22
2015-07-12 15:28:29 +00:00
buildToolsVersion "23.0.0 rc3"
2015-06-23 12:43:35 +00:00
defaultConfig {
applicationId "com.amine.myterio.app"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:+'
compile 'com.android.support:cardview-v7:+'
compile 'com.android.support:recyclerview-v7:+'
compile "com.android.support:support-v4:+"
compile 'com.melnykov:floatingactionbutton:+'
compile 'com.squareup.retrofit:retrofit:+'
}