File tree 3 files changed +5
-11
lines changed
buildSrc/src/main/java/dev/ricknout/rugbyranker/buildsrc
3 files changed +5
-11
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
+ ## BUG: Jetpack DataStore
105
+ ## https://issuetracker.google.com/issues/168580258
106
+
107
+ -keep class androidx.datastore.*.** {*;}
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ 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"
37
34
object Test {
38
35
const val core = " 1.3.0"
39
36
const val jUnit = " 1.1.2"
@@ -114,11 +111,6 @@ object Libs {
114
111
object DataStore {
115
112
const val preferences = " androidx.datastore:datastore-preferences:${Versions .AndroidX .dataStore} "
116
113
}
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
- }
122
114
object Test {
123
115
const val runner = " androidx.test:runner:${Versions .AndroidX .Test .runner} "
124
116
const val instrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -44,9 +44,6 @@ 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
50
47
api Libs.Square . okHttp
51
48
api Libs.Square.Retrofit . retrofit
52
49
api Libs.Square.Retrofit . gsonConverter
You can’t perform that action at this time.
0 commit comments