[Android] gradle: comment the verbose resource language file logging
Steve Lhomme
git at videolan.org
Tue Jul 1 07:41:31 UTC 2025
vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Jun 27 13:35:11 2025 +0200| [c3dc071b020b9afdf6ba7c49a2f06e2f2aa7db6b] | committer: Steve Lhomme
gradle: comment the verbose resource language file logging
It can be turned on if needed.
> https://code.videolan.org/videolan/vlc-android/commit/c3dc071b020b9afdf6ba7c49a2f06e2f2aa7db6b
---
application/vlc-android/build.gradle | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/application/vlc-android/build.gradle b/application/vlc-android/build.gradle
index e801cc74a8..4d7575d24a 100644
--- a/application/vlc-android/build.gradle
+++ b/application/vlc-android/build.gradle
@@ -130,10 +130,11 @@ def generateTranslation() {
foundLocales.append("new String[]{\"")
def emptyList = []
fileTree("../resources/src/main/res").visit { FileVisitDetails details ->
- println 'details: ' + details
+ // println 'details: ' + details
if (details.file.path.endsWith("strings.xml")) {
def languageCode = details.file.parentFile.name.replaceAll('values-', '').replaceAll('-r', '-')
languageCode = (languageCode == "values") ? "en" : languageCode
+ // println 'adding ' + languageCode + ' strings'
emptyList.add(languageCode)
}
}
More information about the Android
mailing list