docs/docs-android/app/build.gradle

60 lines
1.4 KiB
Groovy
Raw Normal View History

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 {
2015-11-23 20:32:32 +01:00
classpath 'com.android.tools.build:gradle:2.0.0-alpha1'
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 {
2015-03-24 01:07:32 +01:00
compileSdkVersion 22
2015-11-23 20:32:32 +01:00
buildToolsVersion '23.0.2'
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-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
}
}
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')
compile 'com.android.support:appcompat-v7:22.+'
compile 'com.android.support:recyclerview-v7:22.+'
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'
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'
2013-12-27 13:27:58 +01:00
}