mirror of
https://github.com/sismics/docs.git
synced 2024-11-15 02:37:57 +01:00
60 lines
1.4 KiB
Groovy
60 lines
1.4 KiB
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.0.0-alpha1'
|
|
}
|
|
}
|
|
apply plugin: 'com.android.application'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '23.0.2'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
compile 'com.android.support:appcompat-v7:22.+'
|
|
compile 'com.android.support:recyclerview-v7:22.+'
|
|
compile 'com.loopj.android:android-async-http:1.4.6'
|
|
compile 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
|
|
compile 'de.greenrobot:eventbus:2.4.1'
|
|
compile 'com.shamanland:fab:0.0.6'
|
|
}
|