2013-12-27 13:27:58 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-11-22 01:09:12 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:0.14.4'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-19 01:18:42 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2014-11-19 01:18:42 +01:00
|
|
|
compileSdkVersion 21
|
2014-11-22 01:09:12 +01:00
|
|
|
buildToolsVersion "21.1.1"
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2014-11-19 01:18:42 +01:00
|
|
|
targetSdkVersion 21
|
2013-12-27 13:27:58 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-05-26 22:22:13 +02:00
|
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
2014-11-19 01:18:42 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:21.0.2'
|
|
|
|
compile 'com.android.support:recyclerview-v7:21.0.0'
|
|
|
|
compile 'com.loopj.android:android-async-http:1.4.6'
|
2014-11-22 01:09:12 +01:00
|
|
|
compile 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
|
2014-11-23 00:49:56 +01:00
|
|
|
compile 'de.greenrobot:eventbus:2.4.0'
|
2014-11-26 02:08:20 +01:00
|
|
|
compile 'com.shamanland:fab:0.0.5'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|