Android studio not generate signed apk

前端 未结 4 685
独厮守ぢ
独厮守ぢ 2021-01-11 13:01

recently I updated my working android studio IDE into Android Studio 1.5.1. but now I\'m facing some trouble as after updating it did not generating signed apk file. but whe

4条回答
  •  一向
    一向 (楼主)
    2021-01-11 13:19

    I was facing same issue but i resolved the issue by adding below code in build.gradle

    lintOptions {
            checkReleaseBuilds false
        }
    

    This issue would occur, Sometimes our application not follow all the rules and regulation according to Lint Tool

    Note: Add this in application module inside android

提交回复
热议问题