Equivalent of Clean & build in Android Studio?

后端 未结 6 2136
时光取名叫无心
时光取名叫无心 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:32

    I don't know if there's a way to get a clean build via the UI, but it's easy to do from the commandline using gradle wrapper. From the root directory of your project:

    ./gradlew clean 
    

提交回复
热议问题