android/source/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 72f7e3e5c5bccd0c21685e5e37751c1140cc6a87 Author: Michael Weghorn <[email protected]> AuthorDate: Tue Nov 25 20:34:56 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Wed Nov 26 06:25:40 2025 +0100 android: Deduplicate assets specification in build.gradle It's the same for both product flavors, so define it once for the main one that is the base for both of them, and all upcoming flavors, too. Change-Id: I0532332c0780bac5099a2d98601664b3cf709777 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194531 Tested-by: Jenkins Code-Style: Michael Weghorn <[email protected]> Reviewed-by: Michael Weghorn <[email protected]> diff --git a/android/source/build.gradle b/android/source/build.gradle index cbdc63e69d06..f2e4943056ac 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -55,8 +55,7 @@ android { main.res.srcDirs = ['res', 'res_generated'] main.java.srcDirs = ['../Bootstrap/src', 'src/java'] main.jniLibs.srcDirs = ["${liboJniLibsdir}"] - strippedUI.assets.srcDirs 'assets_strippedUI' - strippedUIEditing.assets.srcDirs 'assets_strippedUI' + main.assets.srcDirs 'assets_strippedUI' } defaultConfig { // minSdkVersion is set in liboSettings.gradle
