Error when trying to integrate parse into Android app error: Error:Execution failed for task ':app:transformClassesWithDexForDebug'

前端 未结 1 1553
谎友^
谎友^ 2021-01-24 12:45

I am attempting to recreate a running app I made in iOS for Android to release together I am attempting to integrate parse into the Android app and receive the following error:<

1条回答
  •  有刺的猬
    2021-01-24 13:09

    First of all clean and rebuild your project and if the problem still persist, Try adding multiDexEnabled true to your app build.gradle file.

    defaultConfig {
        multiDexEnabled true
    }
    

    0 讨论(0)
提交回复
热议问题