Browse Source

Rolled back to manual signed release APK (v 0.7)

pull/24/head
Ezerous 8 years ago
parent
commit
2eef631772
  1. 3
      .gitignore
  2. 12
      .gitlab-ci.yml
  3. 2
      README.md
  4. BIN
      ThmmyNoLife.jks
  5. 2
      VERSION
  6. 13
      app/build.gradle

3
.gitignore

@ -37,6 +37,9 @@ captures/
*.iml
.idea
# Keystore files
*.jks
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

12
.gitlab-ci.yml

@ -23,17 +23,7 @@ before_script:
build_develop:
script:
- ./gradlew assembleDebug
only:
- develop
artifacts:
name: "${CI_BUILD_NAME}"
paths:
- app/build/outputs/apk
build_master:
script:
- ./gradlew assembleRelease
only:
except:
- master
artifacts:
name: "${CI_BUILD_NAME}"

2
README.md

@ -1,6 +1,6 @@
# mTHMMY
[![build status](https://gitlab.com/thmmy.gr/mTHMMY/badges/develop/build.svg)](https://gitlab.com/thmmy.gr/mTHMMY/commits/develop)
[![build status](https://gitlab.com/ThmmyNoLife/mTHMMY/badges/develop/build.svg)](https://gitlab.com/ThmmyNoLife/mTHMMY/commits/develop)
[![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)

BIN
ThmmyNoLife.jks

Binary file not shown.

2
VERSION

@ -1 +1 @@
0.5
0.7

13
app/build.gradle

@ -10,25 +10,14 @@ android {
minSdkVersion 19
targetSdkVersion 25
versionCode 5
versionName "0.6"
versionName "0.7"
archivesBaseName = "mTHMMY-v$versionName"
}
signingConfigs {
release {
storeFile rootProject.file('ThmmyNoLife.jks')
storePassword System.getenv("KEYSTORE_PASS")
keyAlias System.getenv("KEY_NAME")
keyPassword System.getenv("KEY_PASS")
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (System.getenv("CI"))
signingConfig signingConfigs.release
}
debug {
def date = new Date().format('ddMMyy_HHmm');

Loading…
Cancel
Save