diff options
author | Alexey Edelev <[email protected]> | 2025-05-28 10:40:44 +0200 |
---|---|---|
committer | Alexey Edelev <[email protected]> | 2025-07-07 21:20:39 +0200 |
commit | 205f45832775cd08cf20316387ea580060616bcd (patch) | |
tree | 556f2e11f9ca7b51303a38f9978c895ecea4e27d | |
parent | c01026f03ec51733065697487662bbad14a4ac30 (diff) |
Move the comment closer to the line that actually disables compression.
Pick-to: 6.8 6.9 6.10
Change-Id: Ib65d5ddffa9b3e3cf97a2ce0e04219c651017653
Reviewed-by: Assam Boudjelthia <[email protected]>
5 files changed, 5 insertions, 5 deletions
diff --git a/src/android/templates/build.gradle b/src/android/templates/build.gradle index 6595cb5358f..b6c4797fde7 100644 --- a/src/android/templates/build.gradle +++ b/src/android/templates/build.gradle @@ -70,8 +70,8 @@ android { abortOnError = false } - // Do not compress Qt binary resources file aaptOptions { + // Do not compress Qt binary resources file noCompress 'rcc' } diff --git a/src/android/templates_cmake/app/build.gradle.in b/src/android/templates_cmake/app/build.gradle.in index bd83a1db514..917f371e46f 100644 --- a/src/android/templates_cmake/app/build.gradle.in +++ b/src/android/templates_cmake/app/build.gradle.in @@ -44,8 +44,8 @@ android { abortOnError false } - // Do not compress Qt binary resources file aaptOptions { + // Do not compress Qt binary resources file noCompress 'rcc' } diff --git a/src/android/templates_cmake/dynamic_feature/build.gradle.in b/src/android/templates_cmake/dynamic_feature/build.gradle.in index bd83a1db514..917f371e46f 100644 --- a/src/android/templates_cmake/dynamic_feature/build.gradle.in +++ b/src/android/templates_cmake/dynamic_feature/build.gradle.in @@ -44,8 +44,8 @@ android { abortOnError false } - // Do not compress Qt binary resources file aaptOptions { + // Do not compress Qt binary resources file noCompress 'rcc' } diff --git a/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle b/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle index cbdd833e2ae..1d796d9b6b9 100644 --- a/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle +++ b/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle @@ -70,8 +70,8 @@ android { abortOnError = false } - // Do not compress Qt binary resources file aaptOptions { + // Do not compress Qt binary resources file noCompress 'rcc' } diff --git a/tests/auto/other/android/package_source_dir/partial_template/app/build.gradle.in b/tests/auto/other/android/package_source_dir/partial_template/app/build.gradle.in index b31a29f3277..538f1ca6217 100644 --- a/tests/auto/other/android/package_source_dir/partial_template/app/build.gradle.in +++ b/tests/auto/other/android/package_source_dir/partial_template/app/build.gradle.in @@ -45,8 +45,8 @@ android { abortOnError false } - // Do not compress Qt binary resources file aaptOptions { + // Do not compress Qt binary resources file noCompress 'rcc' } |