bump yubikit-android to 2.1.0-alpha.1

This commit is contained in:
Adam Velebil 2022-06-01 16:48:35 +02:00
parent 98ea2ec049
commit 780791d126
No known key found for this signature in database
GPG Key ID: AC6D6B9D715FC084
2 changed files with 4 additions and 16 deletions

View File

@ -7,22 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Yubikit Next
uses: actions/checkout@v2
with:
repository: Yubico/yubikit-android
ref: next
path: kit
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Build Yubikit-android
run: ./gradlew --stacktrace check test build javadocJar publishToMavenLocal
working-directory: ./kit
- name: Install Flutter
uses: subosito/flutter-action@v2
with:

View File

@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.6.20'
ext.kotlin_version = '1.6.21'
repositories {
google()
mavenCentral()
@ -16,16 +16,15 @@ allprojects {
repositories {
google()
mavenCentral()
mavenLocal() // TODO: Remove this before release
}
project.ext {
minSdkVersion = 23
targetSdkVersion = 31
compileSdkVersion = 31
targetSdkVersion = 32
compileSdkVersion = 32
buildToolsVersion = "30.0.3"
yubiKitVersion = "2.1.0-SNAPSHOT"
yubiKitVersion = "2.1.0-alpha.1"
junitVersion = "4.13.2"
mockitoVersion = "3.9.0"
}