Browse Source

Added Version 0.5 Tag, some versioning and sdk tools update

pull/24/head
Ezerous 8 years ago
parent
commit
73034c3b93
  1. 6
      .gitlab-ci.yml
  2. 2
      README.md
  3. 1
      VERSION
  4. 8
      app/build.gradle

6
.gitlab-ci.yml

@ -3,13 +3,13 @@ image: openjdk:8-jdk
variables:
ANDROID_TARGET_SDK: "25"
ANDROID_BUILD_TOOLS: "25.0.1"
ANDROID_SDK_TOOLS: "25.2.3"
ANDROID_SDK_TOOLS: "25.2.4"
before_script:
- apt-get --quiet update --yes
- apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
- wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/tools_r${ANDROID_SDK_TOOLS}-linux.zip
- unzip android-sdk.zip -d android-sdk-linux
- unzip android-sdk.zip -d android-sdk-linux
- echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter android-${ANDROID_TARGET_SDK}
- echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter platform-tools
- echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter build-tools-${ANDROID_BUILD_TOOLS}
@ -25,4 +25,4 @@ build:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/
- app/build/outputs/

2
README.md

@ -1,6 +1,8 @@
# mTHMMY
[![build status](https://gitlab.com/thmmy.gr/mTHMMY/badges/master/build.svg)](https://gitlab.com/thmmy.gr/mTHMMY/commits/master)
[![API](https://img.shields.io/badge/API-19%2B-blue.svg?style=flat)](https://android-arsenal.com/api?level=19)
[![Discord Channel](https://img.shields.io/badge/discord-public@mTHMMY-738bd7.svg?style=flat)](https://discord.gg/CVt3yrn)
mTHMMY is a mobile app for thmmy.gr

1
VERSION

@ -0,0 +1 @@
0.5

8
app/build.gradle

@ -9,9 +9,9 @@ android {
applicationId "gr.thmmy.mthmmy"
minSdkVersion 19
targetSdkVersion 25
versionCode 4
versionName "0.4"
archivesBaseName = "thmmyapp-v$versionName"
versionCode 5
versionName "0.5"
archivesBaseName = "mTHMMY-v$versionName"
}
buildTypes {
release {
@ -38,7 +38,7 @@ dependencies {
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
compile 'org.jsoup:jsoup:1.10.1'
compile 'com.github.franmontiel:PersistentCookieJar:v1.0.0'
compile('com.mikepenz:materialdrawer:5.8.0@aar') {
compile('com.mikepenz:materialdrawer:5.8.1@aar') {
transitive = true
}
compile 'com.mikepenz:fontawesome-typeface:4.7.0.0@aar'

Loading…
Cancel
Save