Android 4.4 and below compatibility issue application oncreate() imports third-party library and reports error

 

Solve the repeated configuration of importing packages in build.gradle   

multiDexEnabled true

doesn't work

Need to add the first line in application oncreate()

MultiDex.install(this);

Guess you like

Origin blog.csdn.net/qq_25409587/article/details/81394045