1
0
mirror of https://github.com/MultiMote/niimblue synced 2026-01-19 19:37:11 +03:00

Fix android version

This commit is contained in:
MultiMote
2025-05-13 23:27:58 +03:00
parent cbc8c4984a
commit 4b2bf035f7
2 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ jobs:
KEYSTORE_ALIAS: ${{ secrets.KEYSTORE_ALIAS }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEYSTORE_ALIAS_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
APP_VERSION_CODE: ${{ 50 + gitea.run_number }}
APP_VERSION_CODE: ${{ gitea.run_number }}
- name: Install GH CLI
uses: dev-hanz-ops/install-gh-cli-action@v0.2.1

View File

@@ -10,8 +10,8 @@ android {
applicationId "ru.mmote.niimblues"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode appVersionCode
versionName "0.0.${appVersionCode}"
versionCode (50 + appVersionCode) // Last GH actions build
versionName "0.1.${appVersionCode}"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.