I followed a guide over at stack overflow that enabled multi-dex:
Simply put you add this to your app's gradle file:
implementation 'com.android.support:multidex:1.0.3'
Then add this to the defaultConfig file:
multiDexEnabled true
I found the answer here