“auth_client_using_bad_version_title” is translated here but not found in default locale

前端 未结 14 1595
孤街浪徒
孤街浪徒 2021-01-01 11:16

I\'m forced to use Google Play service (I need Location Service). So, after I wrote all code and tested application on device, i tried to export signed application. And all

14条回答
  •  情话喂你
    2021-01-01 11:24

    In case, if you want to just pass the release process;

    In Android Studio, through Gradle, you can disable "Lint Error Checking" during the release process.

    Open your build.gradle(app) file and add the following code snippet inside the android tag.

        lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
    

提交回复
热议问题