File tree 3 files changed +11
-5
lines changed
buildSrc/src/main/java/dev/ricknout/rugbyranker/buildsrc
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 100
100
## Jetpack Navigation
101
101
102
102
-keepnames class androidx.navigation.fragment.NavHostFragment
103
-
104
- ## Jetpack Crypto and minifyEnabled
105
- ## https://issuetracker.google.com/issues/157983099
106
-
107
- -keep class com.google.crypto.** { *; }
Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ object Versions {
31
31
const val work = " 2.5.0-alpha02"
32
32
const val hilt = " 1.0.0-alpha02"
33
33
const val dataStore = " 1.0.0-alpha01"
34
+ // BUG: Issue with preferences/crypto (most likely DataStore)
35
+ // https://issuetracker.google.com/issues/157983099
36
+ const val security = " 1.1.0-alpha02"
34
37
object Test {
35
38
const val core = " 1.3.0"
36
39
const val jUnit = " 1.1.2"
@@ -111,6 +114,11 @@ object Libs {
111
114
object DataStore {
112
115
const val preferences = " androidx.datastore:datastore-preferences:${Versions .AndroidX .dataStore} "
113
116
}
117
+ // BUG: Issue with preferences/crypto (most likely DataStore)
118
+ // https://issuetracker.google.com/issues/157983099
119
+ object Security {
120
+ const val cryptoKtx = " androidx.security:security-crypto-ktx:${Versions .AndroidX .security} "
121
+ }
114
122
object Test {
115
123
const val runner = " androidx.test:runner:${Versions .AndroidX .Test .runner} "
116
124
const val instrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ dependencies {
44
44
api Libs.AndroidX.Hilt.Lifecycle . viewModel
45
45
api Libs.AndroidX.Hilt . work
46
46
api Libs.AndroidX.DataStore . preferences
47
+ // BUG: Issue with preferences/crypto (most likely DataStore)
48
+ // https://issuetracker.google.com/issues/157983099
49
+ api Libs.AndroidX.Security . cryptoKtx
47
50
api Libs.Square . okHttp
48
51
api Libs.Square.Retrofit . retrofit
49
52
api Libs.Square.Retrofit . gsonConverter
You can’t perform that action at this time.
0 commit comments