build yubikit 2.5.0 from sources

This commit is contained in:
Adam Velebil 2024-03-22 16:52:45 +01:00
parent e99c2312b2
commit 4ea5d10b01
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10
2 changed files with 13 additions and 1 deletions

View File

@ -13,6 +13,17 @@ jobs:
distribution: 'temurin' distribution: 'temurin'
java-version: '17' java-version: '17'
- name: Checkout YubiKit
uses: actions/checkout@v4
with:
repository: Yubico/yubikit-android
ref: release/2.5.0
path: kit
- name: Build Yubikit-android
run: NO_GPG_SIGN=true ./gradlew publishToMavenLocal
working-directory: ./kit
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
path: 'app' path: 'app'

View File

@ -2,6 +2,7 @@ allprojects {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
mavenLocal()
} }
project.ext { project.ext {
@ -9,7 +10,7 @@ allprojects {
targetSdkVersion = 34 targetSdkVersion = 34
compileSdkVersion = 34 compileSdkVersion = 34
yubiKitVersion = "2.4.0" yubiKitVersion = "2.5.0"
junitVersion = "4.13.2" junitVersion = "4.13.2"
mockitoVersion = "5.11.0" mockitoVersion = "5.11.0"
} }