2013-12-27 13:27:58 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2015-11-29 01:53:16 +01:00
|
|
|
jcenter()
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2016-01-23 23:20:09 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:2.0.0-alpha7'
|
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 {
|
2015-11-29 01:53:16 +01:00
|
|
|
jcenter()
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2016-01-13 23:27:39 +01:00
|
|
|
compileSdkVersion 23
|
2015-11-23 20:32:32 +01:00
|
|
|
buildToolsVersion '23.0.2'
|
2013-12-27 13:27:58 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2016-01-13 23:27:39 +01:00
|
|
|
targetSdkVersion 23
|
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
|
|
|
|
2015-05-02 19:37:56 +02:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
storeFile file(System.getenv("TRACKINO_STORE_PATH"))
|
|
|
|
storePassword System.getenv("TRACKINO_STORE_PASS")
|
|
|
|
keyAlias System.getenv("TRACKINO_STORE_ALIAS")
|
|
|
|
keyPassword System.getenv("TRACKINO_STORE_KEYPASS")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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')
|
2016-01-13 23:27:39 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:23.1.1'
|
2014-11-22 01:09:12 +01:00
|
|
|
compile 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
|
2015-11-23 20:32:32 +01:00
|
|
|
compile 'de.greenrobot:eventbus:2.4.1'
|
2014-11-26 23:30:25 +01:00
|
|
|
compile 'com.shamanland:fab:0.0.6'
|
2016-01-16 22:06:48 +01:00
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.0.1'
|
2016-01-21 23:48:40 +01:00
|
|
|
compile "com.squareup.okhttp3:okhttp-urlconnection:3.0.1"
|
2016-01-16 22:06:48 +01:00
|
|
|
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
|
2013-12-27 13:27:58 +01:00
|
|
|
}
|