We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302db1a commit de82049Copy full SHA for de82049
android/BOINC/app/build.gradle
@@ -219,6 +219,21 @@ def validateTranslations() {
219
}
220
221
222
+ new File('app/src/main/AndroidManifest.xml').each {
223
+ def source = it
224
+ mainStringsMap.each {
225
+ if (!it.value) {
226
+ def string = it
227
+ source.eachLine {
228
+ if (it.contains(string.key)) {
229
+ string.setValue(true)
230
+ return
231
+ }
232
233
234
235
236
+
237
def mainStringsContainsRedundantKeys = false
238
mainStringsMap.each {
239
if (!it.value) {
0 commit comments