diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-09-17 23:47:14 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-09-17 23:47:14 +0200 |
commit | 08ff9f5ece39c692a943a60a869ad63d1e4155f1 (patch) | |
tree | e6cdf783a66c6a49e5220cd6755426d771429bcd /build.gradle | |
parent | 4bee579e48aa1bc9ff74b8f088131ebf91dd216a (diff) |
gradle: downgrade androidx.{fragment,activity} to alpha07
The alpha08 version introduced regressions that we can't deal with at
the moment.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 9810ab76..086a6f95 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - activityVersion = '1.2.0-alpha08' + activityVersion = '1.2.0-alpha07' agpVersion = '4.0.1' annotationsVersion = '1.1.0' appcompatVersion = '1.2.0' @@ -12,7 +12,7 @@ buildscript { coreKtxVersion = '1.3.1' coroutinesVersion = '1.3.9' desugarVersion = '1.0.10' - fragmentVersion = '1.3.0-alpha08' + fragmentVersion = '1.3.0-alpha07' jsr305Version = '3.0.2' junitVersion = '4.13' kotlinVersion = '1.4.10' |