Run lint when building android studio projects

前端 未结 7 777
予麋鹿
予麋鹿 2020-11-28 07:12

I would like to be able to run the lint task when I\'m building projects with the android studio to ensure the lint rules are being followed.

I have tried using task

7条回答
  •  广开言路
    2020-11-28 07:49

    If you just want to configure your Android Studio project to run the lint check before the default run configuration without affecting how your gradle tasks are configured, you can follow these steps.

    1. Open the run configurations drop down and choose edit

    enter image description here

    1. Select your app run configuration

    enter image description here

    1. Press the '+' to add a new step

    enter image description here

    1. Choose "Gradle-aware Make"

    enter image description here

    1. Type 'check' and choose the option with your app module name and check. (Mine is :app:check)

    enter image description here

    1. Press the up arrow to move the new check step before the existing Gradle-aware make step

    enter image description here

    Now, Android Studio will run the lint check and fail the build if any lint errors occur.

提交回复
热议问题