nlindberg
10/04/2020, 11:04 AMjava.lang.IllegalStateException: Reading a state that was created after the snapshot was taken or in a snapshot that has not yet been applied
Rudolf Tammekivi
10/04/2020, 11:09 AMnlindberg
10/04/2020, 11:09 AMcaelum19
10/04/2020, 12:13 PMnlindberg
10/04/2020, 12:14 PMconfigurations.configureEach {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def group = details.requested.group
def module = details.requested.module.name
def version = details.requested.version
if (group == 'androidx.compose.compiler' && module == 'compiler') {
details.useTarget("androidx.compose:compose-compiler:$version")
}
}
}
caelum19
10/04/2020, 12:45 PM