diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-02-21 18:22:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 18:22:48 +0530 |
commit | 2e3e6ef052f61635a694248991b4e4d94505d509 (patch) | |
tree | 92623622b2df9db4a7b391f746b3afb50f3a10f5 /build.gradle.kts | |
parent | 3d0006d610c89f601fef7fa64e1794cd76b47006 (diff) |
Switch to R8 dev releases (#1738)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 5a278514..59d68591 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,6 +4,16 @@ */ @file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage") +buildscript { + repositories { + maven("https://storage.googleapis.com/r8-releases/raw") { + name = "R8 dev releases" + content { includeModule("com.android.tools", "r8") } + } + } + dependencies { classpath(libs.build.r8) } +} + plugins { id("com.github.android-password-store.kotlin-common") id("com.github.android-password-store.binary-compatibility") |