1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-13 09:46:17 +00:00

upgrade android build

This commit is contained in:
Benjamin Gamard
2017-11-15 00:19:12 +01:00
parent b02039bad4
commit eda6106de8
3 changed files with 17 additions and 31 deletions

View File

@@ -1,43 +1,29 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:3.0.0'
}
}
apply plugin: 'com.android.application'
repositories {
jcenter()
google()
}
android {
compileSdkVersion 24
buildToolsVersion '24'
compileSdkVersion 26
defaultConfig {
minSdkVersion 14
targetSdkVersion 24
targetSdkVersion 26
versionCode 1
versionName '1.0'
}
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
}
@@ -45,13 +31,13 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:recyclerview-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'it.sephiroth.android.library.imagezoom:imagezoom:1.0.5'
compile 'org.greenrobot:eventbus:3.0.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp3:okhttp:3.4.0'
compile 'com.squareup.okhttp3:okhttp:3.7.0'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.4.0'
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
}