मैंने मूल build.gradle
फ़ाइल में निम्नलिखित जोड़ने की कोशिश की :
subprojects {
gradle.projectsEvaluated {
tasks.withType(Compile) {
options.compilerArgs << "-Xlint:unchecked -Xlint:deprecation"
}
}
}
लेकिन मुझे यह मिल रहा है:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':Libraries:ActionBarSherlock:compileRelease'.
> invalid flag: -Xlint:unchecked -Xlint:deprecation
मैं क्या गलत कर रहा हूं?
"-Xlint:unchecked" << "-Xlint:deprecation"
और इसने दोनों के लिए काम किया है :) यदि आप इसके साथ उत्तर बनाना चाहते हैं, तो मैं इसे सहर्ष स्वीकार कर लूंगा।