From 011d8e12462abc3495a0ce1d521a9d2726db1bcb Mon Sep 17 00:00:00 2001 From: AbronStudio Date: Thu, 24 Jul 2025 11:35:37 +0330 Subject: [PATCH] chore: add BSD and ML Kit licenses This commit adds the license files for BSD and ML Kit to the compliance directory and updates the build.gradle.kts file to include them in the license check. It also updates the .idea/misc.xml file with some minor changes. --- .idea/misc.xml | 4 +++- app/build.gradle.kts | 4 +++- compliance/licenses/bsd.json | 5 +++++ compliance/licenses/mlkit.json | 5 +++++ 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 compliance/licenses/bsd.json create mode 100644 compliance/licenses/mlkit.json diff --git a/.idea/misc.xml b/.idea/misc.xml index bfb8555a..348bfb73 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,3 +1,4 @@ + + - + diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 3c2afdd0..6bc0c5f9 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -333,7 +333,9 @@ aboutLibraries { "BSD-2-Clause", "cmark", "EPL-1.0", - "BSD-3-Clause" + "BSD-3-Clause", + "BSD License", + "ML Kit Terms of Service" ) configPath = "compliance" } diff --git a/compliance/licenses/bsd.json b/compliance/licenses/bsd.json new file mode 100644 index 00000000..2b2d84af --- /dev/null +++ b/compliance/licenses/bsd.json @@ -0,0 +1,5 @@ +{ + "name": "BSD License", + "url": "https://chromium.googlesource.com/libyuv/libyuv/+/refs/heads/main/README.chromium", + "license": "This project is licensed under the BSD License. See the LICENSE file for details." +} \ No newline at end of file diff --git a/compliance/licenses/mlkit.json b/compliance/licenses/mlkit.json new file mode 100644 index 00000000..c2a8f943 --- /dev/null +++ b/compliance/licenses/mlkit.json @@ -0,0 +1,5 @@ +{ + "name": "ML Kit Terms of Service", + "url": "https://developers.google.com/ml-kit/terms", + "license": "This project uses Google ML Kit, which is subject to the ML Kit Terms of Service." +} \ No newline at end of file