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
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
}