Skip to content Skip to sidebar Skip to footer

Getting Transform Exception While Building The Project

I am getting the following error when I try to run my app: Error:Execution failed for task ':app:transformClassesWithDexForDebug'. > com.android.build.transform.api.TransformExc

Solution 1:

Enable multidex, it solve the problem for me.

defaultConfig {
multiDexEnabled true
}

For any query, feel free to raise it.


Post a Comment for "Getting Transform Exception While Building The Project"