Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 327 Bytes

ERRORNOTE.md

File metadata and controls

16 lines (14 loc) · 327 Bytes

Error Note

  • Cannot fit requested classes in a single dex file (# methods: 69681 > 65536)

Add multiDexEnabled true to gradle:

    android {
        defaultConfig {
//            ...
            minSdkVersion 16
            targetSdkVersion 26
            multiDexEnabled true
        }
//        ...
    }