48 lines
1.1 KiB
Groovy
48 lines
1.1 KiB
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:1.1.1'
|
||
|
}
|
||
|
}
|
||
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 22
|
||
|
buildToolsVersion "23.0.0 rc2"
|
||
|
|
||
|
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:+'
|
||
|
}
|