Android- Error:Execution failed for task ':app:transformClassesWithDexForRelease'

0 thích 0 không thích
17 lượt xem
đã hỏi 5 Tháng 8, 2017 bởi nguyenthao (9,000 điểm)

Try to enable multiDex in build.gradle:

android {

    defaultConfig {
        ...

        // Enabling multidex support.
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.0'
}
Looking for an answer?  Share this question:     

Xin vui lòng đăng nhập hoặc đăng ký để trả lời câu hỏi này.

...