Advertisement
narimetisaigopi

flutter multidex error fix

Aug 22nd, 2020
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. in app level - build.gradle file
  2.  
  3. dependencies {
  4. compile 'com.android.support:multidex:1.0.1'
  5. }
  6. android {
  7. defaultConfig {
  8. multiDexEnabled true
  9. }
  10. }
  11.  
  12. implementation 'com.android.support:multidex:1.0.3'
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement