Can't run nor debug project but gradle build+install work

后端 未结 11 1410
梦毁少年i
梦毁少年i 2020-12-07 00:32

After update to Android studio 3.6 Canary11 (macOS) I cannot run nor run Debug variants of my project (Release variants working fine).

When I try to run the project

11条回答
  •  温柔的废话
    2020-12-07 01:01

    When getting a entry name 'kotlin/collections/mapwithdefault.kotlin_metadata' collided error in Android Studio v3.6.1 it helped cleaning the build folders.

    We ended up creating a script for this: cleanBuldFolders.sh

    #!/bin/bash
    
    # Deletes all build folders in the project
    find . -name build -type d -exec rm -rf {} +
    

提交回复
热议问题