Skip to content

Commit

Permalink
Enable APK Signature Schemes v3 and v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeso committed Apr 11, 2024
1 parent 880737b commit abb60f2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

### 1.8.1 (Unreleased)

#### Improvements

- Enable APK Signature Schemes v3 and v4

#### Notes

- Use Kotlin Duration and TimeSource
Expand Down
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,19 @@ android {
}
}

signingConfigs {
create("release") {
enableV3Signing = true
enableV4Signing = true
}
}

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
signingConfig = signingConfigs.getByName("release")
}
}

Expand Down
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/181.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
• Enable APK Signature Schemes v3 and v4

0 comments on commit abb60f2

Please sign in to comment.