मैंने अपना एपीके गूगल प्ले पर अपलोड करने की कोशिश की है और एक त्रुटि संदेश का सामना किया है: "आपने एक डीबग करने योग्य एपीके अपलोड किया है। सुरक्षा कारणों से आपको Google Play में प्रकाशित होने से पहले डिबगिंग को अक्षम करना होगा। डिबग करने योग्य APK के बारे में और जानें।"
फिर मैंने android:debuggable="false"
अपनी अभिव्यक्ति में लिखा और फिर से कोशिश की। मुझे एक ही त्रुटि का सामना करना पड़ा है, इसलिए मैंने अपने मॉड्यूल से बिल्ड वेरिएंट को रिलीज़ करने के लिए सेट किया है और फिर से एक एपीके उत्पन्न करने की कोशिश की है, लेकिन इस बार, यह त्रुटि उत्पन्न हुई है:
Error:Gradle: Execution failed for task ':app:lintVitalRelease'.
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows:
...
android {
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
}
}
...