android/source/build.gradle | 2 +- android/source/lint-baseline.xml | 31 ++++++++++--------------------- 2 files changed, 11 insertions(+), 22 deletions(-)
New commits: commit 3415170e29a5a6cfae3695fbaaae30fc76a21903 Author: Michael Weghorn <[email protected]> AuthorDate: Mon Nov 17 13:40:32 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Mon Nov 17 20:52:36 2025 +0100 android: Regenerate lint-baseline.xml Regenerate the file (by removing the old one and running a build). This addresses the > Task :lintReportStrippedUIEditingDebug Lint found 1 hint (and 199 errors and 2 hints filtered by baseline lint-baseline.xml) 2 errors/warnings were listed in the baseline file (/home/michi/development/git/libreoffice-WORKTREE-android/android/source/lint-baseline.xml) but not found in the project; perhaps they have been fixed? notice seen without this commit in place. Change-Id: I000dc86dbf6ee5ce622f6c26fc05ad4f511ec0bd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194106 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/android/source/lint-baseline.xml b/android/source/lint-baseline.xml index f0f46388adc4..344f8436ada6 100644 --- a/android/source/lint-baseline.xml +++ b/android/source/lint-baseline.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<issues format="6" by="lint 8.11.0" type="baseline" client="gradle" dependencies="false" name="AGP (8.11.0)" variant="all" version="8.11.0"> +<issues format="6" by="lint 8.13.1" type="baseline" client="gradle" dependencies="false" name="AGP (8.13.1)" variant="all" version="8.13.1"> <issue id="ScopedStorage" @@ -81,11 +81,11 @@ <issue id="OldTargetApi" message="Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the `android.os.Build.VERSION_CODES` javadoc for details." - errorLine1=" targetSdkVersion 34" + errorLine1=" targetSdkVersion 35" errorLine2=" ~~~~~~~~~~~~~~~~~~~"> <location file="build.gradle" - line="65" + line="63" column="9"/> </issue> @@ -113,8 +113,8 @@ <issue id="GradleDependency" - message="A newer version of `compileSdkVersion` than 34 is available: 36" - errorLine1=" compileSdk 34" + message="A newer version of `compileSdkVersion` than 35 is available: 36" + errorLine1=" compileSdk 35" errorLine2=" ~~~~~~~~~~~~~"> <location file="build.gradle" @@ -140,7 +140,7 @@ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> <location file="AndroidManifest.xml" - line="109" + line="108" column="13"/> </issue> @@ -151,7 +151,7 @@ errorLine2=" ^"> <location file="src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java" - line="525" + line="442" column="9"/> </issue> @@ -162,7 +162,7 @@ errorLine2=" ~~~~~~~~~~~~~"> <location file="src/java/org/mozilla/gecko/gfx/LayerView.java" - line="227" + line="190" column="36"/> </issue> @@ -184,7 +184,7 @@ errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> <location file="src/java/org/mozilla/gecko/gfx/LayerView.java" - line="293" + line="256" column="42"/> </issue> @@ -1114,17 +1114,6 @@ column="1"/> </issue> - <issue - id="UnusedResources" - message="The resource `R.style.LibreOfficeTheme_NavigationView` appears to be unused" - errorLine1=" <style name="LibreOfficeTheme.NavigationView">" - errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> - <location - file="res/values/themes.xml" - line="17" - column="12"/> - </issue> - <issue id="UselessParent" message="This `ScrollView` layout or its `LinearLayout` parent is unnecessary" @@ -1392,7 +1381,7 @@ errorLine2=" ~~~~~~~~~~~~"> <location file="src/java/org/mozilla/gecko/gfx/LayerView.java" - line="115" + line="100" column="20"/> </issue> commit 26f7f488afeae8b8db67efd99f1512b50d52af15 Author: Michael Weghorn <[email protected]> AuthorDate: Mon Nov 17 12:56:47 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Mon Nov 17 20:52:29 2025 +0100 android: Update com.google.android.material:material to 1.13.0 Change-Id: Id22a2130379fb11372d210049b4f02df29ec52d8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194104 Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/android/source/build.gradle b/android/source/build.gradle index b39ba0b84df5..cbdc63e69d06 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -32,7 +32,7 @@ dependencies { "libreoffice.jar", "unoloader.jar" ]) - implementation 'com.google.android.material:material:1.12.0' + implementation 'com.google.android.material:material:1.13.0' implementation 'androidx.constraintlayout:constraintlayout:2.2.1' implementation 'androidx.preference:preference:1.2.1' }
