Gradle fails with an error when trying build the app e.g. ./gradlew installDebug until the folder app/src/main/res/mipmap-xxhdpi/ has been created. It'd be helpful if this folder is created if needed by the gradle build process.
For now, mkdir -p app/src/main/res/mipmap-xxhdpi/ run in the root of the project is enough.
Gradle fails with an error when trying build the app e.g.
./gradlew installDebug
until the folderapp/src/main/res/mipmap-xxhdpi/
has been created. It'd be helpful if this folder is created if needed by the gradle build process.For now,
mkdir -p app/src/main/res/mipmap-xxhdpi/
run in the root of the project is enough.