4
2
Fork 0

Fix D8 error

```
D8: Program type already present: android.arch.core.util.Function
```
Fixes this error by changing build.gradle

This error can also be prevented by recreating the entire flutter
project.
fix/upgrade_deps
Ambrose Chua 2019-10-23 18:20:24 +08:00
parent 1035d5dabf
commit 07ec4d5e34
Signed by: ambrose
GPG Key ID: BC367D33F140B5C2
1 changed files with 2 additions and 0 deletions

View File

@ -64,4 +64,6 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation "android.arch.core:runtime:1.1.1"
implementation "android.arch.core:common:1.1.1"
}