2013-12-27 13:27:58 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2015-03-24 01:07:32 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:1.1.0'
|
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 {
|
2015-03-24 01:07:32 +01:00
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2015-03-24 01:07:32 +01:00
|
|
|
targetSdkVersion 22
|
2013-12-27 13:27:58 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-03-24 23:53:28 +01:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-05-26 22:22:13 +02:00
|
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
2015-04-22 23:18:14 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:22.1.0'
|
2015-03-24 01:07:32 +01:00
|
|
|
compile 'com.android.support:recyclerview-v7:22.0.0'
|
2014-11-19 01:18:42 +01:00
|
|
|
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 23:30:25 +01:00
|
|
|
compile 'com.shamanland:fab:0.0.6'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|