Skip to content

Commit

Permalink
1.4.3: update android-attestation
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Oct 18, 2023
1 parent cc42179 commit 247f744
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Artifacts
name: build
on: [push]
jobs:
build:
Expand All @@ -8,8 +8,19 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Build jar
run: ./gradlew test assemble
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: All Tests
path: attestation-service/build/test-results/**/TEST*.xml
reporter: java-junit
- name: Upload jar
uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,7 @@ attestation on Android, please re-read the readme!
- update to android attestation 1.2.1

#### 1.4.2
- fix temporal iOS receipt validation error not being propagated as such
- fix temporal iOS receipt validation error not being propagated as such

#### 1.4.3
- update android-attestation
2 changes: 1 addition & 1 deletion android-attestation-root
4 changes: 2 additions & 2 deletions attestation-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "at.asitplus"
version = "1.4.2"
version = "1.4.3"

sourceSets.test {
kotlin {
Expand All @@ -20,7 +20,7 @@ sourceSets.test {
}

dependencies {
api("at.asitplus:android-attestation:1.2.1")
api("at.asitplus:android-attestation:1.3.0")
api(datetime())
implementation("ch.veehait.devicecheck:devicecheck-appattest:0.9.6")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.14.2")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FeatureDemonstration : FreeSpec() {

val service = DefaultAttestationService(
androidAttestationConfiguration = AndroidAttestationConfiguration(
applications = listOf(
listOf(
AndroidAttestationConfiguration.AppData(
packageName = "at.asitplus.attestation_client",
signatureDigests = listOf("NLl2LE1skNSEMZQMV73nMUJYsmQg7+Fqx/cnTw0zCtU=".decodeBase64ToArray()),
Expand Down
2 changes: 1 addition & 1 deletion attestation-service/src/test/kotlin/TestCommons.kt
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fun attestationService(
) =
DefaultAttestationService(
AndroidAttestationConfiguration(
applications = listOf(
listOf(
AndroidAttestationConfiguration.AppData(
packageName = androidPackageName,
signatureDigests = androidAppSignatureDigest,
Expand Down

0 comments on commit 247f744

Please sign in to comment.