Browse Source

Up tools & gradle

pull/24/head
Ezerous 8 years ago
parent
commit
39b79ca5fa
  1. 4
      .gitlab-ci.yml
  2. 16
      app/build.gradle
  3. 1
      build.gradle

4
.gitlab-ci.yml

@ -1,8 +1,8 @@
image: openjdk:8-jdk image: openjdk:8-jdk
variables: variables:
ANDROID_TARGET_SDK: "25" ANDROID_TARGET_SDK: "26"
ANDROID_BUILD_TOOLS: "25.0.3" ANDROID_BUILD_TOOLS: "26.0.1"
ANDROID_SDK_TOOLS: "25.2.5" ANDROID_SDK_TOOLS: "25.2.5"
before_script: before_script:

16
app/build.gradle

@ -1,14 +1,14 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion "25.0.3" buildToolsVersion "26.0.1"
defaultConfig { defaultConfig {
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
applicationId "gr.thmmy.mthmmy" applicationId "gr.thmmy.mthmmy"
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 25 targetSdkVersion 26
versionCode 8 versionCode 8
versionName "1.3.0" versionName "1.3.0"
archivesBaseName = "mTHMMY-v$versionName" archivesBaseName = "mTHMMY-v$versionName"
@ -28,11 +28,11 @@ android {
dependencies { dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support:design:25.3.1' compile 'com.android.support:design:26.0.0'
compile 'com.android.support:support-v4:25.3.1' compile 'com.android.support:support-v4:26.0.0'
compile 'com.android.support:cardview-v7:25.3.1' compile 'com.android.support:cardview-v7:26.0.0'
compile 'com.android.support:recyclerview-v7:25.3.1' compile 'com.android.support:recyclerview-v7:26.0.0'
compile 'com.google.firebase:firebase-crash:10.2.6' compile 'com.google.firebase:firebase-crash:10.2.6'
compile 'com.squareup.okhttp3:okhttp:3.8.0' compile 'com.squareup.okhttp3:okhttp:3.8.0'
compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.squareup.picasso:picasso:2.5.2'

1
build.gradle

@ -17,6 +17,7 @@ allprojects {
repositories { repositories {
jcenter() jcenter()
maven { url "https://jitpack.io" } maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
} }
} }

Loading…
Cancel
Save