Equivalent of Clean & build in Android Studio?

后端 未结 6 2137
时光取名叫无心
时光取名叫无心 2020-11-28 07:30

Today while running an app from Android Studio, it didn\'t build from my latest code.

I looked for a Clean & build option but I couldn\'t find one.

6条回答
  •  粉色の甜心
    2020-11-28 08:21

    It is probably not a correct way for clean, but I made that to delete unnecessary files, and take less size of a project. It continuously finds and deletes all build and Gradle folders made file clean.bat copy that into the folder where your project is

      set mypath=%cd% 
        for /d /r %mypath% %%a in (build\) do if exist "%%a" rmdir /s /q "%%a"
        for /d /r %mypath% %%a in (.gradle\) do if exist "%%a" rmdir /s /q "%%a"
    

提交回复
热议问题