diff options
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | .gitlab-ci.yml | 71 | ||||
| -rw-r--r-- | APACHE-2.0 | 177 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | THIRD_PARTY | 148 | ||||
| -rw-r--r-- | app/build.gradle | 36 | ||||
| -rw-r--r-- | app/src/main/assets/APACHE-2.0 | 177 | ||||
| -rw-r--r-- | app/src/main/assets/LICENSE | 674 | ||||
| -rw-r--r-- | app/src/main/assets/THIRD_PARTY | 148 | ||||
| -rw-r--r-- | build.gradle | 2 | ||||
| -rwxr-xr-x | ci/build.sh | 13 | ||||
| -rwxr-xr-x | ci/setup-toolchain.sh | 290 | ||||
| -rwxr-xr-x | ci/test.sh | 152 | ||||
| -rwxr-xr-x | ci/verify-apk.sh | 194 | ||||
| -rwxr-xr-x | ci/verify-repro.sh | 51 | ||||
| -rw-r--r-- | gradle/verification-metadata.xml | 2405 | ||||
| -rw-r--r-- | gradle/wrapper/gradle-wrapper.properties | 1 | ||||
| -rw-r--r-- | versions | 33 |
18 files changed, 4474 insertions, 106 deletions
@@ -1,14 +1,16 @@ # Build output and native-lib artifacts (rebuilt from source). /out/ +/build/ /app/build/ /app/src/main/jniLibs/ /rsync/work/ /rsync/*.tar.gz -/rsh/rsh +/rsync/*.part.* # Gradle and Android local config. .gradle/ /.kotlin/ +/.toolchains/ /local.properties # Secrets: .gitignore is the secret manager. diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..edc8c19 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,71 @@ +# Runs the same scripts a developer runs; the pipeline adds no build logic of +# its own. The toolchain is provisioned by ci/setup-toolchain.sh into +# $TOOLCHAIN_DIR and cached between runs, because it is a multi-gigabyte +# download (JDK, Android SDK, NDK, Gradle, Go). + +image: debian:13-slim + +variables: + TOOLCHAIN_DIR: "$CI_PROJECT_DIR/.toolchains" + GRADLE_USER_HOME: "$CI_PROJECT_DIR/.gradle" + TOOLCHAIN_FLAVOR: "glibc" + +# Build only after the tests pass, or a failing pipeline still publishes an APK. +stages: + - test + - build + +cache: + key: + # Never let an unprotected branch publish tools consumed by a protected + # release branch. Version files still invalidate either cache explicitly. + prefix: "toolchain-$TOOLCHAIN_FLAVOR-$CI_COMMIT_REF_PROTECTED" + files: + - versions + - gradle/wrapper/gradle-wrapper.properties + paths: + - .toolchains/ + - .gradle/ + +before_script: + - apt-get update -qq + - apt-get install -y -qq --no-install-recommends + binutils ca-certificates curl gcc git libc6-dev make python3 rsync shellcheck tar unzip xz-utils + - sh ci/setup-toolchain.sh + - . "$TOOLCHAIN_DIR/env.sh" + +test: + stage: test + script: + - sh ci/test.sh + +test-musl: + stage: test + image: alpine:3.24 + variables: + TOOLCHAIN_FLAVOR: "musl" + before_script: + - apk add --no-cache + bash binutils build-base ca-certificates coreutils curl gcompat git libstdc++ make + python3 rsync shellcheck tar unzip xz zlib + - sh ci/setup-toolchain.sh + - . "$TOOLCHAIN_DIR/env.sh" + script: + - sh ci/test.sh + - sh ci/build.sh + +build: + stage: build + script: + - sh ci/build.sh + artifacts: + paths: + - app/build/outputs/apk/release/ + expire_in: 1 week + +reproducible: + stage: build + rules: + - if: '$CI_COMMIT_TAG' + script: + - sh ci/verify-repro.sh diff --git a/APACHE-2.0 b/APACHE-2.0 new file mode 100644 index 0000000..f433b1a --- /dev/null +++ b/APACHE-2.0 @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS @@ -1,5 +1,5 @@ # rsend build orchestration. Heavy lifting lives in the shell scripts so the -# project builds with one `make` on any Debian box with the pinned toolchain. +# project builds with one `make` on x86_64 Linux with glibc or musl. .POSIX: @@ -36,6 +36,6 @@ verify-repro: sh ci/verify-repro.sh clean: - rm -rf out app/build app/src/main/jniLibs rsync/work rsh/rsh + rm -rf out build app/build app/src/main/jniLibs rsync/work .PHONY: all setup native rsync rsh app test verify-repro clean diff --git a/THIRD_PARTY b/THIRD_PARTY new file mode 100644 index 0000000..2f8c03d --- /dev/null +++ b/THIRD_PARTY @@ -0,0 +1,148 @@ +Third-party software +==================== +This file records software used by rsend and where to obtain its corresponding +source. Exact direct versions are pinned in versions, app/build.gradle, and +rsh/go.mod. Transitive JVM versions are resolved from those immutable Maven +artifacts and their bytes are locked in gradle/verification-metadata.xml. +LICENSE contains rsend's GPLv3 license. APACHE-2.0 contains the complete terms +for every component identified below as Apache 2.0. + + +Native APK components +--------------------- +- rsync 3.5.0, GPLv3. Source: https://download.samba.org/pub/rsync/src/. + The build uses rsync's bundled popt under its MIT/X license and zlib under + the zlib license. Optional OpenSSL, xxHash, zstd, lz4, iconv, ACL, and xattr + integrations are disabled. +- The Go standard library from Go 1.26.6, BSD 3-clause. + Source: https://go.googlesource.com/go/+/refs/tags/go1.26.6. +- golang.org/x/crypto 0.54.0, BSD 3-clause. + Source: https://go.googlesource.com/crypto. +- Android NDK compiler runtime code, Apache 2.0 with LLVM exception. + Source: https://android.googlesource.com/toolchain/llvm-project/. + + +JVM APK components +------------------ +- Kotlin standard library 2.3.20 and kotlinx.coroutines 1.9.0, Apache 2.0. + Source: https://github.com/JetBrains/kotlin and + https://github.com/Kotlin/kotlinx.coroutines. +- AndroidX Core 1.16.0, AppCompat 1.7.1, and WorkManager 2.11.2, + Apache 2.0. Their resolved artifact families are Activity, + Annotation, AppCompat, Arch Core, Collection, Concurrent Futures, Core, + CursorAdapter, CustomView, DrawerLayout, Emoji2, Fragment, Interpolator, + Lifecycle, Loader, ProfileInstaller, ResourceInspection, Room, SavedState, + SQLite, Startup, Tracing, VectorDrawable, VersionedParcelable, ViewPager, and + WorkManager. Source: https://android.googlesource.com/platform/frameworks/support/. +- JetBrains annotations 23.0.0, Apache 2.0. + Source: https://github.com/JetBrains/java-annotations. +- JSpecify 1.0.0, Apache 2.0. + Source: https://github.com/jspecify/jspecify. +- Guava listenablefuture 1.0, Apache 2.0. + Source: https://github.com/google/guava. + + +Build and test only +------------------- +The pinned Temurin JDK, Android SDK and NDK, Gradle, Android Gradle Plugin, +Kotlin compiler, Go toolchain, govulncheck, JUnit, and org.json are used to +build or test rsend but are not redistributed as standalone components in the +APK. golang.org/x/sys 0.47.0 is an indirect module-graph dependency but no +x/sys package is linked into rsh. Their exact versions are in versions, Gradle +files, and rsh/go.mod. + + +BSD 3-clause notice +------------------- +Copyright 2009 The Go Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of Google LLC nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + +Popt MIT/X notice +----------------- +Copyright (c) 1998 Red Hat Software + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from the X Consortium. + + +Zlib notice +----------- +Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim + that you wrote the original software. If you use this software in a + product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Jean-loup Gailly, jloup@gzip.org +Mark Adler, madler@alumni.caltech.edu + + +LLVM exception to Apache 2.0 +---------------------------- +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. diff --git a/app/build.gradle b/app/build.gradle index 4198751..df41dc5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -45,6 +45,12 @@ android { buildTypes { release { minifyEnabled false + // Do not stamp the git revision into the APK. It makes two builds + // of the same source differ by checkout state, which is exactly + // what reproducible-build verification is supposed to detect. + vcsInfo { + include false + } if (keystoreProps.exists()) { signingConfig signingConfigs.release } @@ -68,6 +74,8 @@ android { packaging { jniLibs { useLegacyPackaging true + // Native build scripts already strip these PIE executables. + keepDebugSymbols += ['**/libxrsync.so', '**/libxrsh.so'] } } @@ -76,12 +84,34 @@ android { includeInApk false includeInBundle false } + + lint { + warningsAsErrors true + // rsend is deliberately English-only. Keeping short operational text + // beside the behavior is clearer than a large indirection table. + disable 'HardcodedText', 'SetTextI18n' + // These two checks enforce Google Play policy; rsend targets F-Droid + // and sideloading, and both permissions are core to unattended sync. + disable 'BatteryLife', 'ScopedStorage' + // Core 1.17+ requires a different platform and AGP toolchain. The pin + // below is the newest version compatible with this release's stack. + disable 'GradleDependency' + // OldTargetApi fires the moment Google publishes a newer SDK, against + // a targetSdk this repo pins deliberately in ./versions and enforces + // in ci/test.sh. With warningsAsErrors that turns the calendar into a + // build break: the same commit passes today and fails next quarter, + // which is the opposite of what every other pin here exists for. + // Bumping the target is a deliberate, tested change, not lint's call. + disable 'OldTargetApi' + } } dependencies { - implementation 'androidx.core:core-ktx:1.13.1' - implementation 'androidx.appcompat:appcompat:1.7.0' - implementation 'androidx.work:work-runtime-ktx:2.10.0' + // 1.16.0 is the newest Core release supported by the pinned API 35 and + // AGP 8.7 toolchain. Core 1.17+ requires a newer platform and AGP. + implementation 'androidx.core:core-ktx:1.16.0' + implementation 'androidx.appcompat:appcompat:1.7.1' + implementation 'androidx.work:work-runtime:2.11.2' // The real org.json shadows the android.jar stub so JSON tests run on the JVM. testImplementation 'junit:junit:4.13.2' diff --git a/app/src/main/assets/APACHE-2.0 b/app/src/main/assets/APACHE-2.0 new file mode 100644 index 0000000..f433b1a --- /dev/null +++ b/app/src/main/assets/APACHE-2.0 @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/app/src/main/assets/LICENSE b/app/src/main/assets/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/app/src/main/assets/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + <program> Copyright (C) <year> <name of author> + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +<https://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +<https://www.gnu.org/licenses/why-not-lgpl.html>. diff --git a/app/src/main/assets/THIRD_PARTY b/app/src/main/assets/THIRD_PARTY new file mode 100644 index 0000000..2f8c03d --- /dev/null +++ b/app/src/main/assets/THIRD_PARTY @@ -0,0 +1,148 @@ +Third-party software +==================== +This file records software used by rsend and where to obtain its corresponding +source. Exact direct versions are pinned in versions, app/build.gradle, and +rsh/go.mod. Transitive JVM versions are resolved from those immutable Maven +artifacts and their bytes are locked in gradle/verification-metadata.xml. +LICENSE contains rsend's GPLv3 license. APACHE-2.0 contains the complete terms +for every component identified below as Apache 2.0. + + +Native APK components +--------------------- +- rsync 3.5.0, GPLv3. Source: https://download.samba.org/pub/rsync/src/. + The build uses rsync's bundled popt under its MIT/X license and zlib under + the zlib license. Optional OpenSSL, xxHash, zstd, lz4, iconv, ACL, and xattr + integrations are disabled. +- The Go standard library from Go 1.26.6, BSD 3-clause. + Source: https://go.googlesource.com/go/+/refs/tags/go1.26.6. +- golang.org/x/crypto 0.54.0, BSD 3-clause. + Source: https://go.googlesource.com/crypto. +- Android NDK compiler runtime code, Apache 2.0 with LLVM exception. + Source: https://android.googlesource.com/toolchain/llvm-project/. + + +JVM APK components +------------------ +- Kotlin standard library 2.3.20 and kotlinx.coroutines 1.9.0, Apache 2.0. + Source: https://github.com/JetBrains/kotlin and + https://github.com/Kotlin/kotlinx.coroutines. +- AndroidX Core 1.16.0, AppCompat 1.7.1, and WorkManager 2.11.2, + Apache 2.0. Their resolved artifact families are Activity, + Annotation, AppCompat, Arch Core, Collection, Concurrent Futures, Core, + CursorAdapter, CustomView, DrawerLayout, Emoji2, Fragment, Interpolator, + Lifecycle, Loader, ProfileInstaller, ResourceInspection, Room, SavedState, + SQLite, Startup, Tracing, VectorDrawable, VersionedParcelable, ViewPager, and + WorkManager. Source: https://android.googlesource.com/platform/frameworks/support/. +- JetBrains annotations 23.0.0, Apache 2.0. + Source: https://github.com/JetBrains/java-annotations. +- JSpecify 1.0.0, Apache 2.0. + Source: https://github.com/jspecify/jspecify. +- Guava listenablefuture 1.0, Apache 2.0. + Source: https://github.com/google/guava. + + +Build and test only +------------------- +The pinned Temurin JDK, Android SDK and NDK, Gradle, Android Gradle Plugin, +Kotlin compiler, Go toolchain, govulncheck, JUnit, and org.json are used to +build or test rsend but are not redistributed as standalone components in the +APK. golang.org/x/sys 0.47.0 is an indirect module-graph dependency but no +x/sys package is linked into rsh. Their exact versions are in versions, Gradle +files, and rsh/go.mod. + + +BSD 3-clause notice +------------------- +Copyright 2009 The Go Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of Google LLC nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + +Popt MIT/X notice +----------------- +Copyright (c) 1998 Red Hat Software + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from the X Consortium. + + +Zlib notice +----------- +Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim + that you wrote the original software. If you use this software in a + product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Jean-loup Gailly, jloup@gzip.org +Mark Adler, madler@alumni.caltech.edu + + +LLVM exception to Apache 2.0 +---------------------------- +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. diff --git a/build.gradle b/build.gradle index 96d7c9c..8f4c7fe 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ // Plugin versions are pinned here; see also the `versions` file. plugins { id 'com.android.application' version '8.7.3' apply false - id 'org.jetbrains.kotlin.android' version '2.0.21' apply false + id 'org.jetbrains.kotlin.android' version '2.3.20' apply false } diff --git a/ci/build.sh b/ci/build.sh index c99ec5f..24cd8fc 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -3,10 +3,15 @@ # Requires the pinned toolchain (see versions): Android SDK + NDK, a JDK, Go. set -eu -root=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd) +root=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd) make -C "$root" app -git -C "$root" rev-parse HEAD > "$root/app/build/outputs/apk/release/.source-commit" -echo "ci: APK at app/build/outputs/apk/release/" -ls -l "$root"/app/build/outputs/apk/release/*.apk +if [ -f "$root/keystore.properties" ]; then + apk="$root/app/build/outputs/apk/release/app-release.apk" +else + apk="$root/app/build/outputs/apk/release/app-release-unsigned.apk" +fi +echo "ci: APK at $apk" +ls -l "$apk" +"$root/ci/verify-apk.sh" "$apk" diff --git a/ci/setup-toolchain.sh b/ci/setup-toolchain.sh index 6ed09c6..a62f633 100755 --- a/ci/setup-toolchain.sh +++ b/ci/setup-toolchain.sh @@ -1,88 +1,298 @@ #!/bin/sh -# Provision the pinned Android build toolchain into TOOLCHAIN_DIR (default -# $HOME/toolchains): JDK 17, Android cmdline-tools, SDK platform, build-tools, -# NDK, and Gradle. Idempotent: re-running only fills what is missing. Writes an -# env.sh to source before building. This is what CI runs to get a build host. +# Provision the exact Android, Java, Go, and Gradle toolchain into +# TOOLCHAIN_DIR. Standalone tools are installed from staging directories; +# sdkmanager packages are checked for exact revisions after installation. set -eu -root=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd) +root=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd) +# shellcheck source=versions . "$root/versions" dir=${TOOLCHAIN_DIR:-$HOME/toolchains} sdk="$dir/android-sdk" -mkdir -p "$dir/dl" -jdk="$dir/jdk-$JDK_RELEASE" cmdline="$sdk/cmdline-tools/$ANDROID_CMDLINE_TOOLS" +gradle="$dir/gradle-$GRADLE_VERSION" goroot="$dir/go-$GO_VERSION" +stage= +part= +trap 'if [ -n "$stage" ]; then rm -rf "$stage"; fi; if [ -n "$part" ]; then rm -f "$part"; fi' 0 1 2 3 15 + +if [ "$(uname -s)" != Linux ] || [ "$(uname -m)" != x86_64 ]; then + echo "setup: only Linux x86_64 build hosts are supported" >&2 + exit 1 +fi + +# Temurin publishes separate x86_64 archives for glibc and musl. Detect the +# host before naming the cache so an archive for one libc can never be reused +# on the other. +if getconf GNU_LIBC_VERSION >/dev/null 2>&1; then + jdk_libc=glibc + jdk_platform=linux + jdk_sha256=$JDK_GLIBC_SHA256 +else + musl_loader= + for candidate in /lib/ld-musl-x86_64.so.1 /lib64/ld-musl-x86_64.so.1 /usr/lib/ld-musl-x86_64.so.1; do + if [ -e "$candidate" ]; then + musl_loader=$candidate + break + fi + done + [ -n "$musl_loader" ] || { + echo "setup: host libc is neither glibc nor musl" >&2 + exit 1 + } + jdk_libc=musl + jdk_platform=alpine-linux + jdk_sha256=$JDK_MUSL_SHA256 +fi +jdk="$dir/jdk-$JDK_RELEASE-$jdk_libc" +jdk_mark="$JDK_RELEASE $jdk_libc" +vulncheck="$dir/govulncheck-$GOVULNCHECK_VERSION-$jdk_libc" +vulncheck_mark="$GOVULNCHECK_VERSION $GO_VERSION $jdk_libc" + +mkdir -p "$dir/dl" download() { url=$1 file=$2 want=$3 - curl -fsSL "$url" -o "$file" - printf '%s %s\n' "$want" "$file" | sha256sum -c - + if [ -f "$file" ]; then + actual=$(sha256sum "$file") + if [ "${actual%% *}" = "$want" ]; then + return + fi + echo "setup: removing corrupt $(basename "$file")" >&2 + rm -f "$file" + fi + part="$file.part.$$" + curl --fail --silent --show-error --location --retry 3 \ + --connect-timeout 30 --speed-limit 1024 --speed-time 60 \ + "$url" -o "$part" + actual=$(sha256sum "$part") + [ "${actual%% *}" = "$want" ] || { + echo "setup: checksum failed for $(basename "$file")" >&2 + exit 1 + } + mv "$part" "$file" + part= +} + +mark_complete() { + cat <<EOF > "$1/.rsend-complete" +$2 +EOF +} + +marked() { + [ -f "$1/.rsend-complete" ] && [ "$(cat "$1/.rsend-complete")" = "$2" ] +} + +java_works() { + java_root=$1 + version_output=$("$java_root/bin/java" -version 2>&1) || return 1 + case "$version_output" in + *"$JDK_RELEASE"*) return 0 ;; + *) return 1 ;; + esac +} + +gradle_works() { + gradle_root=$1 + version_output=$("$gradle_root/bin/gradle" --version 2>/dev/null) || return 1 + grep -Fqx "Gradle $GRADLE_VERSION" <<EOF +$version_output +EOF +} + +go_works() { + go_root=$1 + version_output=$(GOROOT="$go_root" "$go_root/bin/go" version 2>/dev/null) || return 1 + case "$version_output" in + *"go version go$GO_VERSION "*) return 0 ;; + *) return 1 ;; + esac } -# JDK (Temurin, exact pinned release; + must be %2B in the URL). -if [ ! -x "$jdk/bin/java" ]; then - echo "setup: JDK $JDK_RELEASE" +govulncheck_works() { + vulncheck_root=$1 + version_output=$("$vulncheck_root/bin/govulncheck" -version 2>/dev/null) || return 1 + grep -Fqx "Scanner: govulncheck@v$GOVULNCHECK_VERSION" <<EOF +$version_output +EOF +} + +java_ready() { + [ -x "$jdk/bin/java" ] && marked "$jdk" "$jdk_mark" && java_works "$jdk" +} + +gradle_ready() { + [ -x "$gradle/bin/gradle" ] && marked "$gradle" "$GRADLE_VERSION" && + gradle_works "$gradle" +} + +go_ready() { + [ -x "$goroot/bin/go" ] && marked "$goroot" "$GO_VERSION" && + go_works "$goroot" +} + +govulncheck_ready() { + [ -x "$vulncheck/bin/govulncheck" ] && marked "$vulncheck" "$vulncheck_mark" && + govulncheck_works "$vulncheck" +} + +# JDK (Temurin, exact pinned release and host libc; + must be %2B in the URL). +if ! java_ready; then + echo "setup: JDK $JDK_RELEASE ($jdk_libc)" rel=$(printf '%s' "$JDK_RELEASE" | sed 's/+/%2B/') - download "https://api.adoptium.net/v3/binary/version/jdk-${rel}/linux/x64/jdk/hotspot/normal/eclipse" \ - "$dir/dl/jdk-$JDK_RELEASE.tar.gz" "$JDK_SHA256" - mkdir -p "$jdk" - tar xzf "$dir/dl/jdk-$JDK_RELEASE.tar.gz" -C "$jdk" --strip-components=1 + jdk_archive="$dir/dl/jdk-$JDK_RELEASE-$jdk_libc.tar.gz" + download "https://api.adoptium.net/v3/binary/version/jdk-${rel}/${jdk_platform}/x64/jdk/hotspot/normal/eclipse" \ + "$jdk_archive" "$jdk_sha256" + stage=$(mktemp -d "$dir/.jdk-$JDK_RELEASE-$jdk_libc.XXXXXX") + tar xzf "$jdk_archive" -C "$stage" --strip-components=1 + if [ ! -x "$stage/bin/java" ] || ! java_works "$stage"; then + echo "setup: JDK cannot run on this host" >&2 + exit 1 + fi + mark_complete "$stage" "$jdk_mark" + rm -rf "$jdk" + mv "$stage" "$jdk" + stage= fi export JAVA_HOME="$jdk" export PATH="$JAVA_HOME/bin:$PATH" -# Android cmdline-tools. -if [ ! -x "$cmdline/bin/sdkmanager" ]; then +# Android command-line tools. +if [ ! -x "$cmdline/bin/sdkmanager" ] || ! marked "$cmdline" "$ANDROID_CMDLINE_TOOLS" || + ! "$cmdline/bin/sdkmanager" --sdk_root="$sdk" --version >/dev/null 2>&1; then echo "setup: cmdline-tools $ANDROID_CMDLINE_TOOLS" download "https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_CMDLINE_TOOLS}_latest.zip" \ "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS.zip" "$ANDROID_CMDLINE_TOOLS_SHA256" - rm -rf "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS" - python3 -m zipfile -e "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS.zip" "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS" mkdir -p "$sdk/cmdline-tools" + stage=$(mktemp -d "$sdk/cmdline-tools/.cmdline-$ANDROID_CMDLINE_TOOLS.XXXXXX") + python3 -m zipfile -e "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS.zip" "$stage" + chmod +x "$stage/cmdline-tools/bin/"* + [ -x "$stage/cmdline-tools/bin/sdkmanager" ] || { + echo "setup: command-line tools archive has no sdkmanager" >&2 + exit 1 + } + "$stage/cmdline-tools/bin/sdkmanager" --sdk_root="$sdk" --version >/dev/null + mark_complete "$stage/cmdline-tools" "$ANDROID_CMDLINE_TOOLS" rm -rf "$cmdline" - mv "$dir/dl/clt-$ANDROID_CMDLINE_TOOLS/cmdline-tools" "$cmdline" - chmod +x "$cmdline/bin/"* + mv "$stage/cmdline-tools" "$cmdline" + rm -rf "$stage" + stage= fi -# SDK packages. -echo "setup: sdk packages" -yes | "$cmdline/bin/sdkmanager" --licenses >/dev/null -"$cmdline/bin/sdkmanager" \ - "platforms;android-${ANDROID_PLATFORM}" \ - "build-tools;${ANDROID_BUILD_TOOLS}" \ - "ndk;${ANDROID_NDK}" >/dev/null +# SDK packages. A complete pinned install needs no network on repeated runs. +export ANDROID_HOME="$sdk" +export ANDROID_SDK_ROOT="$sdk" +sdk_packages_ready() { + [ -f "$sdk/platforms/android-$ANDROID_PLATFORM/android.jar" ] && + grep -Fqx "AndroidVersion.ApiLevel=$ANDROID_PLATFORM" \ + "$sdk/platforms/android-$ANDROID_PLATFORM/source.properties" && + grep -Fqx "Pkg.Revision=$ANDROID_PLATFORM_REVISION" \ + "$sdk/platforms/android-$ANDROID_PLATFORM/source.properties" && + platform_sum=$(sha256sum "$sdk/platforms/android-$ANDROID_PLATFORM/android.jar") && + [ "${platform_sum%% *}" = "$ANDROID_PLATFORM_JAR_SHA256" ] && + [ -x "$sdk/build-tools/$ANDROID_BUILD_TOOLS/aapt" ] && + grep -Fqx "Pkg.Revision=$ANDROID_BUILD_TOOLS" \ + "$sdk/build-tools/$ANDROID_BUILD_TOOLS/source.properties" && + [ -d "$sdk/ndk/$ANDROID_NDK" ] && + grep -Fqx "Pkg.Revision = $ANDROID_NDK" \ + "$sdk/ndk/$ANDROID_NDK/source.properties" && + [ -s "$sdk/licenses/android-sdk-license" ] +} +if ! sdk_packages_ready; then + echo "setup: SDK packages" + license_answers="$dir/dl/android-license-answers" + awk 'BEGIN { for (i = 0; i < 100; i++) print "y" }' > "$license_answers" + "$cmdline/bin/sdkmanager" --sdk_root="$sdk" --licenses \ + < "$license_answers" >/dev/null + "$cmdline/bin/sdkmanager" --sdk_root="$sdk" \ + "platforms;android-${ANDROID_PLATFORM}" \ + "build-tools;${ANDROID_BUILD_TOOLS}" \ + "ndk;${ANDROID_NDK}" >/dev/null + sdk_packages_ready || { + echo "setup: Android SDK packages are incomplete" >&2 + exit 1 + } +fi +ndk_clang="$sdk/ndk/$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/clang" +if [ ! -x "$ndk_clang" ] || ! "$ndk_clang" --version >/dev/null 2>&1; then + echo "setup: Android NDK cannot run on this host (Alpine needs gcompat)" >&2 + exit 1 +fi # Gradle. -if [ ! -x "$dir/gradle-${GRADLE_VERSION}/bin/gradle" ]; then +if ! gradle_ready; then echo "setup: Gradle $GRADLE_VERSION" download "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" \ "$dir/dl/gradle-$GRADLE_VERSION.zip" "$GRADLE_SHA256" - python3 -m zipfile -e "$dir/dl/gradle-$GRADLE_VERSION.zip" "$dir" - chmod +x "$dir/gradle-${GRADLE_VERSION}/bin/gradle" + stage=$(mktemp -d "$dir/.gradle-$GRADLE_VERSION.XXXXXX") + python3 -m zipfile -e "$dir/dl/gradle-$GRADLE_VERSION.zip" "$stage" + chmod +x "$stage/gradle-$GRADLE_VERSION/bin/gradle" + [ -x "$stage/gradle-$GRADLE_VERSION/bin/gradle" ] || { + echo "setup: Gradle archive has no gradle" >&2 + exit 1 + } + gradle_works "$stage/gradle-$GRADLE_VERSION" || { + echo "setup: Gradle cannot run on this host" >&2 + exit 1 + } + mark_complete "$stage/gradle-$GRADLE_VERSION" "$GRADLE_VERSION" + rm -rf "$gradle" + mv "$stage/gradle-$GRADLE_VERSION" "$gradle" + rm -rf "$stage" + stage= fi +export GRADLE_HOME="$gradle" -# Go (pinned; builds rsh). -if [ ! -x "$goroot/bin/go" ]; then +# Go. +if ! go_ready; then echo "setup: Go $GO_VERSION" download "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" \ "$dir/dl/go-$GO_VERSION.tar.gz" "$GO_SHA256" - mkdir -p "$goroot" - tar xzf "$dir/dl/go-$GO_VERSION.tar.gz" -C "$goroot" --strip-components=1 + stage=$(mktemp -d "$dir/.go-$GO_VERSION.XXXXXX") + tar xzf "$dir/dl/go-$GO_VERSION.tar.gz" -C "$stage" --strip-components=1 + if [ ! -x "$stage/bin/go" ] || ! go_works "$stage"; then + echo "setup: Go cannot run on this host" >&2 + exit 1 + fi + mark_complete "$stage" "$GO_VERSION" + rm -rf "$goroot" + mv "$stage" "$goroot" + stage= +fi +export GOROOT="$goroot" +export PATH="$GOROOT/bin:$PATH" + +# Source-aware vulnerability scanner. It queries the public Go vulnerability +# database when ci/test.sh invokes it; the source tree itself is not uploaded. +if ! govulncheck_ready; then + echo "setup: govulncheck $GOVULNCHECK_VERSION" + stage=$(mktemp -d "$dir/.govulncheck-$GOVULNCHECK_VERSION-$jdk_libc.XXXXXX") + mkdir -p "$stage/bin" + GOBIN="$stage/bin" "$goroot/bin/go" install \ + "golang.org/x/vuln/cmd/govulncheck@v${GOVULNCHECK_VERSION}" + if [ ! -x "$stage/bin/govulncheck" ] || ! govulncheck_works "$stage"; then + echo "setup: govulncheck install failed" >&2 + exit 1 + fi + mark_complete "$stage" "$vulncheck_mark" + rm -rf "$vulncheck" + mv "$stage" "$vulncheck" + stage= fi -# Emit the env to source before building. -cat > "$dir/env.sh" <<EOF +# Emit the environment to source before building. +cat <<EOF > "$dir/env.sh" export JAVA_HOME="$jdk" export GOROOT="$goroot" export ANDROID_HOME="$sdk" export ANDROID_SDK_ROOT="$sdk" export ANDROID_NDK_HOME="$sdk/ndk/${ANDROID_NDK}" -export GRADLE_HOME="$dir/gradle-${GRADLE_VERSION}" -export PATH="\$JAVA_HOME/bin:\$GOROOT/bin:\$GRADLE_HOME/bin:$cmdline/bin:$sdk/build-tools/${ANDROID_BUILD_TOOLS}:\$PATH" +export GRADLE_HOME="$gradle" +export PATH="\$JAVA_HOME/bin:\$GOROOT/bin:\$GRADLE_HOME/bin:$vulncheck/bin:$cmdline/bin:$sdk/build-tools/${ANDROID_BUILD_TOOLS}:\$PATH" EOF echo "setup: done; source $dir/env.sh" @@ -1,54 +1,146 @@ #!/bin/sh -# Full checks: source pins, Go formatting/vet/tests, real-rsync integration, -# and Android JVM tests. Requires the provisioned toolchain and host rsync. +# Full checks: exact source pins, shell syntax, Go analysis, integration tests, +# vulnerability scanning, Android JVM tests, and Android lint. set -eu -root=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd) +root=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd) +# shellcheck source=versions . "$root/versions" -command -v rsync >/dev/null 2>&1 || { echo "ci: rsync is required" >&2; exit 1; } -command -v gradle >/dev/null 2>&1 || { echo "ci: gradle is required" >&2; exit 1; } +for command in cmp git govulncheck gradle go gofmt rsync sha256sum shellcheck; do + command -v "$command" >/dev/null 2>&1 || { + echo "ci: $command is required" >&2 + exit 1 + } +done if [ -f "$root/rsync/rsync-${RSYNC_VERSION}.tar.gz" ]; then echo "ci: verifying pinned rsync checksum" ( cd "$root/rsync" && sha256sum -c "rsync-${RSYNC_VERSION}.tar.gz.sha256" ) fi -# The gradle files and go.mod repeat pins from ./versions (gradle cannot source -# a shell file); fail loud if they drift. +# These files repeat values from ./versions because Gradle and Go cannot source +# a POSIX shell file. Exact source lines keep comments from satisfying a pin. +line() { + grep -Fqx -e "$2" "$root/$1" || { + echo "ci: $1 does not contain exact pin: $2" >&2 + exit 1 + } +} + echo "ci: version pins" -pin() { - grep -Fq "$2" "$root/$1" || { echo "ci: $1 does not pin '$2' (see versions)" >&2; exit 1; } +line build.gradle " id 'com.android.application' version '${AGP_VERSION}' apply false" +line build.gradle " id 'org.jetbrains.kotlin.android' version '${KOTLIN_VERSION}' apply false" +line gradle/wrapper/gradle-wrapper.properties "distributionUrl=https\\://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" +line gradle/wrapper/gradle-wrapper.properties "distributionSha256Sum=${GRADLE_SHA256}" +line app/build.gradle " compileSdk ${ANDROID_PLATFORM}" +line app/build.gradle " buildToolsVersion '${ANDROID_BUILD_TOOLS}'" +line app/build.gradle " minSdk ${ANDROID_MIN_SDK}" +line app/build.gradle " targetSdk ${ANDROID_TARGET_SDK}" +line app/build.gradle " versionCode ${APP_VERSION_CODE}" +line app/build.gradle " versionName '${APP_VERSION}'" +line app/build.gradle " implementation 'androidx.core:core-ktx:${ANDROIDX_CORE_VERSION}'" +line app/build.gradle " implementation 'androidx.appcompat:appcompat:${ANDROIDX_APPCOMPAT_VERSION}'" +line app/build.gradle " implementation 'androidx.work:work-runtime:${ANDROIDX_WORK_VERSION}'" +line app/build.gradle " testImplementation 'junit:junit:${JUNIT_VERSION}'" +line app/build.gradle " testImplementation 'org.json:json:${JSON_VERSION}'" +line rsh/go.mod "go ${GO_VERSION}" +line rsh/go.mod "require golang.org/x/crypto v${X_CRYPTO_VERSION}" +line rsh/go.mod "require golang.org/x/sys v${X_SYS_VERSION} // indirect" +line THIRD_PARTY "- rsync ${RSYNC_VERSION}, GPLv3. Source: https://download.samba.org/pub/rsync/src/." +line THIRD_PARTY "- The Go standard library from Go ${GO_VERSION}, BSD 3-clause." +line THIRD_PARTY "- golang.org/x/crypto ${X_CRYPTO_VERSION}, BSD 3-clause." +line THIRD_PARTY "APK. golang.org/x/sys ${X_SYS_VERSION} is an indirect module-graph dependency but no" +line THIRD_PARTY "- AndroidX Core ${ANDROIDX_CORE_VERSION}, AppCompat ${ANDROIDX_APPCOMPAT_VERSION}, and WorkManager ${ANDROIDX_WORK_VERSION}," +cmp "$root/APACHE-2.0" "$root/app/src/main/assets/APACHE-2.0" || { + echo "ci: packaged APACHE-2.0 differs from repository APACHE-2.0" >&2 + exit 1 +} +cmp "$root/LICENSE" "$root/app/src/main/assets/LICENSE" || { + echo "ci: packaged LICENSE differs from repository LICENSE" >&2 + exit 1 +} +cmp "$root/THIRD_PARTY" "$root/app/src/main/assets/THIRD_PARTY" || { + echo "ci: packaged THIRD_PARTY differs from repository THIRD_PARTY" >&2 + exit 1 +} +[ -s "$root/gradle/verification-metadata.xml" ] || { + echo "ci: Gradle dependency verification metadata is missing" >&2 + exit 1 +} +tracked_files=$(git -C "$root" ls-files) +tracked_secrets= +if tracked_secrets=$(printf '%s\n' "$tracked_files" | + grep -E '(^|/)(keystore\.properties|[^/]*\.(jks|keystore))$'); then + : +else + status=$? + [ "$status" -eq 1 ] || exit "$status" +fi +[ -z "$tracked_secrets" ] || { + echo "ci: signing secret is tracked:" >&2 + printf '%s\n' "$tracked_secrets" >&2 + exit 1 } -pin build.gradle "version '${AGP_VERSION}'" -pin build.gradle "version '${KOTLIN_VERSION}'" -pin gradle/wrapper/gradle-wrapper.properties "gradle-${GRADLE_VERSION}-bin.zip" -pin app/build.gradle "compileSdk ${ANDROID_PLATFORM}" -pin app/build.gradle "buildToolsVersion '${ANDROID_BUILD_TOOLS}'" -pin app/build.gradle "minSdk ${ANDROID_MIN_SDK}" -pin app/build.gradle "targetSdk ${ANDROID_TARGET_SDK}" -pin rsh/go.mod "go ${GO_VERSION}" -pin app/build.gradle "androidx.core:core-ktx:${ANDROIDX_CORE_VERSION}" -pin app/build.gradle "androidx.appcompat:appcompat:${ANDROIDX_APPCOMPAT_VERSION}" -pin app/build.gradle "androidx.work:work-runtime-ktx:${ANDROIDX_WORK_VERSION}" -pin app/build.gradle "junit:junit:${JUNIT_VERSION}" -pin app/build.gradle "org.json:json:${JSON_VERSION}" +abi_filters= +for abi in $ABIS; do + if [ -z "$abi_filters" ]; then + abi_filters="'$abi'" + else + abi_filters="$abi_filters, '$abi'" + fi +done +line app/build.gradle " ndk { abiFilters $abi_filters }" -echo "ci: gofmt" -unformatted=$(gofmt -l "$root/rsh") -if [ -n "$unformatted" ]; then - echo "ci: gofmt needed for:" >&2 - echo "$unformatted" >&2 +checksum="$root/rsync/rsync-${RSYNC_VERSION}.tar.gz.sha256" +[ -f "$checksum" ] || { echo "ci: missing $checksum" >&2; exit 1; } +[ "$(awk 'NF == 2 { print $2 }' "$checksum")" = "rsync-${RSYNC_VERSION}.tar.gz" ] || { + echo "ci: checksum filename does not match rsync pin" >&2 + exit 1 +} + +changelog="fastlane/metadata/android/en-US/changelogs/${APP_VERSION_CODE}.txt" +[ -s "$root/$changelog" ] || { echo "ci: missing $changelog for version ${APP_VERSION}" >&2; exit 1; } +chars=$(wc -c < "$root/$changelog") +[ "$chars" -le 500 ] || { echo "ci: $changelog is $chars bytes, over F-Droid's 500 limit" >&2; exit 1; } + +echo "ci: shell syntax" +shell_scripts=$(git -C "$root" ls-files --cached --others --exclude-standard '*.sh') +printf '%s\n' "$shell_scripts" | +while IFS= read -r script; do + sh -n "$root/$script" +done +( cd "$root" && shellcheck -x ci/*.sh rsync/build.sh rsh/build.sh ) +em_dash=$(printf '\342\200\224') +if git -C "$root" grep --untracked -n -I "$em_dash"; then + echo "ci: em dash is not allowed" >&2 exit 1 +else + status=$? + [ "$status" -eq 1 ] || exit "$status" fi +echo "ci: gofmt" +unformatted=$(gofmt -l "$root/rsh") +[ -z "$unformatted" ] || { echo "ci: gofmt needed for:$unformatted" >&2; exit 1; } + +echo "ci: go module checksums" +( cd "$root/rsh" && go mod verify ) + echo "ci: go vet" ( cd "$root/rsh" && go vet ./... ) -echo "ci: go test" -( cd "$root/rsh" && go test ./... ) +echo "ci: go test (race detector)" +( cd "$root/rsh" && go test -race ./... ) + +# govulncheck queries vuln.go.dev and sends module paths, not source code. +echo "ci: govulncheck" +( cd "$root/rsh" && govulncheck ./... ) echo "ci: Android unit tests" -( cd "$root" && gradle :app:testReleaseUnitTest ) +( cd "$root" && gradle --no-daemon :app:testReleaseUnitTest ) + +echo "ci: Android lint" +( cd "$root" && gradle --no-daemon :app:lintRelease ) echo "ci: ok" diff --git a/ci/verify-apk.sh b/ci/verify-apk.sh new file mode 100755 index 0000000..fde1cb8 --- /dev/null +++ b/ci/verify-apk.sh @@ -0,0 +1,194 @@ +#!/bin/sh +# Verify the release APK's identity, alignment, native payload, and signature. +set -eu + +root=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd) +# shellcheck source=versions +. "$root/versions" +apk=${1:-$root/app/build/outputs/apk/release/app-release-unsigned.apk} +[ -f "$apk" ] || { echo "verify-apk: not found: $apk" >&2; exit 1; } +command -v readelf >/dev/null 2>&1 || { echo "verify-apk: readelf is required" >&2; exit 1; } +tmp=$(mktemp -d) +trap 'rm -rf "$tmp"' 0 1 2 3 15 + +entries=$(unzip -Z1 "$apk") +actual=$(printf '%s\n' "$entries" | sed -n 's|^lib/\([^/]*\)/.*|\1|p' | sort -u | tr '\n' ' ' | sed 's/ $//') +expected=$(printf '%s\n' "$ABIS" | tr ' ' '\n' | sed '/^$/d' | sort -u | tr '\n' ' ' | sed 's/ $//') +[ "$actual" = "$expected" ] || { + echo "verify-apk: native ABIs are '$actual', expected '$expected'" >&2 + exit 1 +} +for abi in $ABIS; do + for lib in libxrsync.so libxrsh.so; do + path="lib/$abi/$lib" + printf '%s\n' "$entries" | grep -Fqx "$path" || { + echo "verify-apk: missing lib/$abi/$lib" >&2 + exit 1 + } + elf="$tmp/$abi-$lib" + unzip -p "$apk" "$path" > "$elf" + header=$(readelf -W -h "$elf") + printf '%s\n' "$header" | grep -Fq 'DYN (Position-Independent Executable file)' || { + echo "verify-apk: $path is not PIE" >&2 + exit 1 + } + case "$abi" in + arm64-v8a) machine=AArch64 ;; + x86_64) machine='Advanced Micro Devices X86-64' ;; + *) echo "verify-apk: no machine check for $abi" >&2; exit 1 ;; + esac + actual_machine=$(printf '%s\n' "$header" | sed -n 's/^[[:space:]]*Machine:[[:space:]]*//p') + [ "$actual_machine" = "$machine" ] || { + echo "verify-apk: $path has the wrong machine type" >&2 + exit 1 + } + program_headers=$(readelf -W -l "$elf") + printf '%s\n' "$program_headers" | grep -Fq 'GNU_RELRO' || { + echo "verify-apk: $path has no RELRO segment" >&2 + exit 1 + } + load_alignment=$(printf '%s\n' "$program_headers" | + awk '$1 == "LOAD" { print $NF }' | sort -u) + [ "$load_alignment" = "0x4000" ] || { + echo "verify-apk: $path LOAD alignment is '$load_alignment', expected 0x4000" >&2 + exit 1 + } + stack=$(printf '%s\n' "$program_headers" | sed -n '/GNU_STACK/p') + if [ -z "$stack" ] || printf '%s\n' "$stack" | grep -Eq 'RWE|RWX'; then + echo "verify-apk: $path has an executable or missing stack marker" >&2 + exit 1 + fi + dynamic=$(readelf -W -d "$elf") + printf '%s\n' "$dynamic" | grep -Fq 'BIND_NOW' || { + echo "verify-apk: $path does not use immediate binding" >&2 + exit 1 + } + ! printf '%s\n' "$dynamic" | grep -Eq 'RPATH|RUNPATH|TEXTREL' || { + echo "verify-apk: $path has an unsafe dynamic-linker flag" >&2 + exit 1 + } + needed=$(printf '%s\n' "$dynamic" | sed -n 's/.*Shared library: \[\(.*\)\]/\1/p' | LC_ALL=C sort) + if [ "$lib" = libxrsh.so ]; then + expected_needed=$(printf '%s\n' libc.so libdl.so liblog.so | LC_ALL=C sort) + else + expected_needed=$(printf '%s\n' libc.so libdl.so | LC_ALL=C sort) + fi + [ "$needed" = "$expected_needed" ] || { + echo "verify-apk: $path system libraries changed:$needed" >&2 + exit 1 + } + sections=$(readelf -W -S "$elf") + ! printf '%s\n' "$sections" | grep -Eq '\.debug_|\.symtab' || { + echo "verify-apk: $path is not stripped" >&2 + exit 1 + } + if [ "$lib" = libxrsync.so ]; then + symbols=$(readelf -W -s "$elf") + printf '%s\n' "$symbols" | grep -Fq '__stack_chk_fail' || { + echo "verify-apk: $path has no stack protector" >&2 + exit 1 + } + printf '%s\n' "$symbols" | grep -Fq '__memcpy_chk' || { + echo "verify-apk: $path has no fortified libc calls" >&2 + exit 1 + } + fi + done +done +native_entries=$(printf '%s\n' "$entries" | sed -n '/^lib\//p') +unexpected= +if unexpected=$(printf '%s\n' "$native_entries" | + grep -Ev '^lib/[^/]+/(libxrsync|libxrsh)\.so$'); then + : +else + status=$? + [ "$status" -eq 1 ] || exit "$status" +fi +[ -z "$unexpected" ] || { echo "verify-apk: unexpected native files:$unexpected" >&2; exit 1; } +! printf '%s\n' "$entries" | grep -Fqx META-INF/version-control-info.textproto || { + echo "verify-apk: APK contains a VCS stamp" >&2 + exit 1 +} +for notice in assets/APACHE-2.0 assets/LICENSE assets/THIRD_PARTY; do + printf '%s\n' "$entries" | grep -Fqx "$notice" || { + echo "verify-apk: missing $notice" >&2 + exit 1 + } + asset="$tmp/$(basename "$notice")" + unzip -p "$apk" "$notice" > "$asset" + cmp "$asset" "$root/$(basename "$notice")" +done + +zipalign -c -P 16 4 "$apk" >/dev/null +badging=$(aapt dump badging "$apk") +printf '%s\n' "$badging" | grep -Fq "package: name='invalid.lena.rsend' versionCode='$APP_VERSION_CODE' versionName='$APP_VERSION'" || { + echo "verify-apk: package version does not match versions" >&2 + exit 1 +} +printf '%s\n' "$badging" | grep -Fqx "sdkVersion:'$ANDROID_MIN_SDK'" || { + echo "verify-apk: minimum SDK does not match versions" >&2 + exit 1 +} +printf '%s\n' "$badging" | grep -Fqx "targetSdkVersion:'$ANDROID_TARGET_SDK'" || { + echo "verify-apk: target SDK does not match versions" >&2 + exit 1 +} +! printf '%s\n' "$badging" | grep -Fq 'application-debuggable' || { + echo "verify-apk: release APK is debuggable" >&2 + exit 1 +} +permission_dump=$(aapt dump permissions "$apk") +permissions=$(printf '%s\n' "$permission_dump" | + sed -n "s/^uses-permission: name='\(.*\)'$/\1/p" | LC_ALL=C sort) +expected_permissions=$(cat <<EOF | LC_ALL=C sort +android.permission.ACCESS_NETWORK_STATE +android.permission.FOREGROUND_SERVICE +android.permission.FOREGROUND_SERVICE_DATA_SYNC +android.permission.INTERNET +android.permission.MANAGE_EXTERNAL_STORAGE +android.permission.POST_NOTIFICATIONS +android.permission.RECEIVE_BOOT_COMPLETED +android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS +android.permission.WAKE_LOCK +invalid.lena.rsend.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +EOF +) +[ "$permissions" = "$expected_permissions" ] || { + echo "verify-apk: permission set changed:$permissions" >&2 + exit 1 +} + +signature="$tmp/signature" +if apksigner verify --min-sdk-version "$ANDROID_MIN_SDK" --verbose "$apk" >"$signature" 2>&1; then + case "$(basename "$apk")" in + *-unsigned.apk) + echo "verify-apk: unsigned APK unexpectedly has a valid signature" >&2 + exit 1 + ;; + esac + # At API 30 apksigner reports only v3 as used, even when valid v1 and v2 + # signatures are present. API 23 makes it verify v1 for that platform and + # v2/v3 for later platforms in the same pass. + schemes="$tmp/schemes" + apksigner verify --min-sdk-version 23 --verbose "$apk" >"$schemes" 2>&1 + grep -Fq 'Verified using v1 scheme (JAR signing): true' "$schemes" + grep -Fq 'Verified using v2 scheme (APK Signature Scheme v2): true' "$schemes" + grep -Fq 'Verified using v3 scheme (APK Signature Scheme v3): true' "$schemes" + echo "verify-apk: signed APK verified (v1, v2, v3)" +else + case "$(basename "$apk")" in + *-unsigned.apk) ;; + *) + cat "$signature" >&2 + echo "verify-apk: signed APK failed verification" >&2 + exit 1 + ;; + esac + ! printf '%s\n' "$entries" | grep -Eq '^META-INF/.*\.(RSA|DSA|EC)$' || { + echo "verify-apk: unsigned APK contains a signature file" >&2 + exit 1 + } + echo "verify-apk: unsigned APK" +fi + +echo "verify-apk: ok" diff --git a/ci/verify-repro.sh b/ci/verify-repro.sh index 580ccd0..605ec77 100755 --- a/ci/verify-repro.sh +++ b/ci/verify-repro.sh @@ -1,26 +1,49 @@ #!/bin/sh -# Build the complete unsigned APK twice and compare it byte for byte. +# Build the same committed source in two different absolute paths and compare +# the unsigned APKs byte for byte. set -eu -root=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd) -a=$(mktemp -d) -b=$(mktemp -d) -trap 'rm -rf "$a" "$b"' 0 +root=$(CDPATH='' cd -- "$(dirname -- "$0")/.." && pwd) +# shellcheck source=versions +. "$root/versions" +tmp=$(mktemp -d) +trap 'rm -rf "$tmp"' 0 1 2 3 15 +a="$tmp/a/src" +b="$tmp/a-much-longer-path/b/src" -[ ! -f "$root/keystore.properties" ] || { - echo "verify-repro: keystore.properties must be absent" >&2 +git -C "$root" diff --quiet +git -C "$root" diff --cached --quiet +status=$(git -C "$root" status --porcelain --untracked-files=normal) +[ -z "$status" ] || { + echo "verify-repro: tracked and untracked source must be clean" >&2 exit 1 } -make -C "$root" app -cp "$root/app/build/outputs/apk/release/app-release-unsigned.apk" "$a/app.apk" +mkdir -p "$a" "$b" +archive="$tmp/source.tar" +git -C "$root" archive --format=tar HEAD > "$archive" +tar -xf "$archive" -C "$a" +tar -xf "$archive" -C "$b" -rm -rf "$root/app/build" "$root/app/src/main/jniLibs" "$root/rsync/work" "$root/out" -make -C "$root" app -cp "$root/app/build/outputs/apk/release/app-release-unsigned.apk" "$b/app.apk" +# Reuse a locally cached, verified source tarball when present. Otherwise the +# first build fetches it and the second consumes that exact verified file. +tarball="rsync/rsync-${RSYNC_VERSION}.tar.gz" +if [ -f "$root/$tarball" ]; then + ( cd "$root/rsync" && sha256sum -c "rsync-${RSYNC_VERSION}.tar.gz.sha256" ) + cp "$root/$tarball" "$a/$tarball" + cp "$root/$tarball" "$b/$tarball" +fi + +make -C "$a" app +if [ ! -f "$b/$tarball" ]; then + cp "$a/$tarball" "$b/$tarball" +fi +make -C "$b" app -if cmp "$a/app.apk" "$b/app.apk"; then - echo "verify-repro: APKs are bit-identical" +first="$a/app/build/outputs/apk/release/app-release-unsigned.apk" +second="$b/app/build/outputs/apk/release/app-release-unsigned.apk" +if cmp "$first" "$second"; then + echo "verify-repro: APKs are bit-identical across different paths" else echo "verify-repro: NONDETERMINISM detected" >&2 exit 1 diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml new file mode 100644 index 0000000..f2b711b --- /dev/null +++ b/gradle/verification-metadata.xml @@ -0,0 +1,2405 @@ +<?xml version="1.0" encoding="UTF-8"?> +<verification-metadata xmlns="https://schema.gradle.org/dependency-verification" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://schema.gradle.org/dependency-verification https://schema.gradle.org/dependency-verification/dependency-verification-1.3.xsd"> + <configuration> + <verify-metadata>true</verify-metadata> + <verify-signatures>false</verify-signatures> + </configuration> + <components> + <component group="androidx.activity" name="activity" version="1.8.0"> + <artifact name="activity-1.8.0.aar"> + <sha256 value="d3a676709dea04f2a8506e2ae85052fff763db526ac7f16b04de50fdd05b0720" origin="Generated by Gradle"/> + </artifact> + <artifact name="activity-1.8.0.module"> + <sha256 value="d145d8b53cfd11fd26e47e7dd45c007133ef96ea24f6715cb653c737645d1df6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.annotation" name="annotation" version="1.8.1"> + <artifact name="annotation-1.8.1.module"> + <sha256 value="e6386e85afdd865044e216575e493ed39a63a6325bd925379a21429c3941c8b5" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.annotation" name="annotation" version="1.9.1"> + <artifact name="annotation-1.9.1.module"> + <sha256 value="f204b05b728a97561718bc716242e47c629c0085a80ee74fca53d4d638bcbe3f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.annotation" name="annotation-experimental" version="1.4.1"> + <artifact name="annotation-experimental-1.4.1.aar"> + <sha256 value="6bd4c7c7476f8260cd3bdbb81183583e93fc9f790c27dea7dc314181cbf87aa0" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotation-experimental-1.4.1.module"> + <sha256 value="2ac2f7106e12f263425b4a4dfc80989447fb895675fe902d86759aa74fd12b7d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.annotation" name="annotation-jvm" version="1.8.1"> + <artifact name="annotation-jvm-1.8.1.jar"> + <sha256 value="9aab326d9492800991854360ac248f493ce7f7c3183519309b78ace9e240f6f6" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotation-jvm-1.8.1.module"> + <sha256 value="c959e3b0cdc75c15efe01605fa56aa79f033e39238e150638b8fabde6aa121a0" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.annotation" name="annotation-jvm" version="1.9.1"> + <artifact name="annotation-jvm-1.9.1.jar"> + <sha256 value="1e343917ebf27ba96fe4dc52b1cad7fd32b738fbc6355bb6cd5b3b305d7212d0" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotation-jvm-1.9.1.module"> + <sha256 value="03fb659177c8618e47425925c11bc91f384703ea26c265be9b25cd79292b511c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.appcompat" name="appcompat" version="1.7.1"> + <artifact name="appcompat-1.7.1.aar"> + <sha256 value="2ad334a323b28046e89b738c77d184cb3dcca32a551ab048851b2fda23a3ba26" origin="Generated by Gradle"/> + </artifact> + <artifact name="appcompat-1.7.1.module"> + <sha256 value="8bbf16792c81cc2dd083681783a5382f573007eee8157182932f1b454e2b7f04" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.appcompat" name="appcompat-resources" version="1.7.1"> + <artifact name="appcompat-resources-1.7.1.aar"> + <sha256 value="8e2db31224ca53b108c784da2b361959062716d416b210cfef3d5a3828306df0" origin="Generated by Gradle"/> + </artifact> + <artifact name="appcompat-resources-1.7.1.module"> + <sha256 value="163cc5e0f249433ddb0016fbd011ab8de07cf23e07e618c74644688e26cd18e8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.arch.core" name="core-common" version="2.1.0"> + <artifact name="core-common-2.1.0.pom"> + <sha256 value="83bbb3960eaabc600ac366c94cb59414e441532a1d6aa9388b0b8bfface5cf01" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.arch.core" name="core-common" version="2.2.0"> + <artifact name="core-common-2.2.0.jar"> + <sha256 value="65308a06b1c00ee186cb9e19321383f043b993813f1522c47f4a3e3303bdba41" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-common-2.2.0.module"> + <sha256 value="edf4200cfdc2d946232252c99e5dcb9c61bb909eb5450b2613d1d4fdc974b981" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.arch.core" name="core-runtime" version="2.1.0"> + <artifact name="core-runtime-2.1.0.aar"> + <sha256 value="dd77615bd3dd275afb11b62df25bae46b10b4a117cd37943af45bdcbf8755852" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-runtime-2.1.0.pom"> + <sha256 value="c0c4ed0160cd2ca18390015de8b392b697c173327c6b2c0947d4e62f6958c05d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.arch.core" name="core-runtime" version="2.2.0"> + <artifact name="core-runtime-2.2.0.aar"> + <sha256 value="a1be5e0caa2b07623862af6ae21b3ab0718123245184d0e30dea81b53f990a47" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-runtime-2.2.0.module"> + <sha256 value="a8b17513949e5db6c9601c30be19df953762dd877512f1e2cfcfae81d2440944" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.collection" name="collection" version="1.0.0"> + <artifact name="collection-1.0.0.pom"> + <sha256 value="a7913a5275ad68e555d2612ebe8c14c367b153e14ca48a1872a64899020e54ef" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.collection" name="collection" version="1.1.0"> + <artifact name="collection-1.1.0.jar"> + <sha256 value="632a0e5407461de774409352940e292a291037724207a787820c77daf7d33b72" origin="Generated by Gradle"/> + </artifact> + <artifact name="collection-1.1.0.pom"> + <sha256 value="67e9066ca4acfdc6e3cc508293c31ba0398057ff118e4f70b1e1813c9a3456d1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.collection" name="collection" version="1.4.2"> + <artifact name="collection-1.4.2.module"> + <sha256 value="0326d2cf5adbe592312810ca1f71c6c0cc30f753c43f07c7402361b788a7784c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.collection" name="collection-jvm" version="1.4.2"> + <artifact name="collection-jvm-1.4.2.jar"> + <sha256 value="984ce9bd780055eafb8a105aca3f514686bf7b1b6272ec7c645a98ce40fc7db4" origin="Generated by Gradle"/> + </artifact> + <artifact name="collection-jvm-1.4.2.module"> + <sha256 value="aad6b3536c0f0e570aa733d5141d70fa6b9b3add370f73a311ca4ca5dee25448" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.concurrent" name="concurrent-futures" version="1.0.0"> + <artifact name="concurrent-futures-1.0.0.pom"> + <sha256 value="4505b9a5e30a9418b59a9ad6702c3e4193aea6e691a3d03cf220c7640ad083e2" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.concurrent" name="concurrent-futures" version="1.1.0"> + <artifact name="concurrent-futures-1.1.0.jar"> + <sha256 value="0ce067c514a0d1049d1bebdf709e344ed3266fe9744275682937cdcb13334e9e" origin="Generated by Gradle"/> + </artifact> + <artifact name="concurrent-futures-1.1.0.module"> + <sha256 value="77639a0b051e22510bad93affcea0ebd781ef124bf9b7621a95749937bcfcdfd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.concurrent" name="concurrent-futures-ktx" version="1.1.0"> + <artifact name="concurrent-futures-ktx-1.1.0.jar"> + <sha256 value="1968bf52039e38636aa6f114cd17d7256919d1e8997417716fef9d1da1f24d85" origin="Generated by Gradle"/> + </artifact> + <artifact name="concurrent-futures-ktx-1.1.0.module"> + <sha256 value="69b79724566d49140846700690b8d2165231c577e93e66726a443e8f976bbe19" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.core" name="core" version="1.16.0"> + <artifact name="core-1.16.0.aar"> + <sha256 value="6bf03d39dbe3744acce227d3b697374c3625aae1025fbec8ad9fd7bd58bce431" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-1.16.0.module"> + <sha256 value="4ab4a3b0bc1664e3a2c60dec699af635778e15c6ee373971690948f073dd721e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.core" name="core-ktx" version="1.16.0"> + <artifact name="core-ktx-1.16.0.aar"> + <sha256 value="1766dbd82f64a12dcd359ecb6f15f3cf35db4d66d22961a7c51b2ffc6468314c" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-ktx-1.16.0.module"> + <sha256 value="89fb92ca127594cdcd11c5efb5ab0e8eb23466bc41b8df7579514d2fef6e1281" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.core" name="core-viewtree" version="1.0.0"> + <artifact name="core-viewtree-1.0.0.aar"> + <sha256 value="dc1b678d58ebcf2bfa1587be68ff826694ce3d221251b9ef30d4d4b36297e6de" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-viewtree-1.0.0.module"> + <sha256 value="11386cfa46cbbfddb6a4059f14354c00691cf65d3d63c3618818a83326ef3c7f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.cursoradapter" name="cursoradapter" version="1.0.0"> + <artifact name="cursoradapter-1.0.0.aar"> + <sha256 value="a81c8fe78815fa47df5b749deb52727ad11f9397da58b16017f4eb2c11e28564" origin="Generated by Gradle"/> + </artifact> + <artifact name="cursoradapter-1.0.0.pom"> + <sha256 value="62d95c89850af21030b19f14d5f7ecd6d8bcc9a3014c59002ec99624caac8100" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.customview" name="customview" version="1.0.0"> + <artifact name="customview-1.0.0.aar"> + <sha256 value="20e5b8f6526a34595a604f56718da81167c0b40a7a94a57daa355663f2594df2" origin="Generated by Gradle"/> + </artifact> + <artifact name="customview-1.0.0.pom"> + <sha256 value="ce9e47b87184f5bd5e139e9becd5b26476d42d78c31bf2fdedc37acb41b9ad49" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.databinding" name="databinding-common" version="8.7.3"> + <artifact name="databinding-common-8.7.3.jar"> + <sha256 value="66cab82639dac0f6c2433464c093b074d608c4bb887ec38a9b8bc4ac98126732" origin="Generated by Gradle"/> + </artifact> + <artifact name="databinding-common-8.7.3.pom"> + <sha256 value="9fe3c348a32758fec3c896eb5a57a1f63ca2b895de3d867513b671e1ee220ea4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.databinding" name="databinding-compiler-common" version="8.7.3"> + <artifact name="databinding-compiler-common-8.7.3.jar"> + <sha256 value="b2431cbbe38d0a31e001b7c34f52f69a323fc9ec573b6afe5893daced5ab3285" origin="Generated by Gradle"/> + </artifact> + <artifact name="databinding-compiler-common-8.7.3.pom"> + <sha256 value="1c7ba784aa79cdcf4e7ccb54986759804a68fa8cf8bffb32d0538fea0c1dd517" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.drawerlayout" name="drawerlayout" version="1.0.0"> + <artifact name="drawerlayout-1.0.0.aar"> + <sha256 value="9402442cdc5a43cf62fb14f8cf98c63342d4d9d9b805c8033c6cf7e802749ac1" origin="Generated by Gradle"/> + </artifact> + <artifact name="drawerlayout-1.0.0.pom"> + <sha256 value="da6733425a83f5ce850878fa7201082345fed7c668dd58550fdd19c0396c6fa4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.emoji2" name="emoji2" version="1.3.0"> + <artifact name="emoji2-1.3.0.aar"> + <sha256 value="2bf23818b23a996ddaa1b5fd5bb32129daff6bbb2dce15166e2fccdd2010b1a5" origin="Generated by Gradle"/> + </artifact> + <artifact name="emoji2-1.3.0.module"> + <sha256 value="ddc851edba65fd15a7a1bc3ad18648e2f732dd5ad8ef3602224bce0647f5b4d1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.emoji2" name="emoji2-views-helper" version="1.2.0"> + <artifact name="emoji2-views-helper-1.2.0.module"> + <sha256 value="a3a9db581abf1787b01ff15c40f059530e8e64f3937caa2d788f42eb39893268" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.emoji2" name="emoji2-views-helper" version="1.3.0"> + <artifact name="emoji2-views-helper-1.3.0.aar"> + <sha256 value="9a1351295a4f739df0efe8344adaa9afb34856c3af584d4a9afbec105a45b90b" origin="Generated by Gradle"/> + </artifact> + <artifact name="emoji2-views-helper-1.3.0.module"> + <sha256 value="09974bb5ef9780de9d56715d71171a35c78fb2e17fd865773b0c83a3acac039c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.fragment" name="fragment" version="1.5.4"> + <artifact name="fragment-1.5.4.aar"> + <sha256 value="bc3c2431dda42e94bb9511c587eae890d276e4aafe393a8da7b00169186dafde" origin="Generated by Gradle"/> + </artifact> + <artifact name="fragment-1.5.4.module"> + <sha256 value="af3260808dceb6532efc2d7215be45872c24a699dada7d77bff738ce3b85a7f0" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.interpolator" name="interpolator" version="1.0.0"> + <artifact name="interpolator-1.0.0.aar"> + <sha256 value="33193135a64fe21fa2c35eec6688f1a76e512606c0fc83dc1b689e37add7732a" origin="Generated by Gradle"/> + </artifact> + <artifact name="interpolator-1.0.0.pom"> + <sha256 value="0ddc07cc39699f48ecd9ec894b5830c0f09e22e82959294edf37217224c88b7b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-common" version="2.6.1"> + <artifact name="lifecycle-common-2.6.1.module"> + <sha256 value="93747a9145cb36bc71005f598ede32e2b1149ade5a16e62b0e4969345bc62d85" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-common" version="2.6.2"> + <artifact name="lifecycle-common-2.6.2.jar"> + <sha256 value="f34831b6c71cd844e1d35d1be49d5e79447c5ab856346531b1e8676fda7374b1" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-common-2.6.2.module"> + <sha256 value="0fa7f28f5cff8a406a4f7870b243cb0d6d7a7c20faa7a2becaff5907ae12f9cc" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-livedata" version="2.6.2"> + <artifact name="lifecycle-livedata-2.6.2.aar"> + <sha256 value="67359f609dfc2bf65da1270b23033f856064ec279f058e0a70c715f7c9003031" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-livedata-2.6.2.module"> + <sha256 value="19a287b46d1b1ffe297bee0df7dee5183aeba95600ec0de8742adeb5b67c8bab" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-livedata-core" version="2.5.1"> + <artifact name="lifecycle-livedata-core-2.5.1.module"> + <sha256 value="3f388e9e078901970c2bfcfc02fecae948de4b46be5211919ae07d012ca2980d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-livedata-core" version="2.6.1"> + <artifact name="lifecycle-livedata-core-2.6.1.module"> + <sha256 value="e9c0dc3f0ac54419c0cfed8ff5cecb82943a7c58f7a54169f0d849b2c60a3552" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-livedata-core" version="2.6.2"> + <artifact name="lifecycle-livedata-core-2.6.2.aar"> + <sha256 value="2256780a3cff4a1e57fbb3d442557c17dc363ab8af105bcaf5261d8e2d5db949" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-livedata-core-2.6.2.module"> + <sha256 value="527d0e1ac467d1f47cc20ed7c30db170217299fabb868154cf5d1765e4e4dad9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-process" version="2.4.1"> + <artifact name="lifecycle-process-2.4.1.module"> + <sha256 value="e3aae3ed04b4744ff31452e98fd299e3adfd28d3b5723661d9678b92fa09ceb4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-process" version="2.6.1"> + <artifact name="lifecycle-process-2.6.1.module"> + <sha256 value="58c9e27371ccf7a22a233f44926d348c9d07e78c41a56588a4265ff6ae76645a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-process" version="2.6.2"> + <artifact name="lifecycle-process-2.6.2.aar"> + <sha256 value="0f33b1bd017f965a6afb2e7bf3e3bd343c624061c1986dea8ba2469d04349437" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-process-2.6.2.module"> + <sha256 value="d927d41903a2ff02ba1b9fefa4c25cb58187b1ce3a054945f43ce6a29918a3f3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-runtime" version="2.6.1"> + <artifact name="lifecycle-runtime-2.6.1.module"> + <sha256 value="a4cbb01a42d07047bd8d870017c96a1b0b7b4673320e86b66317a13be2ec10c7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-runtime" version="2.6.2"> + <artifact name="lifecycle-runtime-2.6.2.aar"> + <sha256 value="4867fd5279742fba8388821930cb2affe06d81a52814e7e41e70392ea0ef887c" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-runtime-2.6.2.module"> + <sha256 value="ea0131846abe1fe9dea59ac6dfe1f0fb9d8b6d600c9eff9a1fd4ad5ee5e7cbc7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-service" version="2.6.2"> + <artifact name="lifecycle-service-2.6.2.aar"> + <sha256 value="8ace99313f0ae6af47194bcafe28f344e363f4d293f84b2b97b481735b04ded2" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-service-2.6.2.module"> + <sha256 value="2a44fc4d82853e5bcf96dac4bd0aa017d9c65d36a7ab353faf83d66ae10b62e1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-viewmodel" version="2.6.1"> + <artifact name="lifecycle-viewmodel-2.6.1.module"> + <sha256 value="2b406faea5c12f2b8df4b7a60931f846648f2e1f4d78361e198d1184f19a4797" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-viewmodel" version="2.6.2"> + <artifact name="lifecycle-viewmodel-2.6.2.aar"> + <sha256 value="e4ff4338999e1c6c9c724719f5d4aa7dd61bf6f545d5256a27a9d375df9f2330" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-viewmodel-2.6.2.module"> + <sha256 value="74e9a9ea46842a25642c91de2190ac24dcc1ea017395aae0eb250057d32699c6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-viewmodel-savedstate" version="2.6.1"> + <artifact name="lifecycle-viewmodel-savedstate-2.6.1.module"> + <sha256 value="dafb8649763d29c29cda27bc22fcdab9a9efc53c0fff9ae3de90882eabaa8944" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.lifecycle" name="lifecycle-viewmodel-savedstate" version="2.6.2"> + <artifact name="lifecycle-viewmodel-savedstate-2.6.2.aar"> + <sha256 value="7bc7dcbab17636ec076f12afe4d02671265c389457b1b366b37a0e8cb91e2da0" origin="Generated by Gradle"/> + </artifact> + <artifact name="lifecycle-viewmodel-savedstate-2.6.2.module"> + <sha256 value="79f9d92880c2fb7827ac6739eb747264245ae456f4c21f77cf39fdb6a50a76ae" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.loader" name="loader" version="1.0.0"> + <artifact name="loader-1.0.0.aar"> + <sha256 value="11f735cb3b55c458d470bed9e25254375b518b4b1bad6926783a7026db0f5025" origin="Generated by Gradle"/> + </artifact> + <artifact name="loader-1.0.0.pom"> + <sha256 value="c978d550808b47434aa49a63164110a50b55b0bcc6160a93a2e37d5110df8c5e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.profileinstaller" name="profileinstaller" version="1.3.1"> + <artifact name="profileinstaller-1.3.1.aar"> + <sha256 value="d0e402ec31f24028a1dc7eb6a0a3f9d9635c1459392cd734396343b73d673948" origin="Generated by Gradle"/> + </artifact> + <artifact name="profileinstaller-1.3.1.module"> + <sha256 value="cc7eed0ed4b669de84b852f78797a50018a4f30002e1e38aaa668af22ca5b460" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.resourceinspection" name="resourceinspection-annotation" version="1.0.1"> + <artifact name="resourceinspection-annotation-1.0.1.jar"> + <sha256 value="8cff870ec6fb31db48a52f4a792335b4bf8de07e03bd37823181526433ccd5cb" origin="Generated by Gradle"/> + </artifact> + <artifact name="resourceinspection-annotation-1.0.1.module"> + <sha256 value="352a11a8d8a4c1bd6cd2c2fefff9c94ca954d7b5202a0656959db95297f6a2b7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.room" name="room-common" version="2.7.0"> + <artifact name="room-common-2.7.0.module"> + <sha256 value="ec76c3bf85ad4589fd08c3522001affa78970eb7772107cb5e06ef60e37a74eb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.room" name="room-common-jvm" version="2.7.0"> + <artifact name="room-common-jvm-2.7.0.jar"> + <sha256 value="b2a00b88c8b8d810d07ecbdf92fdff47db7f0ea884efe5c31cda7a526c9b1ae5" origin="Generated by Gradle"/> + </artifact> + <artifact name="room-common-jvm-2.7.0.module"> + <sha256 value="b29a34cc1e3375fd92029536ab2721f520a73b1c00000739f77e48ebce069eb3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.room" name="room-runtime" version="2.7.0"> + <artifact name="room-runtime-2.7.0.module"> + <sha256 value="845bce3ed66b0d2de3e7dcd72c859e0b0efe295efe0d2b57e9fe29b617ad7964" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.room" name="room-runtime-android" version="2.7.0"> + <artifact name="room-runtime-android-2.7.0.module"> + <sha256 value="6a3dd8e44c3e2aad173c5a0fde2242d32eab7b6444a02aa6b6ee14f9ec08f44e" origin="Generated by Gradle"/> + </artifact> + <artifact name="room-runtime-release.aar"> + <sha256 value="8310b9ba101646bd78f9dd65a5c8ae8c82171bcfa8341fc646893c9e8cc9a850" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.savedstate" name="savedstate" version="1.2.1"> + <artifact name="savedstate-1.2.1.aar"> + <sha256 value="21a7d4bcf6bdb94ad7b9283801529300b4fbb8808ca4f191e0cdce6fd8e4705a" origin="Generated by Gradle"/> + </artifact> + <artifact name="savedstate-1.2.1.module"> + <sha256 value="5bb656fc760d9e3996b535160cbb4106033c9f736e9089e6ef4eb0c669785066" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.sqlite" name="sqlite" version="2.5.0"> + <artifact name="sqlite-2.5.0.module"> + <sha256 value="3699481c9fc5879f42bc6f5f22fffcb6e5d23f75862e66f007eff631d7169779" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.sqlite" name="sqlite-android" version="2.5.0"> + <artifact name="sqlite-android-2.5.0.module"> + <sha256 value="dd3ec0b45d421d00b487cedad0da58a5de355e5bccc5bf5938a1474d1a5e06c4" origin="Generated by Gradle"/> + </artifact> + <artifact name="sqlite-release.aar"> + <sha256 value="2b02be3aed8d2994021afe072185af94e29422ffe8066df88868efaca1161ef0" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.sqlite" name="sqlite-framework" version="2.5.0"> + <artifact name="sqlite-framework-2.5.0.module"> + <sha256 value="156ea5562df341a063dcbe3e84036415ee81b7c9023a58a69358887e5deb04bf" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.sqlite" name="sqlite-framework-android" version="2.5.0"> + <artifact name="sqlite-framework-android-2.5.0.module"> + <sha256 value="467a3d0d860e0bcb016ad4fc71ab7e8b3b60c1373363db95b6293ec74eb41cc0" origin="Generated by Gradle"/> + </artifact> + <artifact name="sqlite-framework-release.aar"> + <sha256 value="850de703d95b91f504774981a90fa829799cdfc9eab203692d24a0c40d7e71e7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.startup" name="startup-runtime" version="1.1.1"> + <artifact name="startup-runtime-1.1.1.aar"> + <sha256 value="e0a6329a371262fe4c450372b70fdaf33b769ef6917094723787cfce896b1dd3" origin="Generated by Gradle"/> + </artifact> + <artifact name="startup-runtime-1.1.1.module"> + <sha256 value="cfd96cf6450c6e2b697598924729ad9a0495c5a4fcf4ebee7e2f81b07e415865" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.tracing" name="tracing" version="1.2.0"> + <artifact name="tracing-1.2.0.aar"> + <sha256 value="6faa90390d1fdbf0adb9a99bf99de67b94c6c6f35aea9510593a9d17973736a2" origin="Generated by Gradle"/> + </artifact> + <artifact name="tracing-1.2.0.module"> + <sha256 value="d0d8d486b6bd33206dbf3f1a6d167e9b43c268ea63c3321c886b1543ad05ece3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.tracing" name="tracing-ktx" version="1.2.0"> + <artifact name="tracing-ktx-1.2.0.aar"> + <sha256 value="c33f9cbd931e6190ca38aa09bf8a7a8a19391d4b0fb7a7605a6b59f2d42580d1" origin="Generated by Gradle"/> + </artifact> + <artifact name="tracing-ktx-1.2.0.module"> + <sha256 value="39288b23c71a4391132aec9951f5e27f41727a2cdff69c6e4b4ece49f63e540c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.vectordrawable" name="vectordrawable" version="1.1.0"> + <artifact name="vectordrawable-1.1.0.aar"> + <sha256 value="46fd633ac01b49b7fcabc263bf098c5a8b9e9a69774d234edcca04fb02df8e26" origin="Generated by Gradle"/> + </artifact> + <artifact name="vectordrawable-1.1.0.pom"> + <sha256 value="5b0e2d5b2179e54804785cbc21ce5f473b5e1ddd55a57da482e94dcd39492bb2" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.vectordrawable" name="vectordrawable-animated" version="1.1.0"> + <artifact name="vectordrawable-animated-1.1.0.aar"> + <sha256 value="76da2c502371d9c38054df5e2b248d00da87809ed058f3363eae87ce5e2403f8" origin="Generated by Gradle"/> + </artifact> + <artifact name="vectordrawable-animated-1.1.0.pom"> + <sha256 value="276a20116b705fb75b9003ee9496c56f6fd3b32375fb232472811eba60a040bd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.versionedparcelable" name="versionedparcelable" version="1.1.1"> + <artifact name="versionedparcelable-1.1.1.aar"> + <sha256 value="57e8d93260d18d5b9007c9eed3c64ad159de90c8609ebfc74a347cbd514535a4" origin="Generated by Gradle"/> + </artifact> + <artifact name="versionedparcelable-1.1.1.pom"> + <sha256 value="5f51e65873ca612de3838fa90d2ee95b8d040efd31b9c390a19bf94d615cdb2f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.viewpager" name="viewpager" version="1.0.0"> + <artifact name="viewpager-1.0.0.aar"> + <sha256 value="147af4e14a1984010d8f155e5e19d781f03c1d70dfed02a8e0d18428b8fc8682" origin="Generated by Gradle"/> + </artifact> + <artifact name="viewpager-1.0.0.pom"> + <sha256 value="1f72f836339d03c6eb013f65075e76ca87075a577578eb4f95f74a3a5d253128" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="androidx.work" name="work-runtime" version="2.11.2"> + <artifact name="work-runtime-2.11.2.aar"> + <sha256 value="7ed55d308f72d274bad72b224d568f70ae82b968de40aea31465688fb5c08d5c" origin="Generated by Gradle"/> + </artifact> + <artifact name="work-runtime-2.11.2.module"> + <sha256 value="df053e683e573a089bb35053e16b5a688415181b510461e4db0ce083be50fd3d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android" name="signflinger" version="8.7.3"> + <artifact name="signflinger-8.7.3.jar"> + <sha256 value="c1dca2c683634ee1a294298f9c7179578af6a86e080bdc40f961915bc5c8142f" origin="Generated by Gradle"/> + </artifact> + <artifact name="signflinger-8.7.3.pom"> + <sha256 value="fc46c15cdfbcb219dad5d96ecec774022926ccff993263843beb2b532ba9da1f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android" name="zipflinger" version="8.7.3"> + <artifact name="zipflinger-8.7.3.jar"> + <sha256 value="81dd485618a509a3235929b9eb13091d884452661de6ce5a45cc38b1c555421c" origin="Generated by Gradle"/> + </artifact> + <artifact name="zipflinger-8.7.3.pom"> + <sha256 value="7a847e140903435558c84703a90a52fb5486c8b767e0c8b1ace913554b2a5b98" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.application" name="com.android.application.gradle.plugin" version="8.7.3"> + <artifact name="com.android.application.gradle.plugin-8.7.3.pom"> + <sha256 value="9458d46617319576d37fbec2ec7330061ef4b666df8538a375bc53986229b914" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.databinding" name="baseLibrary" version="8.7.3"> + <artifact name="baseLibrary-8.7.3.jar"> + <sha256 value="794113709dab21b06c262b3795e73cb708fbacae61715f34361e1af6237a1870" origin="Generated by Gradle"/> + </artifact> + <artifact name="baseLibrary-8.7.3.pom"> + <sha256 value="dedfa191214825ff3e35438dd3071930c61f17f837873eb6eb1be9c2a43dec9e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="annotations" version="31.7.3"> + <artifact name="annotations-31.7.3.jar"> + <sha256 value="b25995fa7b220d35fbb8e325df071f8291691bfbaff9734c98e38f45ec2a73ee" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotations-31.7.3.pom"> + <sha256 value="2208238d471c0ab92c6ac7a059a0a9ec835d5ae1392aaf0bb24e455b70fd6b4b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="common" version="31.7.3"> + <artifact name="common-31.7.3.jar"> + <sha256 value="abb5b2f28954ac09dcfb5d192e355af41236c8337afc08b16aa1adc0e8aebf63" origin="Generated by Gradle"/> + </artifact> + <artifact name="common-31.7.3.pom"> + <sha256 value="7d62df28d0bc98a9d6de5dd5cf9a52b587b9f4d38e46b022a98fcaa972e0c0c3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="dvlib" version="31.7.3"> + <artifact name="dvlib-31.7.3.jar"> + <sha256 value="8fd3495a2ebb50b1aacb1b4362dc4a471b87462c1eaec43691bb56f895e9c636" origin="Generated by Gradle"/> + </artifact> + <artifact name="dvlib-31.7.3.pom"> + <sha256 value="feedfc890ebbfb2302fc6f3765e7c1fd5d3f481b13742f27adb600af04737bb6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="play-sdk-proto" version="31.7.3"> + <artifact name="play-sdk-proto-31.7.3.jar"> + <sha256 value="ec265a10db9d8c94b48f05975228a0423020081ce599e0bb8cb529b3444e4394" origin="Generated by Gradle"/> + </artifact> + <artifact name="play-sdk-proto-31.7.3.pom"> + <sha256 value="4671cd7a984b797f818d8c69374c551b1d31f6c4cc068b50637b75d8d615e7f0" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="repository" version="31.7.3"> + <artifact name="repository-31.7.3.jar"> + <sha256 value="169c2e7a77aa30978879dbf8b30436671165872fcbdfdda6c735aaddb6710340" origin="Generated by Gradle"/> + </artifact> + <artifact name="repository-31.7.3.pom"> + <sha256 value="fcabf044c454c5a8c9949e9dec596ef5eaa1bef043b0e11a2c1954b298c7db04" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="sdk-common" version="31.7.3"> + <artifact name="sdk-common-31.7.3.jar"> + <sha256 value="4fa44a7d9675df13da614dee512df90ad3e4308d0addb32ead99f57ce58f675f" origin="Generated by Gradle"/> + </artifact> + <artifact name="sdk-common-31.7.3.pom"> + <sha256 value="aa2c57c1c91cf7a91105e0ce4bbdda91451d3646b67d91d156955dbcf4c8c1d3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools" name="sdklib" version="31.7.3"> + <artifact name="sdklib-31.7.3.jar"> + <sha256 value="0a3f7097a4a00b384046b783b7053a59ec0bd92256ab84baa6bd807aa02858b3" origin="Generated by Gradle"/> + </artifact> + <artifact name="sdklib-31.7.3.pom"> + <sha256 value="6bfefbed5d2ba354b0c4d1154fa6086e74810d265d7ce0f981da514b8735912e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.analytics-library" name="crash" version="31.7.3"> + <artifact name="crash-31.7.3.jar"> + <sha256 value="cca97ac29a1329bd310a3e832b6e57f46227e501aa529c00a63df217c5d7df41" origin="Generated by Gradle"/> + </artifact> + <artifact name="crash-31.7.3.pom"> + <sha256 value="63693508ee9ed532e66fee129299dafba91a0f8d5164c1974be22a5af2e6df87" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.analytics-library" name="protos" version="31.7.3"> + <artifact name="protos-31.7.3.jar"> + <sha256 value="692cf981395fe171a2f229ff70cc6cc1ddf9e2261b28eadda2269d66e5509786" origin="Generated by Gradle"/> + </artifact> + <artifact name="protos-31.7.3.pom"> + <sha256 value="3942c672ca854b8425e899651cf023f6299c624817c52098034a4e5e42264bb4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.analytics-library" name="shared" version="31.7.3"> + <artifact name="shared-31.7.3.jar"> + <sha256 value="cad7bb8f96a047a5ef7a13b1c8303414229e9d507209646ec3b63a64861e1ce1" origin="Generated by Gradle"/> + </artifact> + <artifact name="shared-31.7.3.pom"> + <sha256 value="5ea88c7af15770b495073b07efb7355965462f72549c993dfb19f3eeed9309f2" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.analytics-library" name="tracker" version="31.7.3"> + <artifact name="tracker-31.7.3.jar"> + <sha256 value="e1f954973a4733f76027a5f96fa45472dc3cc22d27b1dc93f3fe6a46a75681be" origin="Generated by Gradle"/> + </artifact> + <artifact name="tracker-31.7.3.pom"> + <sha256 value="d5a83939370a74cba67e60df6cf1a73f77302562c26b131b26291cd805ff8b2f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="aapt2" version="8.7.3-12006047"> + <artifact name="aapt2-8.7.3-12006047-linux.jar"> + <sha256 value="028916a040b58f34c9c89984e1bc48f8da6581662014f2b66391860def8b9c36" origin="Generated by Gradle"/> + </artifact> + <artifact name="aapt2-8.7.3-12006047.pom"> + <sha256 value="a8e9619d38e53a2ab28848ac5a20faac0ed751d224a8a2523664ec9987f13f0f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="aapt2-proto" version="8.7.3-12006047"> + <artifact name="aapt2-proto-8.7.3-12006047.jar"> + <sha256 value="b32f7d4b2975ac9ee7f06054c18f1fea9da045dc1a61ff436ecf543480036302" origin="Generated by Gradle"/> + </artifact> + <artifact name="aapt2-proto-8.7.3-12006047.module"> + <sha256 value="bc49547f77b28769cdca84198d2fece1d6594a2918d11cab3cf4b1bb57915e2b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="aaptcompiler" version="8.7.3"> + <artifact name="aaptcompiler-8.7.3.jar"> + <sha256 value="47062eb9e5497e0742946528fd93c3886773dd2339059315f6316d5c05d7cdaf" origin="Generated by Gradle"/> + </artifact> + <artifact name="aaptcompiler-8.7.3.module"> + <sha256 value="3df7be0fc664b16565428184c8cbb40c8f22322a233b4a8220dbbd6d399353af" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="apksig" version="8.7.3"> + <artifact name="apksig-8.7.3.jar"> + <sha256 value="c070ed1394629d74641aa0906f60b2ffa1ee77e6366a1f93437f59717b1aeb89" origin="Generated by Gradle"/> + </artifact> + <artifact name="apksig-8.7.3.pom"> + <sha256 value="a68ba26d4a6e7a35bbee2fe514660146e6c2b217146b9c1a86b5b5abad99a3c9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="apkzlib" version="8.7.3"> + <artifact name="apkzlib-8.7.3.jar"> + <sha256 value="1c1a67d6f4f186427ac166ebaa0dd867f595d5144fc925252b05ffb9d1a156b7" origin="Generated by Gradle"/> + </artifact> + <artifact name="apkzlib-8.7.3.pom"> + <sha256 value="7c3ac37a12aef4137b7316edea35e5df32a61048d8bba8dd34903bc48531a7dd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="builder" version="8.7.3"> + <artifact name="builder-8.7.3.jar"> + <sha256 value="2d0ac036986c0f256b9f327810c25c1dde6d5839956580d3283e0e0f146cb926" origin="Generated by Gradle"/> + </artifact> + <artifact name="builder-8.7.3.module"> + <sha256 value="890c58d6ab5ef7d0014daa8ddf38fd5b68aa4ad63c9bb4dd425da33ea64007b3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="builder-model" version="8.7.3"> + <artifact name="builder-model-8.7.3.jar"> + <sha256 value="0018c7dd2cab696e07f140bb1dc8c0b0ec93b6bf195e9387043010ac894db7d7" origin="Generated by Gradle"/> + </artifact> + <artifact name="builder-model-8.7.3.module"> + <sha256 value="b6147a8057863e2019475c06f40ed6f4c1c753a9334d753844d81d35f1075c7f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="builder-test-api" version="8.7.3"> + <artifact name="builder-test-api-8.7.3.jar"> + <sha256 value="778dd9c17e559401c80db08ebcab67cb773a43de6657417b4320960d296b9b40" origin="Generated by Gradle"/> + </artifact> + <artifact name="builder-test-api-8.7.3.module"> + <sha256 value="ea2ca22f106b6fcde3af6e841f6d389782a6932c22bdc8084f7bd62ddc852d95" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="bundletool" version="1.17.1"> + <artifact name="bundletool-1.17.1.jar"> + <sha256 value="392fd3b099bd82b116c8772ab8fc4139984a91108a643f8dfc9ee29648818ad8" origin="Generated by Gradle"/> + </artifact> + <artifact name="bundletool-1.17.1.pom"> + <sha256 value="7cdd337644d523fe60cfb632410c6b7fb7d982eec53270ddbedff1c26333545d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="gradle" version="8.7.3"> + <artifact name="gradle-8.7.3.jar"> + <sha256 value="abb4f9e92c9838bd9989ba05968ec892189e16e23f42adba2e063843da04070d" origin="Generated by Gradle"/> + </artifact> + <artifact name="gradle-8.7.3.module"> + <sha256 value="16f4c87b4f1b7b3b99b3dbc237dc0fe2c5a6b6a6b3143ba46e4a35b1db996a65" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="gradle-api" version="8.7.3"> + <artifact name="gradle-api-8.7.3.jar"> + <sha256 value="869adf75ea8f5be7677850f4e70f221a407e7ef28934c58b1d8d1eb21d7fba45" origin="Generated by Gradle"/> + </artifact> + <artifact name="gradle-api-8.7.3.module"> + <sha256 value="39ea4c088b295b8e234b92b7936b777650e71fbc20da87def782d9882e379d7f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="gradle-settings-api" version="8.7.3"> + <artifact name="gradle-settings-api-8.7.3.jar"> + <sha256 value="8a8711ba27e0e8b725bd4b92b16b08d0ea364133364fdd2fd9b6be05f2aa8438" origin="Generated by Gradle"/> + </artifact> + <artifact name="gradle-settings-api-8.7.3.module"> + <sha256 value="3181323998b479ffb707dc77b52a51c4d882ddd1eb45470ddf83937038ccae4f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="manifest-merger" version="31.7.3"> + <artifact name="manifest-merger-31.7.3.jar"> + <sha256 value="f1a6e56adbd557d6bf34447a62ff4680642c799c397a4bc14a81256bd961e6ab" origin="Generated by Gradle"/> + </artifact> + <artifact name="manifest-merger-31.7.3.module"> + <sha256 value="f77ce53826d03b3a8bcd940f0c3ab2c7e5dc4df404f04858fc8724b26afe761c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build" name="transform-api" version="2.0.0-deprecated-use-gradle-api"> + <artifact name="transform-api-2.0.0-deprecated-use-gradle-api.jar"> + <sha256 value="4de4a3d05e1c534c2db9e4588bf34082bb2bd232d8abb9727c430290ce225740" origin="Generated by Gradle"/> + </artifact> + <artifact name="transform-api-2.0.0-deprecated-use-gradle-api.pom"> + <sha256 value="7c62f3856e8abca1d79257925f26c12668693f5d95904056bbac88605cfd8575" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build.jetifier" name="jetifier-core" version="1.0.0-beta10"> + <artifact name="jetifier-core-1.0.0-beta10.jar"> + <sha256 value="26abb4a13927d9062169c504c9e94fe80e9ae3a4f7b5ab8875ab007536a91f5e" origin="Generated by Gradle"/> + </artifact> + <artifact name="jetifier-core-1.0.0-beta10.module"> + <sha256 value="f0917589a42d276163f10040ab5842e91883dcbdb1d48bfd1f1fcaa72c1ca7b7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.build.jetifier" name="jetifier-processor" version="1.0.0-beta10"> + <artifact name="jetifier-processor-1.0.0-beta10.jar"> + <sha256 value="c5067a7b928237a1271a5e9cb5710e9f80b4973293945bc51e3a4c864ea4bfed" origin="Generated by Gradle"/> + </artifact> + <artifact name="jetifier-processor-1.0.0-beta10.module"> + <sha256 value="36c25576b19993df360170528cc62b7246c37776d6158154a67cdf8fc2d58e13" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.ddms" name="ddmlib" version="31.7.3"> + <artifact name="ddmlib-31.7.3.jar"> + <sha256 value="0d7ef53823f6a21b807f398f0d039a5dde184b58c5589625626ca4aa3d6108ed" origin="Generated by Gradle"/> + </artifact> + <artifact name="ddmlib-31.7.3.pom"> + <sha256 value="d3e758195895bb5ba17b406be5bdfd85b934579dbc536b332d17abfd280a9a06" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.emulator" name="proto" version="31.7.3"> + <artifact name="proto-31.7.3.jar"> + <sha256 value="e0c33c9785c5d425dca6870d8cf48fba9a8a17e3aabdaa775c7957722931aec8" origin="Generated by Gradle"/> + </artifact> + <artifact name="proto-31.7.3.pom"> + <sha256 value="49f87080507ffe63c4ab0c730e3c87201489011390569c2f27be8d4f9eb79178" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.external.com-intellij" name="intellij-core" version="31.7.3"> + <artifact name="intellij-core-31.7.3.jar"> + <sha256 value="773beaca00b40d3e6924115d70e1db149f306521d24428d9152ff82f2e4b6abc" origin="Generated by Gradle"/> + </artifact> + <artifact name="intellij-core-31.7.3.pom"> + <sha256 value="fda46ade0cc1823c541c1efa3e3438e800920213ffe428d9ede53ea014e59b01" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.external.com-intellij" name="kotlin-compiler" version="31.7.3"> + <artifact name="kotlin-compiler-31.7.3.jar"> + <sha256 value="1fb8b7885e43525ebe460bd55acafa1e43785e87fb89fcf47ba8709bce47f9b0" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-compiler-31.7.3.pom"> + <sha256 value="51d50f36030139519bbd59bb478b39f60cbf411e0f11abb173632fb5547a9b77" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.external.org-jetbrains" name="uast" version="31.7.3"> + <artifact name="uast-31.7.3.jar"> + <sha256 value="46828281e96a3c52c14db267873b47121ad97758e654013cdb85e7bb6add92cf" origin="Generated by Gradle"/> + </artifact> + <artifact name="uast-31.7.3.pom"> + <sha256 value="b6ab37de5ae70b7a6b1141a564b596fe8aa42d5aec645c295e129a946be2b3d4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.layoutlib" name="layoutlib-api" version="31.7.3"> + <artifact name="layoutlib-api-31.7.3.jar"> + <sha256 value="98bae36ff051e114dd4eef5effa80fbe5e552944f4233ce892160da2cd9eeaed" origin="Generated by Gradle"/> + </artifact> + <artifact name="layoutlib-api-31.7.3.pom"> + <sha256 value="b3d95df21356ce666d73cdba6a296524c9afff39bd1ff9150fd19db589f9a612" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint" version="31.7.3"> + <artifact name="lint-31.7.3.jar"> + <sha256 value="ca0c4787b1def7b3edc10651cb20162175e908880fb1fd50ac711bd2d22e2d01" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-31.7.3.pom"> + <sha256 value="550bd46509769e91e7079362fe1c0adaa4ef8609aa2a40d763efb71c9b1080bc" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint-api" version="31.7.3"> + <artifact name="lint-api-31.7.3.jar"> + <sha256 value="94547c69afc5c8dc4c98901f0e08f707cdba0e4c4714ea657252f784629d5a5b" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-api-31.7.3.pom"> + <sha256 value="c024786774fc7c40bc7c6a872bbe3013d8c7db7a5494e88963bcc86a85eb29cb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint-checks" version="31.7.3"> + <artifact name="lint-checks-31.7.3.jar"> + <sha256 value="6c285320dadd7d590d89030227c766d752bfea1069976ef25d35a0fe15c1a6bf" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-checks-31.7.3.pom"> + <sha256 value="adf789e83491e70a45b241777805b4c282fe0941b64352f6d23b44a240ce6cec" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint-gradle" version="31.7.3"> + <artifact name="lint-gradle-31.7.3.jar"> + <sha256 value="ec188c62447a6c7cd781072577b04470d7a8c321de926a95f5c7f92342060fbe" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-gradle-31.7.3.pom"> + <sha256 value="bd462b7bc92341859686306c932f266945f868408b0db8dd241a0cacdd40499b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint-model" version="31.7.3"> + <artifact name="lint-model-31.7.3.jar"> + <sha256 value="9f4c087a199174521d1bc7b8ff05ff1484f770f4518b7fd9f6dae6c261882dbd" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-model-31.7.3.pom"> + <sha256 value="2eaa5ae36189ba929be77ca788f54599940285f25d0c142241ad8d7fdd44122a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.lint" name="lint-typedef-remover" version="31.7.3"> + <artifact name="lint-typedef-remover-31.7.3.jar"> + <sha256 value="5b4f485215ca4d86ef2319fc398b5f2251e62f5446bc5fd0e00653648ddde318" origin="Generated by Gradle"/> + </artifact> + <artifact name="lint-typedef-remover-31.7.3.pom"> + <sha256 value="12b06b1c9d9778781fe23368e723176f66f0e97641925580a2e80d2f870d2ce9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-ddmlib" version="31.7.3"> + <artifact name="android-device-provider-ddmlib-31.7.3.jar"> + <sha256 value="60cf666b057a3b3bb5063e29e226e211b8e0cc455a5625cdf898400034f59478" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-ddmlib-31.7.3.module"> + <sha256 value="8341b26c0b7a49e6ee0d45335de851ef579179aa38f3f32b6ccdf75a8f111ca8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-ddmlib-proto" version="31.7.3"> + <artifact name="android-device-provider-ddmlib-proto-31.7.3.jar"> + <sha256 value="da9f3f3dae26544c90668549584765d5854a87c425d2cfe577cd34d3600ea097" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-ddmlib-proto-31.7.3.pom"> + <sha256 value="4ca12ac8e065e4f40029da4b6682c819904464e852b53aa817cc86844279ae4a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-gradle" version="31.7.3"> + <artifact name="android-device-provider-gradle-31.7.3.jar"> + <sha256 value="481a1b33e20083e5a70824ec34006b168d070c4a851378392b24b52a018c1ab8" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-gradle-31.7.3.module"> + <sha256 value="2d7bb2165aa3a479b83f5bcf927e9171ae544fb91895805084dbc4d785fd8b29" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-gradle-proto" version="31.7.3"> + <artifact name="android-device-provider-gradle-proto-31.7.3.jar"> + <sha256 value="ad2342bb1d6f95563400a322493ea1c229cb93df3944f1261b7399f718494049" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-gradle-proto-31.7.3.pom"> + <sha256 value="f3dace1d46b265cd8f8264ca7861612073c8db6299c99abdce6babac39ff75aa" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-profile" version="31.7.3"> + <artifact name="android-device-provider-profile-31.7.3.jar"> + <sha256 value="3ac388cbd6dccc1c53f5f3b7e855d19f3f881bc426971b087553186caf4a0504" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-profile-31.7.3.module"> + <sha256 value="bccda84bd3dcfb658dbf9214b49e31dd6c9fe42816cf8cf5a807f9c08fe6cf75" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-device-provider-profile-proto" version="31.7.3"> + <artifact name="android-device-provider-profile-proto-31.7.3.jar"> + <sha256 value="10d100ced5d083714c1c68bbbb10bb375e8546f92ab0e4219c0e4a5ff298115e" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-profile-proto-31.7.3.pom"> + <sha256 value="89b175084a37cc6f3875af5685c8882374f56cb6e3bd8dc44f897f5cdc6143e9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-additional-test-output" version="31.7.3"> + <artifact name="android-test-plugin-host-additional-test-output-31.7.3.jar"> + <sha256 value="22c56d78a129269399696172f292606fa305a5fea882a4d22469b11933285ef3" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-additional-test-output-31.7.3.module"> + <sha256 value="76e628a6e8ee342cc2ccc25bc4f3ede336f901e13d22129179c27e1fefd121d6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-additional-test-output-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-additional-test-output-proto-31.7.3.jar"> + <sha256 value="38450694de6328c2c4cba696f9c04ecdd5ce6952355f68c3a22f9541d1d6546f" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-additional-test-output-proto-31.7.3.pom"> + <sha256 value="aa87561ee38800bb1192d56a3edc60465dac6dbfa73a345a8ccb14b0f4e89447" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-apk-installer" version="31.7.3"> + <artifact name="android-test-plugin-host-apk-installer-31.7.3.jar"> + <sha256 value="9d6f35cfaea2bce5167761c680c5e4498ca46dbd8b2b027158cd4b0e2c818160" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-apk-installer-31.7.3.module"> + <sha256 value="fc5ffea00417f07992b3f825fd481823582405fb9523f74c62ec9a9c7a84ad59" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-apk-installer-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-apk-installer-proto-31.7.3.jar"> + <sha256 value="543eb6c8d72b2ed7451f8e939d5d80890566f14bc26b7df9c8347506b258d7ae" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-apk-installer-proto-31.7.3.pom"> + <sha256 value="0b8d1ed982e7ab36e958a63bc975e5b31a98f6c6ba6f92fcafc22c692bb4a08f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-coverage" version="31.7.3"> + <artifact name="android-test-plugin-host-coverage-31.7.3.jar"> + <sha256 value="a8fe3c4bb51374feee9b0f4d6f3009ed60dafa669c7308da6b18633b22129855" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-coverage-31.7.3.module"> + <sha256 value="0a3b47413c14c9e82256665acdaccd32e1bcd584de563340a474f4b231f66595" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-coverage-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-coverage-proto-31.7.3.jar"> + <sha256 value="efb4d7014aaa7355246a07c2e437a2231fb252540ff1bce6872c88dc8da89d12" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-coverage-proto-31.7.3.pom"> + <sha256 value="4ddcc6b6df4c92071035ae13f980e05f9bd2e6e3b6cc053e09e70b1d5373b1b3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-device-info" version="31.7.3"> + <artifact name="android-test-plugin-host-device-info-31.7.3.jar"> + <sha256 value="aae7600061eefd5fc5217278b00db9b2fd75005ccd64f6f19cdcb2523bc8ebc5" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-device-info-31.7.3.module"> + <sha256 value="a770fb4a0fdb06f2309b12b3fa9470a8f20cd8c93914824b7cad1c96b86162ae" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-device-info-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-device-info-proto-31.7.3.jar"> + <sha256 value="4f5eccc1d47a981b3ff120e98a3de0988214108fe9dc7b068e95a6b686ada495" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-device-info-proto-31.7.3.pom"> + <sha256 value="8e8b5a5e08d5857452073a0e3395eb33ad5e021c5f1fb76c0a95e318b0dd948b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-emulator-control" version="31.7.3"> + <artifact name="android-test-plugin-host-emulator-control-31.7.3.jar"> + <sha256 value="e8879d8bc5ae580d90597f02b18abf492506414bf3fd6fd88df1b485309c644a" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-emulator-control-31.7.3.module"> + <sha256 value="e8831575ce572d9c54f9d309017584719444c954133090e430b346a7d8b173b8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-emulator-control-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-emulator-control-proto-31.7.3.jar"> + <sha256 value="aedec5ec4627d898cccdf42d8038db20eba4495753c53d1b0b378734491caf5f" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-emulator-control-proto-31.7.3.pom"> + <sha256 value="a27b4bc63f2f73f7a5b5b5775d381083fadd1d20fbfee0712a7130b88349aedd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-logcat" version="31.7.3"> + <artifact name="android-test-plugin-host-logcat-31.7.3.jar"> + <sha256 value="a66b846fe457f32fca5ec2af5c5de4a4650290017f86859481bcd2ee441892d4" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-logcat-31.7.3.module"> + <sha256 value="9eb3c05697d26b2985ff50a26ce8858cd338336e0dd28dd60d42e81eb8863550" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-logcat-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-logcat-proto-31.7.3.jar"> + <sha256 value="9129024bd8e38353bca3eb26dfd8e3628e058d57d6e9d8451ffc35f016751e63" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-logcat-proto-31.7.3.pom"> + <sha256 value="1ae54e5f93cd6e0d0f8f4fe2e41ccfeeb3f9ed996cc21ea7749420ebf9a23d83" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-retention" version="31.7.3"> + <artifact name="android-test-plugin-host-retention-31.7.3.jar"> + <sha256 value="7a944a016315af54394934c63dfcc18bd649185338ed880b8379eb0a3b571fb8" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-retention-31.7.3.module"> + <sha256 value="0c72f03ea7248b9cf3146fd78c8dc4028e7d3a7f5a118e9913571609f8fa9717" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-host-retention-proto" version="31.7.3"> + <artifact name="android-test-plugin-host-retention-proto-31.7.3.jar"> + <sha256 value="3db8ed38ef49b694caea466ae22e3b36cedc9557b3589d0e07c0cdd83294591c" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-host-retention-proto-31.7.3.pom"> + <sha256 value="d362f8f50fbd1cdee8dc92f79f2e901ab82970d5d4e09a19ae17946c56c0884c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-result-listener-gradle" version="31.7.3"> + <artifact name="android-test-plugin-result-listener-gradle-31.7.3.jar"> + <sha256 value="bf558c1e3f6f3f6d9800f965c4fe4bf39553ec255473122211de1228f5897acf" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-result-listener-gradle-31.7.3.module"> + <sha256 value="f74ded347660a21c0cfb3cd5322409ca1bfb4caaa6221ceefbe566beace5665d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="android-test-plugin-result-listener-gradle-proto" version="31.7.3"> + <artifact name="android-test-plugin-result-listener-gradle-proto-31.7.3.jar"> + <sha256 value="cbdf71bca60e14c30e7b2cf4b90f0f0a3e8c138f7cadd874b0d9c0ae082e0274" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-result-listener-gradle-proto-31.7.3.pom"> + <sha256 value="63e52f778588440bc6daa9aa31589ae9f52b3fa5b28adb510c739f0ff4b8d2bc" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.android.tools.utp" name="utp-common" version="31.7.3"> + <artifact name="utp-common-31.7.3.jar"> + <sha256 value="595702fb80bcd4373a1b9b438e5977687cba3c5fba6fa1a2936beef79b13ee9d" origin="Generated by Gradle"/> + </artifact> + <artifact name="utp-common-31.7.3.pom"> + <sha256 value="52b3ccadb9126afd7359c7c7b659922bdd056411ffa17ae9cc76fdd80205fa3f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.android" name="annotations" version="4.1.1.4"> + <artifact name="annotations-4.1.1.4.jar"> + <sha256 value="ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotations-4.1.1.4.pom"> + <sha256 value="e4bb54753c36a27a0e5d70154a5034fedd8feac4282295034bfd483d6c7aae78" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.api.grpc" name="proto-google-common-protos" version="2.17.0"> + <artifact name="proto-google-common-protos-2.17.0.jar"> + <sha256 value="4ef1fe0c327fc1521d1d753b0b1c4a875a54bd14ebded3afff0ca395320b6ea9" origin="Generated by Gradle"/> + </artifact> + <artifact name="proto-google-common-protos-2.17.0.pom"> + <sha256 value="3f028153a585c59f558b3e43a7c9809a601a8bb5e91061d6c658fffa24cb8e26" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.auto" name="auto-parent" version="6"> + <artifact name="auto-parent-6.pom"> + <sha256 value="05f740c6648165db00cf618dd56c200c4725e358e6d54f5853e0bec15734ea0a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.auto.value" name="auto-value-annotations" version="1.6.2"> + <artifact name="auto-value-annotations-1.6.2.jar"> + <sha256 value="b48b04ddba40e8ac33bf036f06fc43995fc5084bd94bdaace807ce27d3bea3fb" origin="Generated by Gradle"/> + </artifact> + <artifact name="auto-value-annotations-1.6.2.pom"> + <sha256 value="1c76cd462fc96e7aa96dc70ce82f0d54063d6df16db35c9c7d9cc0d1a99d3fff" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.auto.value" name="auto-value-parent" version="1.6.2"> + <artifact name="auto-value-parent-1.6.2.pom"> + <sha256 value="27b640c82179f5cff62009c0b72033d9bc60f60e9902a66802274b7fe37fc81c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.code.findbugs" name="jsr305" version="3.0.2"> + <artifact name="jsr305-3.0.2.jar"> + <sha256 value="766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7" origin="Generated by Gradle"/> + </artifact> + <artifact name="jsr305-3.0.2.pom"> + <sha256 value="19889dbdf1b254b2601a5ee645b8147a974644882297684c798afe5d63d78dfe" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.code.gson" name="gson" version="2.10.1"> + <artifact name="gson-2.10.1.jar"> + <sha256 value="4241c14a7727c34feea6507ec801318a3d4a90f070e4525681079fb94ee4c593" origin="Generated by Gradle"/> + </artifact> + <artifact name="gson-2.10.1.pom"> + <sha256 value="d2b115634f5c085db4b9c9ffc2658e89e231fdbfbe2242121a1cd95d4d948dd7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.code.gson" name="gson" version="2.11.0"> + <artifact name="gson-2.11.0.jar"> + <sha256 value="57928d6e5a6edeb2abd3770a8f95ba44dce45f3b23b7a9dc2b309c581552a78b" origin="Generated by Gradle"/> + </artifact> + <artifact name="gson-2.11.0.pom"> + <sha256 value="c0e547bea998888e6e25c5886a90e762272bc88b5275343dd2c05ded6ca2e360" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.code.gson" name="gson-parent" version="2.10.1"> + <artifact name="gson-parent-2.10.1.pom"> + <sha256 value="4248e0882426c615182385d6086c3ef3262e769957189e29306280b85482b833" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.code.gson" name="gson-parent" version="2.11.0"> + <artifact name="gson-parent-2.11.0.pom"> + <sha256 value="8acb1f3b72a6f026916ac0735bad9aab0293d527edb7b365327def13a9367b7a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.crypto.tink" name="tink" version="1.7.0"> + <artifact name="tink-1.7.0.jar"> + <sha256 value="88970a456a08ba4c66b01b23e5846ca1095cc14e54cb48363e5d2e15a1307308" origin="Generated by Gradle"/> + </artifact> + <artifact name="tink-1.7.0.pom"> + <sha256 value="2aee3523715f8f2cd10b2603c8d19e561ac758310b7e2c9853946d2c5e7b4bf7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.dagger" name="dagger" version="2.28.3"> + <artifact name="dagger-2.28.3.jar"> + <sha256 value="f1dd23f8ae34a8e91366723991ead0d6499d1a3e9163ce550c200b02d76a872b" origin="Generated by Gradle"/> + </artifact> + <artifact name="dagger-2.28.3.pom"> + <sha256 value="265ba959a8e13c3a06133f04b539169c1018daffd4d33f53c453ab4cb386f570" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_annotations" version="2.11.0"> + <artifact name="error_prone_annotations-2.11.0.pom"> + <sha256 value="0261ca01f2d2e9ac2ae2ece75d42c56323b385fb294b6bc943f62ef4e92ddf08" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_annotations" version="2.18.0"> + <artifact name="error_prone_annotations-2.18.0.jar"> + <sha256 value="9e6814cb71816988a4fd1b07a993a8f21bb7058d522c162b1de849e19bea54ae" origin="Generated by Gradle"/> + </artifact> + <artifact name="error_prone_annotations-2.18.0.pom"> + <sha256 value="920135797dcca5917b5a5c017642a58d340a4cd1bcd12f56f892a5663bd7bddc" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_annotations" version="2.27.0"> + <artifact name="error_prone_annotations-2.27.0.jar"> + <sha256 value="24c923372c58e35d0b9f16a028929bb9aedc77521867c274f2bd0735df5ba1f5" origin="Generated by Gradle"/> + </artifact> + <artifact name="error_prone_annotations-2.27.0.pom"> + <sha256 value="4ca5a35d61235e16549ac346d1e34551cdf0fe27e84aa57e03cbeb255ea4e5da" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_annotations" version="2.3.1"> + <artifact name="error_prone_annotations-2.3.1.pom"> + <sha256 value="3edce6b711ba368efe16b9b7aacb0214fbd648414cb9b965953a2e7ed89a819a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_parent" version="2.11.0"> + <artifact name="error_prone_parent-2.11.0.pom"> + <sha256 value="8283f0cb44c624a79d330b6fd80b8b8a715a68b3685c9a951c3de837d4540551" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_parent" version="2.18.0"> + <artifact name="error_prone_parent-2.18.0.pom"> + <sha256 value="47f22e99c7bf466391def16f8377985e5d3ba6f5bbcf65853644805513e15fad" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_parent" version="2.27.0"> + <artifact name="error_prone_parent-2.27.0.pom"> + <sha256 value="fa81829d049559df6927f9c9a6fd6bbd09f8b50e6d4736ae72c8300b6c3d7654" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.errorprone" name="error_prone_parent" version="2.3.1"> + <artifact name="error_prone_parent-2.3.1.pom"> + <sha256 value="767525d9a81129cd081968382980336327be4162b1e2251a182911daa733c123" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.flatbuffers" name="flatbuffers-java" version="1.12.0"> + <artifact name="flatbuffers-java-1.12.0.jar"> + <sha256 value="3f8c088b4dd04a9858721f2e162508c94db0dd86f961e306ee63ef2eda871bf7" origin="Generated by Gradle"/> + </artifact> + <artifact name="flatbuffers-java-1.12.0.pom"> + <sha256 value="cb226baf546260770f21e8152a6aa88ba15230d739f750df480f2a668d43e0eb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="failureaccess" version="1.0.1"> + <artifact name="failureaccess-1.0.1.jar"> + <sha256 value="a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26" origin="Generated by Gradle"/> + </artifact> + <artifact name="failureaccess-1.0.1.pom"> + <sha256 value="e96042ce78fecba0da2be964522947c87b40a291b5fd3cd672a434924103c4b9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="guava" version="32.0.1-jre"> + <artifact name="guava-32.0.1-jre.jar"> + <sha256 value="bd7fa227591fb8509677d0d1122cf95158f3b8a9f45653f58281d879f6dc48c5" origin="Generated by Gradle"/> + </artifact> + <artifact name="guava-32.0.1-jre.pom"> + <sha256 value="42c257f7f736d377b31afeeee978ab26d730cd70af60dde7662e182352e2482a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="guava-parent" version="26.0-android"> + <artifact name="guava-parent-26.0-android.pom"> + <sha256 value="f8698ab46ca996ce889c1afc8ca4f25eb8ac6b034dc898d4583742360016cc04" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="guava-parent" version="32.0.1-jre"> + <artifact name="guava-parent-32.0.1-jre.pom"> + <sha256 value="43ed0e36b353f41e5eb75cd756667c9e2df97cef06eb16066967158a1d034d2a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="listenablefuture" version="1.0"> + <artifact name="listenablefuture-1.0.jar"> + <sha256 value="e4ad7607e5c0477c6f890ef26a49cb8d1bb4dffb650bab4502afee64644e3069" origin="Generated by Gradle"/> + </artifact> + <artifact name="listenablefuture-1.0.pom"> + <sha256 value="53873caf26bc1ed8a567ea6c939ab2aaa3f47a5e32d5cade95ddf5080d23238a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.guava" name="listenablefuture" version="9999.0-empty-to-avoid-conflict-with-guava"> + <artifact name="listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"> + <sha256 value="b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99" origin="Generated by Gradle"/> + </artifact> + <artifact name="listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom"> + <sha256 value="18d4b1db26153d4e55079ce1f76bb1fe05cdb862ef9954a88cbcc4ff38b8679b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.j2objc" name="j2objc-annotations" version="1.3"> + <artifact name="j2objc-annotations-1.3.pom"> + <sha256 value="5faca824ba115bee458730337dfdb2fcea46ba2fd774d4304edbf30fa6a3f055" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.j2objc" name="j2objc-annotations" version="2.8"> + <artifact name="j2objc-annotations-2.8.jar"> + <sha256 value="f02a95fa1a5e95edb3ed859fd0fb7df709d121a35290eff8b74dce2ab7f4d6ed" origin="Generated by Gradle"/> + </artifact> + <artifact name="j2objc-annotations-2.8.pom"> + <sha256 value="37f87798b18385113c918bfa9e1276fe50735ef8fa849b5800c519d54dbf11f8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.jimfs" name="jimfs" version="1.1"> + <artifact name="jimfs-1.1.jar"> + <sha256 value="c4828e28d7c0a930af9387510b3bada7daa5c04d7c25a75c7b8b081f1c257ddd" origin="Generated by Gradle"/> + </artifact> + <artifact name="jimfs-1.1.pom"> + <sha256 value="efa86e5cd922f17b472fdfcae57234d8d4ac3e148b6250737dfce454af7a7a44" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.jimfs" name="jimfs-parent" version="1.1"> + <artifact name="jimfs-parent-1.1.pom"> + <sha256 value="c71555751e57e0ef912870e8ac9625ae782502a6a5b9c19ccf83b2a97d8b26bd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.protobuf" name="protobuf-bom" version="3.22.3"> + <artifact name="protobuf-bom-3.22.3.pom"> + <sha256 value="13a32dfb9de6fc1c3c3f7af53e4d5c77fd77d2b476bae38b74b7581cdee2e655" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.protobuf" name="protobuf-java" version="3.22.3"> + <artifact name="protobuf-java-3.22.3.jar"> + <sha256 value="59d388ea6a2d2d76ae8efff7fd4d0c60c6f0f464c3d3ab9be8e5add092975708" origin="Generated by Gradle"/> + </artifact> + <artifact name="protobuf-java-3.22.3.pom"> + <sha256 value="186ea794150f5b42aea7ec6041df373d1d8a8a831624f58a55debb6043ec7312" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.protobuf" name="protobuf-java-util" version="3.22.3"> + <artifact name="protobuf-java-util-3.22.3.jar"> + <sha256 value="c615f76879dc5c303e4df5b94a6afa39534058c7545db2d483fd95d9f63c8bfe" origin="Generated by Gradle"/> + </artifact> + <artifact name="protobuf-java-util-3.22.3.pom"> + <sha256 value="b44701b06a064865ec9b5614a93e9e28fadd7d4dfc4b460f21c819ef53dbe2d6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.protobuf" name="protobuf-parent" version="3.22.3"> + <artifact name="protobuf-parent-3.22.3.pom"> + <sha256 value="399133d7f6f57934dd76c4b18e86348f424532108daf4a01c8f820b8665f0929" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="android-device-provider-local" version="0.0.9-alpha02"> + <artifact name="android-device-provider-local-0.0.9-alpha02.jar"> + <sha256 value="446d0fca4e3711e3e37219cf888ec12b4dec3f14999ee439735385fb787e914b" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-device-provider-local-0.0.9-alpha02.pom"> + <sha256 value="afd953a41e294a6094c02620c8e9a0ebc9a743a00ff44a9db5b84f29497730ba" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="android-driver-instrumentation" version="0.0.9-alpha02"> + <artifact name="android-driver-instrumentation-0.0.9-alpha02.jar"> + <sha256 value="a34731dc23ead15144ad100efac5726a7ed82c2ec8b889504d549ae72dff5029" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-driver-instrumentation-0.0.9-alpha02.pom"> + <sha256 value="722d8c31107b71baf78f11fb10e879c7158f4681d99bacade726147368dc6ade" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="android-test-plugin" version="0.0.9-alpha02"> + <artifact name="android-test-plugin-0.0.9-alpha02.jar"> + <sha256 value="a87ed1c766c9a498cfc9280ca65d0c4853875b7ed7fa5ffd89428904eba1c0ff" origin="Generated by Gradle"/> + </artifact> + <artifact name="android-test-plugin-0.0.9-alpha02.pom"> + <sha256 value="70eb4ad0de146f958eb5d99bdff8d72b7b07a5c27ac690c421ae45617e031e54" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="core" version="0.0.9-alpha02"> + <artifact name="core-0.0.9-alpha02.jar"> + <sha256 value="fe215abd101f29fb388535592e1f14bb4cf8501da6db84422ba1945ac4e26872" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-0.0.9-alpha02.pom"> + <sha256 value="963e12fc1a9e94ca091ded5aac611284d36cf0e309ee71882813b5a81183098a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="core-proto" version="0.0.9-alpha02"> + <artifact name="core-proto-0.0.9-alpha02.jar"> + <sha256 value="6d8a8906774150f43a8fad08ca64e25c6070c39bd8a6fc13b2593f289242fe95" origin="Generated by Gradle"/> + </artifact> + <artifact name="core-proto-0.0.9-alpha02.pom"> + <sha256 value="27ce7959427a2ffee48d0feb45128a3f36cc417ed8a822afa22822c8f5a58b25" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.google.testing.platform" name="launcher" version="0.0.9-alpha02"> + <artifact name="launcher-0.0.9-alpha02.jar"> + <sha256 value="5423e8ca410fcdbcfb3286c18b8be080eaf4ee9bd796ead903e8c885ead16ec3" origin="Generated by Gradle"/> + </artifact> + <artifact name="launcher-0.0.9-alpha02.pom"> + <sha256 value="0f022a32490b76449f7404b0506dace458aeaa97c8300b34cfd5be1af1ac992b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.googlecode.juniversalchardet" name="juniversalchardet" version="1.0.3"> + <artifact name="juniversalchardet-1.0.3.jar"> + <sha256 value="757bfe906193b8b651e79dc26cd67d6b55d0770a2cdfb0381591504f779d4a76" origin="Generated by Gradle"/> + </artifact> + <artifact name="juniversalchardet-1.0.3.pom"> + <sha256 value="7846399b35c7cd642a9b3a000c3e2d62d04eb37a4547b6933cc8b18bcc2f086b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.squareup" name="javapoet" version="1.10.0"> + <artifact name="javapoet-1.10.0.jar"> + <sha256 value="20ef4b82e43ff7c652281a21313cf3b941092467add3fa73509c26f6969efdab" origin="Generated by Gradle"/> + </artifact> + <artifact name="javapoet-1.10.0.pom"> + <sha256 value="1690340a222279f2cbadf373e88826fa20f7f3cc3ec0252f36818fed32701ab1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.squareup" name="javawriter" version="2.5.0"> + <artifact name="javawriter-2.5.0.jar"> + <sha256 value="fcfb09fb0ea0aa97d3cfe7ea792398081348e468f126b3603cb3803f240197f0" origin="Generated by Gradle"/> + </artifact> + <artifact name="javawriter-2.5.0.pom"> + <sha256 value="e1abd7f1116cf5e0c59947693e2189208ec94296b2a3394c959e3511d399a7b0" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.activation" name="all" version="1.2.0"> + <artifact name="all-1.2.0.pom"> + <sha256 value="1d8518e3ac7532a104e4f7be77def37c982e530723c6bdb3d67708cce2b0c2c4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.activation" name="all" version="1.2.1"> + <artifact name="all-1.2.1.pom"> + <sha256 value="360883bf64486ecef161b8f282f6503536dd1a670d53a0a871c8fb20170e6795" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.activation" name="javax.activation" version="1.2.0"> + <artifact name="javax.activation-1.2.0.jar"> + <sha256 value="993302b16cd7056f21e779cc577d175a810bb4900ef73cd8fbf2b50f928ba9ce" origin="Generated by Gradle"/> + </artifact> + <artifact name="javax.activation-1.2.0.pom"> + <sha256 value="f879b6e945854c6900b0dbee1c8384d7ab3de7e157fd7ac84937405c416d2a5e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.istack" name="istack-commons" version="3.0.8"> + <artifact name="istack-commons-3.0.8.pom"> + <sha256 value="a0f0517e8512f0fbcc7b8295c12f6566a3d0c2d86d655639dc662ef8c0c7ebe5" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.istack" name="istack-commons-runtime" version="3.0.8"> + <artifact name="istack-commons-runtime-3.0.8.jar"> + <sha256 value="4ffabb06be454a05e4398e20c77fa2b6308d4b88dfbef7ca30a76b5b7d5505ef" origin="Generated by Gradle"/> + </artifact> + <artifact name="istack-commons-runtime-3.0.8.pom"> + <sha256 value="c2e014d34cb84ed287d064986c45c305a4124228a7337eccf6c421d14d708f1c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.bind" name="jaxb-bom-ext" version="2.3.2"> + <artifact name="jaxb-bom-ext-2.3.2.pom"> + <sha256 value="1a7dec2b27e7e055744cdb8cf1b90def4fd473acd1b804eff098139358959bd7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.bind.mvn" name="jaxb-parent" version="2.3.2"> + <artifact name="jaxb-parent-2.3.2.pom"> + <sha256 value="20dd6dc34ab7549ac40da1d82e92222ec4347ad0ec0cb118ef6c5703bed53a18" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.bind.mvn" name="jaxb-runtime-parent" version="2.3.2"> + <artifact name="jaxb-runtime-parent-2.3.2.pom"> + <sha256 value="b24f8d51f184a68bc1b86d48c0e3cfefeb21a44ede1c5f7303c58ae0488533ec" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.bind.mvn" name="jaxb-txw-parent" version="2.3.2"> + <artifact name="jaxb-txw-parent-2.3.2.pom"> + <sha256 value="b55d3efa9b158f483a30e92c78ccb600f93314733d089eba9b74436f01b314a4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.fastinfoset" name="FastInfoset" version="1.2.16"> + <artifact name="FastInfoset-1.2.16.jar"> + <sha256 value="056f3a1e144409f21ed16afc26805f58e9a21f3fce1543c42d400719d250c511" origin="Generated by Gradle"/> + </artifact> + <artifact name="FastInfoset-1.2.16.pom"> + <sha256 value="e147d258ab6e6691f70599a952400e6e6c7558f8c9c028dbe1be23178308e830" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="com.sun.xml.fastinfoset" name="fastinfoset-project" version="1.2.16"> + <artifact name="fastinfoset-project-1.2.16.pom"> + <sha256 value="90582425adc1f40b41362dafb95173931225acaa5e79620d5e6bd52f646292ba" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="commons-codec" name="commons-codec" version="1.10"> + <artifact name="commons-codec-1.10.jar"> + <sha256 value="4241dfa94e711d435f29a4604a3e2de5c4aa3c165e23bd066be6fc1fc4309569" origin="Generated by Gradle"/> + </artifact> + <artifact name="commons-codec-1.10.pom"> + <sha256 value="bdb8db7012d112a6e3ea8fdb7c510b300d99eff0819d27dddba9c43397ea4cfb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="commons-codec" name="commons-codec" version="1.11"> + <artifact name="commons-codec-1.11.jar"> + <sha256 value="e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d" origin="Generated by Gradle"/> + </artifact> + <artifact name="commons-codec-1.11.pom"> + <sha256 value="c1e7140d1dea8fdf3528bc1e3c5444ac0b541297311f45f9806c213ec3ee9a10" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="commons-io" name="commons-io" version="2.13.0"> + <artifact name="commons-io-2.13.0.jar"> + <sha256 value="671eaa39688dac2ffaa4645b3c9980ae2d0ea2471e4ae6a5da199cd15ae23666" origin="Generated by Gradle"/> + </artifact> + <artifact name="commons-io-2.13.0.pom"> + <sha256 value="db3fed64c2e1774ebfd6b1a749037732b149b9111dd7e6b985f08dda55470439" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="commons-logging" name="commons-logging" version="1.2"> + <artifact name="commons-logging-1.2.jar"> + <sha256 value="daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636" origin="Generated by Gradle"/> + </artifact> + <artifact name="commons-logging-1.2.pom"> + <sha256 value="c91ab5aa570d86f6fd07cc158ec6bc2c50080402972ee9179fe24100739fbb20" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.github.java-diff-utils" name="java-diff-utils" version="4.12"> + <artifact name="java-diff-utils-4.12.jar"> + <sha256 value="9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5" origin="Generated by Gradle"/> + </artifact> + <artifact name="java-diff-utils-4.12.pom"> + <sha256 value="c26e097edc8ec6805d1319817d23d4e496cc1015cc55dc5202112d8f6a9165fc" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.github.java-diff-utils" name="java-diff-utils-parent" version="4.12"> + <artifact name="java-diff-utils-parent-4.12.pom"> + <sha256 value="d811cf9f118cc2cad130c9427ad55c174d4c0a6f1a00ac1ae1c9bcbec5c44b19" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-api" version="1.57.0"> + <artifact name="grpc-api-1.57.0.jar"> + <sha256 value="8d2c384299f84ee8aa7f670f00e7cb26b87e231cf3091474307b32b76910f71c" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-api-1.57.0.pom"> + <sha256 value="c3f054a7c8861647d0a55825b0a949f44fcfc9c64f479083d96813814c502612" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-context" version="1.57.0"> + <artifact name="grpc-context-1.57.0.jar"> + <sha256 value="953fcacd82f531e69b76e3834f5830bad4c22ae84144e058d71dc80a7430275d" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-context-1.57.0.pom"> + <sha256 value="ab264e82bfb6ab895f6016af8b3cc44495abc81e769c30fa5a9ae0ad16be6cc6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-core" version="1.57.0"> + <artifact name="grpc-core-1.57.0.jar"> + <sha256 value="3bee48c73bc4c5b55bed79be0e484adf26ba56bebbe5798ddbf34714ef1e1cea" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-core-1.57.0.pom"> + <sha256 value="8184045f5791e00cf2cdbcf5e8846afd48f5cf7e5a4f38fb5b8303c7b2efe55b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-netty" version="1.57.0"> + <artifact name="grpc-netty-1.57.0.jar"> + <sha256 value="81d43f2d4ed18fa341bd840a3735f1403a70074a046e157e27f679b721b4c9ad" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-netty-1.57.0.pom"> + <sha256 value="ed9dfdd7b1ed4356afb3c5d1407dedb634c8602fb410479b480ad8c1139ee17b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-protobuf" version="1.57.0"> + <artifact name="grpc-protobuf-1.57.0.jar"> + <sha256 value="49f986d4eab12610fdba4a6890fca52d5eb653598916fdb863a366d5e28eecf7" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-protobuf-1.57.0.pom"> + <sha256 value="c0dcb8c67fd01daa63256f0f8b68d3707ceb7ca85cdaab7a3c6c3ff460e13dd1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-protobuf-lite" version="1.57.0"> + <artifact name="grpc-protobuf-lite-1.57.0.jar"> + <sha256 value="2c507c02d981b84a21763d44e09af4f279881dd3e25be3080f6361258607f198" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-protobuf-lite-1.57.0.pom"> + <sha256 value="b023be7008849489f652eeff75fd0fe1aa9c905f671d344e16daafddf921819d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.grpc" name="grpc-stub" version="1.57.0"> + <artifact name="grpc-stub-1.57.0.jar"> + <sha256 value="6e6ee141539fa14d9fa479f7f511605544443c7e011e78e273cf9468aa183060" origin="Generated by Gradle"/> + </artifact> + <artifact name="grpc-stub-1.57.0.pom"> + <sha256 value="6d4459487c621dff31510a88829063631e915d2dcc774d71928418116e59a88d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-buffer" version="4.1.93.Final"> + <artifact name="netty-buffer-4.1.93.Final.jar"> + <sha256 value="007c7d9c378df02d390567d0d7ddf542ffddb021b7313dbf502392113ffabb08" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-buffer-4.1.93.Final.pom"> + <sha256 value="83fbc54e2b73b86d55b208f618d1a2a156910ec146f7ece57565007b750add78" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-codec" version="4.1.93.Final"> + <artifact name="netty-codec-4.1.93.Final.jar"> + <sha256 value="990c378168dc6364c6ff569701f4f2f122fffe8998b3e189eba4c4d868ed1084" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-codec-4.1.93.Final.pom"> + <sha256 value="19cded267a070dff1abc9d029b552fad262acc1aba5c6c67b2278fca113a26ab" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-codec-http" version="4.1.93.Final"> + <artifact name="netty-codec-http-4.1.93.Final.jar"> + <sha256 value="dacf78ce78ab2d29570325db4cd2451ea589639807de95881a0fa7155a9e6b55" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-codec-http-4.1.93.Final.pom"> + <sha256 value="a3dafff071b6d284e8063d96843de2bb83cf3b889eae0cc9e0adb64a57a31b82" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-codec-http2" version="4.1.93.Final"> + <artifact name="netty-codec-http2-4.1.93.Final.jar"> + <sha256 value="d96cc09045a1341c6d47494352aa263b87b72fb1d2ea9eca161aa73820bfe8bb" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-codec-http2-4.1.93.Final.pom"> + <sha256 value="084433b42d541f7ac4b59287dd253285cfda3a3d65de72e7368bb7ec3d367271" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-codec-socks" version="4.1.93.Final"> + <artifact name="netty-codec-socks-4.1.93.Final.jar"> + <sha256 value="0ea47b5ba23ca1da8eb9146c8fc755c1271414633b1e2be2ce1df764ba0fff2a" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-codec-socks-4.1.93.Final.pom"> + <sha256 value="8cd816ed991a946041bab4cb24bd9c8e41ee0692512511f2d83cef538eb605d7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-common" version="4.1.93.Final"> + <artifact name="netty-common-4.1.93.Final.jar"> + <sha256 value="443bb316599fb16e3baeba2fb58881814d7ff0b7af176fe76e38071a6e86f8c0" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-common-4.1.93.Final.pom"> + <sha256 value="42d883b13eb38cabf549616462c5f331f5333bf0c8fc9215744f83c0180a4f6b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-handler" version="4.1.93.Final"> + <artifact name="netty-handler-4.1.93.Final.jar"> + <sha256 value="4e5f563ae14ed713381816d582f5fcfd0615aefb29203486cdfb782d8a00a02b" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-handler-4.1.93.Final.pom"> + <sha256 value="84a1525cac0b4759efaef2997a47fe19b9b5642f9273fa0fd58a2e76c7a059fe" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-handler-proxy" version="4.1.93.Final"> + <artifact name="netty-handler-proxy-4.1.93.Final.jar"> + <sha256 value="2ac5f7fbefa0b73ef783889069344d5515505a14b2303be693c5002c486df2b4" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-handler-proxy-4.1.93.Final.pom"> + <sha256 value="6dc50da0e67f597812874f81eaa45404f7d076b8199ea9088932a85c1b610245" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-parent" version="4.1.93.Final"> + <artifact name="netty-parent-4.1.93.Final.pom"> + <sha256 value="b109cb76f375fedb8a9ef75ac58063170deb7ea2ddd024f466fef6dc65cdfcee" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-resolver" version="4.1.93.Final"> + <artifact name="netty-resolver-4.1.93.Final.jar"> + <sha256 value="e59770b66e81822e5d111ac4e544d7eb0c543e0a285f52628e53941acd8ed759" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-resolver-4.1.93.Final.pom"> + <sha256 value="5b350c3c91e9e55d29cbe68cfe4ef2116cc1f0328677ebf9f615bab7082c79f4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-transport" version="4.1.93.Final"> + <artifact name="netty-transport-4.1.93.Final.jar"> + <sha256 value="a5a78019bc1cd43dbc3c7b7cdd3801912ca26d1f498fb560514fee497864ba96" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-transport-4.1.93.Final.pom"> + <sha256 value="0dd62a0eb3cb1ea001a4d0426e4f5c08df1c70d9265675bffa5c583613422d43" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.netty" name="netty-transport-native-unix-common" version="4.1.93.Final"> + <artifact name="netty-transport-native-unix-common-4.1.93.Final.jar"> + <sha256 value="774165a1c4dbaacb17f9c1ad666b3569a6a59715ae828e7c3d47703f479a53e7" origin="Generated by Gradle"/> + </artifact> + <artifact name="netty-transport-native-unix-common-4.1.93.Final.pom"> + <sha256 value="15bc25b67ff0a49272b270ef2b8cffd620057ca16cb29dff7ad5661adca2ae12" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="io.perfmark" name="perfmark-api" version="0.26.0"> + <artifact name="perfmark-api-0.26.0.jar"> + <sha256 value="b7d23e93a34537ce332708269a0d1404788a5b5e1949e82f5535fce51b3ea95b" origin="Generated by Gradle"/> + </artifact> + <artifact name="perfmark-api-0.26.0.module"> + <sha256 value="31d832332474ce48150f5bae003343319136f336afd1076a289029319e3ea97a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="jakarta.activation" name="jakarta.activation-api" version="1.2.1"> + <artifact name="jakarta.activation-api-1.2.1.jar"> + <sha256 value="8b0a0f52fa8b05c5431921a063ed866efaa41dadf2e3a7ee3e1961f2b0d9645b" origin="Generated by Gradle"/> + </artifact> + <artifact name="jakarta.activation-api-1.2.1.pom"> + <sha256 value="42585cb07dda7f23aa04eb5e0940061944a246a67ad3d16942fbe569ff03cd31" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="jakarta.xml.bind" name="jakarta.xml.bind-api" version="2.3.2"> + <artifact name="jakarta.xml.bind-api-2.3.2.jar"> + <sha256 value="69156304079bdeed9fc0ae3b39389f19b3cc4ba4443bc80508995394ead742ea" origin="Generated by Gradle"/> + </artifact> + <artifact name="jakarta.xml.bind-api-2.3.2.pom"> + <sha256 value="b537b388dbab4cc0690b9d2fb0c74124d672531734567acf6e53130eab131ad6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="jakarta.xml.bind" name="jakarta.xml.bind-api-parent" version="2.3.2"> + <artifact name="jakarta.xml.bind-api-parent-2.3.2.pom"> + <sha256 value="15a55b7d537c9f9970aead28d2af97c059f65ff6102f76bbd29f1247dd8a6dfb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="javax.annotation" name="javax.annotation-api" version="1.3.2"> + <artifact name="javax.annotation-api-1.3.2.jar"> + <sha256 value="e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b" origin="Generated by Gradle"/> + </artifact> + <artifact name="javax.annotation-api-1.3.2.pom"> + <sha256 value="46a4a251ca406e78e4853d7a2bae83282844a4992851439ee9a1f23716f06b97" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="javax.inject" name="javax.inject" version="1"> + <artifact name="javax.inject-1.jar"> + <sha256 value="91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff" origin="Generated by Gradle"/> + </artifact> + <artifact name="javax.inject-1.pom"> + <sha256 value="943e12b100627804638fa285805a0ab788a680266531e650921ebfe4621a8bfa" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="junit" name="junit" version="4.13.2"> + <artifact name="junit-4.13.2.jar"> + <sha256 value="8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3" origin="Generated by Gradle"/> + </artifact> + <artifact name="junit-4.13.2.pom"> + <sha256 value="569b6977ee4603c965c1c46c3058fa6e969291b0160eb6964dd092cd89eadd94" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.java" name="jvnet-parent" version="1"> + <artifact name="jvnet-parent-1.pom"> + <sha256 value="281440811268e65d9e266b3cc898297e214e04f09740d0386ceeb4a8923d63bf" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.java" name="jvnet-parent" version="3"> + <artifact name="jvnet-parent-3.pom"> + <sha256 value="30f5789efa39ddbf96095aada3fc1260c4561faf2f714686717cb2dc5049475a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.java.dev.jna" name="jna" version="5.6.0"> + <artifact name="jna-5.6.0.jar"> + <sha256 value="5557e235a8aa2f9766d5dc609d67948f2a8832c2d796cea9ef1d6cbe0b3b7eaf" origin="Generated by Gradle"/> + </artifact> + <artifact name="jna-5.6.0.pom"> + <sha256 value="5fe81b0255978f24616d37b10608b79498a5f3073e1d9b2038d8736a831f2608" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.java.dev.jna" name="jna-platform" version="5.6.0"> + <artifact name="jna-platform-5.6.0.jar"> + <sha256 value="9ecea8bf2b1b39963939d18b70464eef60c508fed8820f9dcaba0c35518eabf7" origin="Generated by Gradle"/> + </artifact> + <artifact name="jna-platform-5.6.0.pom"> + <sha256 value="1beb35cb4184e6c906a7e32eaebd852dd3da0a263962e99134ab945832394e28" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.sf.jopt-simple" name="jopt-simple" version="4.9"> + <artifact name="jopt-simple-4.9.jar"> + <sha256 value="26c5856e954b5f864db76f13b86919b59c6eecf9fd930b96baa8884626baf2f5" origin="Generated by Gradle"/> + </artifact> + <artifact name="jopt-simple-4.9.pom"> + <sha256 value="7af7e2d8b24b4798f04c2b7da24c9fbd1b7557b4e017c2054481565916079092" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="net.sf.kxml" name="kxml2" version="2.3.0"> + <artifact name="kxml2-2.3.0.jar"> + <sha256 value="f264dd9f79a1fde10ce5ecc53221eff24be4c9331c830b7d52f2f08a7b633de2" origin="Generated by Gradle"/> + </artifact> + <artifact name="kxml2-2.3.0.pom"> + <sha256 value="31ce606f4e9518936299bb0d27c978fa61e185fd1de7c9874fe959a53e34a685" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="13"> + <artifact name="apache-13.pom"> + <sha256 value="ff513db0361fd41237bef4784968bc15aae478d4ec0a9496f811072ccaf3841d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="15"> + <artifact name="apache-15.pom"> + <sha256 value="36c2f2f979ac67b450c0cb480e4e9baf6b40f3a681f22ba9692287d1139ad494" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="18"> + <artifact name="apache-18.pom"> + <sha256 value="7831307285fd475bbc36b20ae38e7882f11c3153b1d5930f852d44eda8f33c17" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="21"> + <artifact name="apache-21.pom"> + <sha256 value="af10c108da014f17cafac7b52b2b4b5a3a1c18265fa2af97a325d9143537b380" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="23"> + <artifact name="apache-23.pom"> + <sha256 value="bc10624e0623f36577fac5639ca2936d3240ed152fb6d8d533ab4d270543491c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache" name="apache" version="29"> + <artifact name="apache-29.pom"> + <sha256 value="3e49037174820bbd0df63420a977255886398954c2a06291fa61f727ac35b377" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-compress" version="1.21"> + <artifact name="commons-compress-1.21.jar"> + <sha256 value="6aecfd5459728a595601cfa07258d131972ffc39b492eb48bdd596577a2f244a" origin="Generated by Gradle"/> + </artifact> + <artifact name="commons-compress-1.21.pom"> + <sha256 value="675bb023c9beedde3232949979b9742a5fea946280a55a1b462d4ca7801088cd" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-parent" version="34"> + <artifact name="commons-parent-34.pom"> + <sha256 value="3a2e69d06d641d1f3b293126dc9e2e4ea6563bf8c36c87e0ab6fa4292d04b79c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-parent" version="35"> + <artifact name="commons-parent-35.pom"> + <sha256 value="7098a1ab8336ecd4c9dc21cbbcac869f82c66f64b8ac4f7988d41b4fcb44e49a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-parent" version="42"> + <artifact name="commons-parent-42.pom"> + <sha256 value="cd313494c670b483ec256972af1698b330e598f807002354eb765479f604b09c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-parent" version="52"> + <artifact name="commons-parent-52.pom"> + <sha256 value="75dbe8f34e98e4c3ff42daae4a2f9eb4cbcd3b5f1047d54460ace906dbb4502e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.commons" name="commons-parent" version="58"> + <artifact name="commons-parent-58.pom"> + <sha256 value="2d4b12e18899063abd7c75278b5fa97a3729d80878ceecb6a40d946e9c0d5590" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpclient" version="4.5.14"> + <artifact name="httpclient-4.5.14.jar"> + <sha256 value="c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6" origin="Generated by Gradle"/> + </artifact> + <artifact name="httpclient-4.5.14.pom"> + <sha256 value="f18355af4cf80a8a4ef04ebd742a47e90a7eaf080c725b2095dbc4fc5dbdefb7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpclient" version="4.5.6"> + <artifact name="httpclient-4.5.6.jar"> + <sha256 value="c03f813195e7a80e3608d0ddd8da80b21696a4c92a6a2298865bf149071551c7" origin="Generated by Gradle"/> + </artifact> + <artifact name="httpclient-4.5.6.pom"> + <sha256 value="7efc1241e73e7fbb268bfd33242d11ebd3ca07061d7d85f2962dc32a0f0b8855" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcomponents-client" version="4.5.14"> + <artifact name="httpcomponents-client-4.5.14.pom"> + <sha256 value="5bad1de4f101447659f89d089868ccbad64a68cc503d2d65410b51f6904aa061" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcomponents-client" version="4.5.6"> + <artifact name="httpcomponents-client-4.5.6.pom"> + <sha256 value="b042b41f2391edb00d35f7f4e509aed2123648c1d246ce58d0f7b905c9fe1f73" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcomponents-core" version="4.4.16"> + <artifact name="httpcomponents-core-4.4.16.pom"> + <sha256 value="f2d75a2c2d423ad18539bf21656d56f88a4091944a662fcaf159d5ae283db7f7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcomponents-parent" version="10"> + <artifact name="httpcomponents-parent-10.pom"> + <sha256 value="caaf967d94afb21753f36082c6086206bd1f48825ff596932cceba72b65d39fa" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcomponents-parent" version="11"> + <artifact name="httpcomponents-parent-11.pom"> + <sha256 value="a901f87b115c55070c7ee43efff63e20e7b02d30af2443ae292bf1f4e532d3aa" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpcore" version="4.4.16"> + <artifact name="httpcore-4.4.16.jar"> + <sha256 value="6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f" origin="Generated by Gradle"/> + </artifact> + <artifact name="httpcore-4.4.16.pom"> + <sha256 value="3cbad849b35dacfe6cec31adada2c623c026c3261141b0d26eec7e399c6cd7fa" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.apache.httpcomponents" name="httpmime" version="4.5.6"> + <artifact name="httpmime-4.5.6.jar"> + <sha256 value="0b2b1102c18d3c7e05a77214b9b7501a6f6056174ae5604e0e256776eda7553e" origin="Generated by Gradle"/> + </artifact> + <artifact name="httpmime-4.5.6.pom"> + <sha256 value="dfbfd6ffe2a784ca9817c46365aa7f8a578320b805bde39d6f55a0b09d8aa8ca" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.bitbucket.b_c" name="jose4j" version="0.9.5"> + <artifact name="jose4j-0.9.5.jar"> + <sha256 value="808fb3166f3e67dad9811c331029ab1681242fd52b735bc3f33f281167fcc72e" origin="Generated by Gradle"/> + </artifact> + <artifact name="jose4j-0.9.5.pom"> + <sha256 value="bad024180a1b469cbd94e5f2db12841bcac5443d9545607f673cfde677c1d872" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.bouncycastle" name="bcpkix-jdk18on" version="1.77"> + <artifact name="bcpkix-jdk18on-1.77.jar"> + <sha256 value="1ac7fe8efd5b2f38cdc165be5a0675734fe44808dab92707201f03a535d6f1b8" origin="Generated by Gradle"/> + </artifact> + <artifact name="bcpkix-jdk18on-1.77.pom"> + <sha256 value="8fb0926f02e2c4b2dc52e47ebb093f92f1d3bb6f149c2a5cca5e2a648d2c498d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.bouncycastle" name="bcprov-jdk18on" version="1.77"> + <artifact name="bcprov-jdk18on-1.77.jar"> + <sha256 value="dabb98c24d72c9b9f585633d1df9c5cd58d9ad373d0cd681367e6a603a495d58" origin="Generated by Gradle"/> + </artifact> + <artifact name="bcprov-jdk18on-1.77.pom"> + <sha256 value="ad1382cfcd03bcdd8be13913c02f44fd469d0a76a53cf2caef5be180adc36b23" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.bouncycastle" name="bcutil-jdk18on" version="1.77"> + <artifact name="bcutil-jdk18on-1.77.jar"> + <sha256 value="947673bcbc5a8dde2d2fa688a5b7598d0ca6e2a74a7ea30cd93f04f6b3ad68f8" origin="Generated by Gradle"/> + </artifact> + <artifact name="bcutil-jdk18on-1.77.pom"> + <sha256 value="163dfa6632ffb928a705ca83722350cacea49ccd623ce73645a5cc3b0fa9e6e8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.checkerframework" name="checker-qual" version="2.5.8"> + <artifact name="checker-qual-2.5.8.pom"> + <sha256 value="33ac6a0f1341ae96647c7d4465f4aa3d24fe97d2697bcee2ceae6fc8b5ef2c3c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.checkerframework" name="checker-qual" version="3.33.0"> + <artifact name="checker-qual-3.33.0.jar"> + <sha256 value="e316255bbfcd9fe50d165314b85abb2b33cb2a66a93c491db648e498a82c2de1" origin="Generated by Gradle"/> + </artifact> + <artifact name="checker-qual-3.33.0.module"> + <sha256 value="e8521d75625d41272c767d262a153ac163cc505b66644a2ef705fa8949ffb4e5" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.codehaus.groovy" name="groovy" version="3.0.21"> + <artifact name="groovy-3.0.21.jar"> + <sha256 value="5cf3730c0c2c15c293f7750dd7114ed27a671fc940165bbae0378a281f5b2d5e" origin="Generated by Gradle"/> + </artifact> + <artifact name="groovy-3.0.21.pom"> + <sha256 value="b8e9e8a5e2462d2fcc146ce41da96079b8931e70db3eab9d59d689863d096b17" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.codehaus.mojo" name="animal-sniffer-annotations" version="1.23"> + <artifact name="animal-sniffer-annotations-1.23.jar"> + <sha256 value="9ffe526bf43a6348e9d8b33b9cd6f580a7f5eed0cf055913007eda263de974d0" origin="Generated by Gradle"/> + </artifact> + <artifact name="animal-sniffer-annotations-1.23.pom"> + <sha256 value="5610db06b733641acbc7a0c48a80c40069db627bad043f8c7c8d7afb4f6a3d27" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.codehaus.mojo" name="animal-sniffer-parent" version="1.23"> + <artifact name="animal-sniffer-parent-1.23.pom"> + <sha256 value="6b7f054ab86a87f8e2599f35808b0989922e86b6cab13988021cd12640a4b404" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.codehaus.mojo" name="mojo-parent" version="74"> + <artifact name="mojo-parent-74.pom"> + <sha256 value="1472325a16f0b1bdabed21fa4839372964944610294ce2681b2059edc654f2b3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.eclipse.ee4j" name="project" version="1.0.2"> + <artifact name="project-1.0.2.pom"> + <sha256 value="7495a07a797e88e43c3bc1a87421bd8b1fc55e32291fa18e4e32d8031ddc873f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.eclipse.ee4j" name="project" version="1.0.5"> + <artifact name="project-1.0.5.pom"> + <sha256 value="916b4794d8d8220a59a3fdf6a64dbe794aeb23395e888b81ae36a9b5a2c591a6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.glassfish.jaxb" name="jaxb-bom" version="2.3.2"> + <artifact name="jaxb-bom-2.3.2.pom"> + <sha256 value="a1018bb54678ed9f5acb2f7a4084e385ff510201f4e9dbf5f75dc6a675f66be7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.glassfish.jaxb" name="jaxb-runtime" version="2.3.2"> + <artifact name="jaxb-runtime-2.3.2.jar"> + <sha256 value="e6e0a1e89fb6ff786279e6a0082d5cef52dc2ebe67053d041800737652b4fd1b" origin="Generated by Gradle"/> + </artifact> + <artifact name="jaxb-runtime-2.3.2.pom"> + <sha256 value="9448a5ad7fa68a6083dfbe4f42c8c83e082b9202a105401fc68e944c26548b34" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.glassfish.jaxb" name="txw2" version="2.3.2"> + <artifact name="txw2-2.3.2.jar"> + <sha256 value="4a6a9f483388d461b81aa9a28c685b8b74c0597993bf1884b04eddbca95f48fe" origin="Generated by Gradle"/> + </artifact> + <artifact name="txw2-2.3.2.pom"> + <sha256 value="a79dd002fb038183ff286a2635be2e68c103b87e0e64717d8d44bfd017fd33ea" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.hamcrest" name="hamcrest-core" version="1.3"> + <artifact name="hamcrest-core-1.3.jar"> + <sha256 value="66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9" origin="Generated by Gradle"/> + </artifact> + <artifact name="hamcrest-core-1.3.pom"> + <sha256 value="fde386a7905173a1b103de6ab820727584b50d0e32282e2797787c20a64ffa93" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.hamcrest" name="hamcrest-parent" version="1.3"> + <artifact name="hamcrest-parent-1.3.pom"> + <sha256 value="6d535f94efb663bdb682c9f27a50335394688009642ba7a9677504bc1be4129b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jdom" name="jdom2" version="2.0.6"> + <artifact name="jdom2-2.0.6.jar"> + <sha256 value="1345f11ba606d15603d6740551a8c21947c0215640770ec67271fe78bea97cf5" origin="Generated by Gradle"/> + </artifact> + <artifact name="jdom2-2.0.6.pom"> + <sha256 value="47b23a79fe336b741b82434c6e049d68165256e405e75c10921fd72fa8a65d8d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains" name="annotations" version="13.0"> + <artifact name="annotations-13.0.jar"> + <sha256 value="ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotations-13.0.pom"> + <sha256 value="965aeb2bedff369819bdde1bf7a0b3b89b8247dd69c88b86375d76163bb8c397" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains" name="annotations" version="23.0.0"> + <artifact name="annotations-23.0.0.jar"> + <sha256 value="7b0f19724082cbfcbc66e5abea2b9bc92cf08a1ea11e191933ed43801eb3cd05" origin="Generated by Gradle"/> + </artifact> + <artifact name="annotations-23.0.0.pom"> + <sha256 value="c9490f655132328df2cfbcfdf743f53fc3916d6c1d10437175a6ca6e3a67771c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.intellij.deps" name="trove4j" version="1.0.20200330"> + <artifact name="trove4j-1.0.20200330.jar"> + <sha256 value="c5fd725bffab51846bf3c77db1383c60aaaebfe1b7fe2f00d23fe1b7df0a439d" origin="Generated by Gradle"/> + </artifact> + <artifact name="trove4j-1.0.20200330.pom"> + <sha256 value="87721cbaa65a3c97d8b1ba9d207840f164c9fe38759fc9ea10ffe26565f8d3e9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="abi-tools" version="2.3.20"> + <artifact name="abi-tools-2.3.20.jar"> + <sha256 value="47d7c18113d98585065ab524cba1c470b4c369307697ca9d1c810e50b93d0bd1" origin="Generated by Gradle"/> + </artifact> + <artifact name="abi-tools-2.3.20.pom"> + <sha256 value="3e2f229d11ee2206853d300bfe5d11dddce9605a89e5c9afaf06b7223d198757" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="abi-tools-api" version="2.3.20"> + <artifact name="abi-tools-api-2.3.20.jar"> + <sha256 value="53685f5783b0490683898d755abae4d418b6e83ba06134858afddcb5945899e9" origin="Generated by Gradle"/> + </artifact> + <artifact name="abi-tools-api-2.3.20.pom"> + <sha256 value="a886c9fd7f2b9669457fec021f19dcf15f0463e0db4bdad53ae18125366cc6f9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="fus-statistics-gradle-plugin" version="2.3.20"> + <artifact name="fus-statistics-gradle-plugin-2.3.20-gradle88.jar"> + <sha256 value="a4f10a3f0ea5ddd1f555a4f706e09ea7f552b3c8522bb1006361dd306e35e76a" origin="Generated by Gradle"/> + </artifact> + <artifact name="fus-statistics-gradle-plugin-2.3.20.module"> + <sha256 value="6cd8d64b0e65377904f306f6a858dafd931c4135240f844c93d5294ee98fe839" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-build-statistics" version="2.3.20"> + <artifact name="kotlin-build-statistics-2.3.20.jar"> + <sha256 value="a6d27b3c83617652dd065606f98cf59cfbe263f8c20ebe4ebd5a6f2689eb0d4f" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-build-statistics-2.3.20.pom"> + <sha256 value="9d0a8d7ff1723d5d72d3495d55573d8d3c6b7774d61d80579714f79c24265f8f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-build-tools-api" version="2.3.20"> + <artifact name="kotlin-build-tools-api-2.3.20.jar"> + <sha256 value="22f1ab223854b949099f6b259cef541d5b58a3643df9a49c4577c63c416e843b" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-build-tools-api-2.3.20.pom"> + <sha256 value="1b5e0b2c36905dc2f55e0a4b7812ae63e3125defcf686d2c0f490f83b73d9d5e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-build-tools-compat" version="2.3.20"> + <artifact name="kotlin-build-tools-compat-2.3.20.jar"> + <sha256 value="44c307b4edd4cac51f960a8134112d664c93076700cda5e866e94d9a4296340e" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-build-tools-compat-2.3.20.pom"> + <sha256 value="ae90be25eb0476108d968ebe32a8ddf525e14088588fa05473db12815a0f1b74" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-build-tools-cri-impl" version="2.3.20"> + <artifact name="kotlin-build-tools-cri-impl-2.3.20.jar"> + <sha256 value="54eced630f28124ccfe2e464e6cacc281e528a8a50a89725721554c9693548fe" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-build-tools-cri-impl-2.3.20.pom"> + <sha256 value="e7378c6581ef5f0e2cb40e3a4cec51d2b963e625645a92b67ea09525af97c4c3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-build-tools-impl" version="2.3.20"> + <artifact name="kotlin-build-tools-impl-2.3.20.jar"> + <sha256 value="9681bc2164a8bd9f6ddf4c085cf4a836b92d27506667d73bab9f6d855336c910" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-build-tools-impl-2.3.20.pom"> + <sha256 value="82cc1abe5e63d3fe6757e797284f05db9afd7eadc3e83d1139c3a55b64d4b2d5" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-compiler-embeddable" version="2.3.20"> + <artifact name="kotlin-compiler-embeddable-2.3.20.jar"> + <sha256 value="976f989d0b5f5d80e8e8a8ad4b73da0bfc27fdd965b9fa38362b2be79ecc1337" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-compiler-embeddable-2.3.20.pom"> + <sha256 value="0c35aeee372f07514ebed37b9407b8e1181d1427755139e5cee7719ca05fe7e8" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-compiler-runner" version="2.3.20"> + <artifact name="kotlin-compiler-runner-2.3.20.jar"> + <sha256 value="c069f30a403be70c8152f8aa9f25eccba188eead54263ae02af14421437a2208" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-compiler-runner-2.3.20.pom"> + <sha256 value="8d84ea0edd60b38bcea562de5178152a2671a9a0053d670f931452b3db013228" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-daemon-client" version="2.3.20"> + <artifact name="kotlin-daemon-client-2.3.20.jar"> + <sha256 value="c71a7c1be8fbff04e0af45c9ee8cb7a61d8953bca6b8bf225a5719c725a90b44" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-daemon-client-2.3.20.pom"> + <sha256 value="9e7c8b80724117f72aace65f6be48d836db8fc39753ad951f2bb90862d7e7080" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-daemon-embeddable" version="2.3.20"> + <artifact name="kotlin-daemon-embeddable-2.3.20.jar"> + <sha256 value="8870bab840b8087c96c4ddc06088b4aedf5131c408af3674306304f1f96af3f4" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-daemon-embeddable-2.3.20.pom"> + <sha256 value="61540e5b3a32c0b11962449665924c6cd7554ea9aee0855bd8e4f5b7f610a0ab" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin" version="2.3.20"> + <artifact name="kotlin-gradle-plugin-2.3.20-gradle88.jar"> + <sha256 value="991d04f453894e0fbb840ccd552d7894847edcbbdbca90554399869785eaf5ca" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugin-2.3.20.module"> + <sha256 value="95552673b81b3578ad9b2f3aff1454b63ce806c6fd4ab7c6049231e8640ab471" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-annotations" version="2.3.20"> + <artifact name="kotlin-gradle-plugin-annotations-2.3.20.jar"> + <sha256 value="e1662ed747322b63f61d4fadd99ab78104c45eaf09c11a789862415e81c18dc4" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugin-annotations-2.3.20.pom"> + <sha256 value="68ff827fc1350d93f0d673368c06479b62b7d5e5c30658a958cf93066831e8d9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-api" version="2.3.20"> + <artifact name="kotlin-gradle-plugin-api-2.3.20-gradle88.jar"> + <sha256 value="c9bc17df69bf39907c597c1e19bec4b479c75aac75fbfd6321e3445b49712e88" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugin-api-2.3.20.module"> + <sha256 value="d3850110ff5a8eb70fed2d578b45fb07ebc44af6a291ae4cf3c79430c65128ba" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea" version="2.3.20"> + <artifact name="kotlin-gradle-plugin-idea-2.3.20.jar"> + <sha256 value="952e73948e2a20d398c26b87a6bb70ccf66418fbaf1527c3515b188ea9d4bd60" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugin-idea-2.3.20.module"> + <sha256 value="6fb5d97300a5e559afd4d9ff9ac0356c4d966f7d694b662fae169fd87421531e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea-proto" version="2.3.20"> + <artifact name="kotlin-gradle-plugin-idea-proto-2.3.20.jar"> + <sha256 value="e4289cbf9ff49407f041ddc6336e1b577a6ca4cf2be1d2a31338271c13eed3ed" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugin-idea-proto-2.3.20.pom"> + <sha256 value="f6f78739ba9fe2712e9f0c9e5bc4f5e93719ccfea95b47c2f49b250be176357e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-gradle-plugins-bom" version="2.3.20"> + <artifact name="kotlin-gradle-plugins-bom-2.3.20.module"> + <sha256 value="f82bd7645d0c3efeb4f4f65520a3c65b3e8c302b083322037a0001b87b02e990" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-gradle-plugins-bom-2.3.20.pom"> + <sha256 value="dd6b919197e132fe71ddac70f6fc5d8fae7f52777afd837b14de871b8c0a5400" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-klib-abi-reader" version="2.3.20"> + <artifact name="kotlin-klib-abi-reader-2.3.20.jar"> + <sha256 value="5c0a3aa720408dd2f63e760875dd3f67db7ed16b3f000280e0881c6070ce4f63" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-klib-abi-reader-2.3.20.pom"> + <sha256 value="ba2fbb5b93a39e51ab69e58224f18d77162a0eb6039086e5f655677bc3b7c67a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-api" version="2.3.20"> + <artifact name="kotlin-klib-commonizer-api-2.3.20.jar"> + <sha256 value="be9377485412d00f01e78299cb30be4802591c2730342b6ebdafc0894f752743" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-klib-commonizer-api-2.3.20.pom"> + <sha256 value="21b15ba5bd62d21d536bb7a0c8cb6743571fc0f43092548a4235b26f2a1d220b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-embeddable" version="2.3.20"> + <artifact name="kotlin-klib-commonizer-embeddable-2.3.20.jar"> + <sha256 value="e0579663051c6da2b23d95fc2c3a412a76279db83a7901ee86a7e3acf6e71e34" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-klib-commonizer-embeddable-2.3.20.pom"> + <sha256 value="b218657e08656c46b4d7c76376ec7a04ea06009a462d3a6470116fafdd8e3ecb" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-metadata-jvm" version="2.3.20"> + <artifact name="kotlin-metadata-jvm-2.3.20.jar"> + <sha256 value="17264b9690feed34aa8b8e7d556fb2e7951f6800462f117243fba96201014f7d" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-metadata-jvm-2.3.20.pom"> + <sha256 value="0c5ffbff9746d426b9e866ac056be28928b318a25cdc56839081ec449b29cd97" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-native-utils" version="2.3.20"> + <artifact name="kotlin-native-utils-2.3.20.jar"> + <sha256 value="4319c2764795efbdff2b78ee95455157d7af0b9155698baa1ba52a6abe3abf2d" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-native-utils-2.3.20.pom"> + <sha256 value="2c0a7e0035620885d437e7f126274475ba58aa2242fb5dbbf43f91f20cafa708" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-reflect" version="1.6.10"> + <artifact name="kotlin-reflect-1.6.10.jar"> + <sha256 value="3277ac102ae17aad10a55abec75ff5696c8d109790396434b496e75087854203" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-reflect-1.6.10.pom"> + <sha256 value="57905524274a00ae028aaccc27283f6bc5925a934a046c1cc5d06c8ee4d6d5a9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-reflect" version="1.9.20"> + <artifact name="kotlin-reflect-1.9.20.jar"> + <sha256 value="49b66f9a89d50fd2954c2e8aeac80e4f488b0a09322a25efad6261576713dc0f" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-reflect-1.9.20.pom"> + <sha256 value="942b5e8602d317ec13652f1c0222052bb90817f28cf6fe9d47112f09b3e8e67d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-script-runtime" version="2.3.20"> + <artifact name="kotlin-script-runtime-2.3.20.jar"> + <sha256 value="6fcdb7da6e65cf8cc43e5aabab94bdcc48825e7933686f8a1bf694eb88f8e00e" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-script-runtime-2.3.20.pom"> + <sha256 value="66099676703a081fd9ac43139665883e5c145020b640759de0539d8916ff247f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-stdlib" version="1.9.20"> + <artifact name="kotlin-stdlib-1.9.20.jar"> + <sha256 value="28a35bcdff46d864f80f346a617e486284b208d17378c41900dfb1de95a90e6c" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-stdlib-1.9.20.module"> + <sha256 value="dccaa5d315470fab3920502886bbb85f2da6c86102c65d9c04410544eedb2019" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-stdlib" version="2.3.20"> + <artifact name="kotlin-stdlib-2.3.20.jar"> + <sha256 value="0ae12504a5040ebaf37703908483420d1a5624dd1d93f357665f8c77c848a01e" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-stdlib-2.3.20.module"> + <sha256 value="f4eb344fc4d1e3a28ae16c086ec3e42f52373b466d4308182fb386e392c0efa3" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-stdlib-common" version="1.9.20"> + <artifact name="kotlin-stdlib-common-1.9.20.module"> + <sha256 value="858828bc5191b9e602affa14e01d66489dafb08c4c18d2faee3cbed7ba7d9992" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk7" version="1.9.20"> + <artifact name="kotlin-stdlib-jdk7-1.9.20.jar"> + <sha256 value="c5451d67a27f33afd09913c67e1ceba3897ae70884b24ef0ff71157e55b60865" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-stdlib-jdk7-1.9.20.pom"> + <sha256 value="012e1c55ed6ade417bcb824112ebea682ad625dfbee16085c379ccfa14faf033" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk8" version="1.9.20"> + <artifact name="kotlin-stdlib-jdk8-1.9.20.jar"> + <sha256 value="f833fcc94f0bb1c31b9e78bd4bda7ea23f579ff3408ae1a94e2eb5747086a2ab" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-stdlib-jdk8-1.9.20.pom"> + <sha256 value="a3b07deb091f2aed59d6559884f44f99cff5df9b9fa35a24bcd6b8b069cff48d" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-tooling-core" version="2.3.20"> + <artifact name="kotlin-tooling-core-2.3.20.jar"> + <sha256 value="367142781299bc0f9120c1deec0e62934a1af9ea7f01aaa9c5a5354dc5d8d7d9" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-tooling-core-2.3.20.pom"> + <sha256 value="47e3aefd24b5be62d807b6cbcd79c55b83f94b55cfe18efdc6e33ce11bf190e4" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-util-io" version="2.3.20"> + <artifact name="kotlin-util-io-2.3.20.jar"> + <sha256 value="0e76e7471e91c53ea68d2d24ef1f29fb592ac5fbb0d1d10faa916430eff3daca" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-util-io-2.3.20.pom"> + <sha256 value="95c28a828fc1f1e59e65638247a64f766d81d8b59f6d8debef2d18a0cc321f89" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-util-klib" version="2.3.20"> + <artifact name="kotlin-util-klib-2.3.20.jar"> + <sha256 value="9562b8d3b7a04beba2b14c05671e713859ea54bbc0a2107e65b2bcf273fa8448" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-util-klib-2.3.20.pom"> + <sha256 value="5a584c3cc2ba3b41d1e5cd7e7a2083576c1b8c397a79bb8163676d8ef7b0ea17" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin" name="kotlin-util-klib-metadata" version="2.3.20"> + <artifact name="kotlin-util-klib-metadata-2.3.20.jar"> + <sha256 value="a8994e0bca6846dfb19f458c4cc15d7b13779ca1b0d9f34880b5ff2c2a2b73b3" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlin-util-klib-metadata-2.3.20.pom"> + <sha256 value="8f10291071aefabbd8e66ff9af7743a23881d69c6aaf28e13616cc0e95bd17b7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlin.android" name="org.jetbrains.kotlin.android.gradle.plugin" version="2.3.20"> + <artifact name="org.jetbrains.kotlin.android.gradle.plugin-2.3.20.pom"> + <sha256 value="d3259b9b78d33f6cff6ff2ccdd2c6f51574c2f566171d02e169d022238f0119f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-android" version="1.9.0"> + <artifact name="kotlinx-coroutines-android-1.9.0.jar"> + <sha256 value="bd783acd2f9738845d58380f46f45b5cde95d0cb03027d56725338b26bfc4d72" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlinx-coroutines-android-1.9.0.module"> + <sha256 value="7df1e04d77f0cc411890d999a9449b0e3bcd4f159a46c3060b110204ca607d43" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-bom" version="1.6.4"> + <artifact name="kotlinx-coroutines-bom-1.6.4.pom"> + <sha256 value="ab2614855fba66aa8a42514dbe3d5a884315ffe1ed63f5932e710a8006245ce1" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-bom" version="1.8.0"> + <artifact name="kotlinx-coroutines-bom-1.8.0.pom"> + <sha256 value="1239e9dbe1397cd5971342956b2511bc3ace7b641842e4372a088dcfa8b9ad55" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-bom" version="1.9.0"> + <artifact name="kotlinx-coroutines-bom-1.9.0.pom"> + <sha256 value="bea5511e9001f2c593ab5080df131b219ab5e2085cc5979ce583eacd4946fd78" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core" version="1.3.4"> + <artifact name="kotlinx-coroutines-core-1.3.4.pom"> + <sha256 value="c7cc337927e05dfe4437717eb2ca7c3c9a58f10efecb93d387c3b806829adee6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core" version="1.6.4"> + <artifact name="kotlinx-coroutines-core-1.6.4.module"> + <sha256 value="a6eed4a1835588e7c84fcd7b0475fce9a7b3444c870ebc797b88ba64ccf4576b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core" version="1.9.0"> + <artifact name="kotlinx-coroutines-core-1.9.0.module"> + <sha256 value="ad534034a953b4e12cbeeb874c66adf8b1ca14df15fe0d2e6547aa34e86dfeca" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core-jvm" version="1.6.4"> + <artifact name="kotlinx-coroutines-core-jvm-1.6.4.jar"> + <sha256 value="c24c8bb27bb320c4a93871501a7e5e0c61607638907b197aef675513d4c820be" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlinx-coroutines-core-jvm-1.6.4.module"> + <sha256 value="0d94c8a41483e7c2707ebd693e1b1357a84152998ce85550ebbc54ca4321a3a7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core-jvm" version="1.8.0"> + <artifact name="kotlinx-coroutines-core-jvm-1.8.0.jar"> + <sha256 value="9860906a1937490bf5f3b06d2f0e10ef451e65b95b269f22daf68a3d1f5065c5" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlinx-coroutines-core-jvm-1.8.0.module"> + <sha256 value="ff6a22da40040938751db0ae21177e76517dbf126a76796f5426727bf76c1228" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core-jvm" version="1.9.0"> + <artifact name="kotlinx-coroutines-core-jvm-1.9.0.jar"> + <sha256 value="ad89c2892235e670f222d819cb3d81188143cb19a05b59df9889ae4269f5c70a" origin="Generated by Gradle"/> + </artifact> + <artifact name="kotlinx-coroutines-core-jvm-1.9.0.module"> + <sha256 value="b321a899e40d3ce345707aa2cfda9983ad0dcc69fea74a9b8bf906a16c1cf8a9" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.json" name="json" version="20240303"> + <artifact name="json-20240303.jar"> + <sha256 value="3cf6cd6892e32e2b4c1c39e0f52f5248a2f5b37646fdfbb79a66b46b618414ed" origin="Generated by Gradle"/> + </artifact> + <artifact name="json-20240303.pom"> + <sha256 value="994baf5d89bf4caa5ce968e4c4eab135c8f9783ecf4d2b7b0e9d1c8a4ddf1e4f" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jspecify" name="jspecify" version="1.0.0"> + <artifact name="jspecify-1.0.0.jar"> + <sha256 value="1fad6e6be7557781e4d33729d49ae1cdc8fdda6fe477bb0cc68ce351eafdfbab" origin="Generated by Gradle"/> + </artifact> + <artifact name="jspecify-1.0.0.module"> + <sha256 value="d307ca77a54e18ac1ef1aaed4e5bbe014bd2f49f29e1d2f813e47c278283195b" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.junit" name="junit-bom" version="5.9.2"> + <artifact name="junit-bom-5.9.2.module"> + <sha256 value="ab137ba5a8e32c9b066bf9126a1c76dd5614b724ba5c0b02549772b5e9f4cf1f" origin="Generated by Gradle"/> + </artifact> + <artifact name="junit-bom-5.9.2.pom"> + <sha256 value="2ed07d65845131f5336a86476c9a4056b59d0b58b9815ab3679bb0f36f35f705" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.junit" name="junit-bom" version="5.9.3"> + <artifact name="junit-bom-5.9.3.module"> + <sha256 value="b401fd25901e582a524aa5343c4b39e28bc56e24961c1069bf2b4bbfcee46b93" origin="Generated by Gradle"/> + </artifact> + <artifact name="junit-bom-5.9.3.pom"> + <sha256 value="4d0329cd9e72f2420e5ca15724cbfe6ffa6e5fd2888361516271190fdc342ed7" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.jvnet.staxex" name="stax-ex" version="1.8.1"> + <artifact name="stax-ex-1.8.1.jar"> + <sha256 value="20522549056e9e50aa35ef0b445a2e47a53d06be0b0a9467d704e2483ffb049a" origin="Generated by Gradle"/> + </artifact> + <artifact name="stax-ex-1.8.1.pom"> + <sha256 value="8fc84f36ce6da6ce8c893b6538199a7f69a69a0706d9b17a3ee6a3a09452eed6" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2" name="ow2" version="1.5.1"> + <artifact name="ow2-1.5.1.pom"> + <sha256 value="321ddbb7ee6fe4f53dea6b4cd6db74154d6bfa42391c1f763b361b9f485acf05" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2.asm" name="asm" version="9.6"> + <artifact name="asm-9.6.jar"> + <sha256 value="3c6fac2424db3d4a853b669f4e3d1d9c3c552235e19a319673f887083c2303a1" origin="Generated by Gradle"/> + </artifact> + <artifact name="asm-9.6.pom"> + <sha256 value="92eee24bc3c843e4881d46c1dd6505471ee3142facfb466b428cfea5a56c6b60" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2.asm" name="asm-analysis" version="9.6"> + <artifact name="asm-analysis-9.6.jar"> + <sha256 value="d92832d7c37edc07c60e2559ac6118b31d642e337a6671edcb7ba9fae68edbbb" origin="Generated by Gradle"/> + </artifact> + <artifact name="asm-analysis-9.6.pom"> + <sha256 value="fa3f995021cff4f4139306e6cffeeea07539106440d29b19cc06a7a636a13850" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2.asm" name="asm-commons" version="9.6"> + <artifact name="asm-commons-9.6.jar"> + <sha256 value="7aefd0d5c0901701c69f7513feda765fb6be33af2ce7aa17c5781fc87657c511" origin="Generated by Gradle"/> + </artifact> + <artifact name="asm-commons-9.6.pom"> + <sha256 value="a98ae4895334baf8ff86bd66516210dbd9a03f1a6e15e47dda82afcf6b53d77c" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2.asm" name="asm-tree" version="9.6"> + <artifact name="asm-tree-9.6.jar"> + <sha256 value="c43ecf17b539c777e15da7b5b86553b377e2d39a683de6285567d5283888e7ef" origin="Generated by Gradle"/> + </artifact> + <artifact name="asm-tree-9.6.pom"> + <sha256 value="1bcb481d7fc16b955bb60ca07c8cfa2424bcee78bdc405bba31c7d6f5dc2d113" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.ow2.asm" name="asm-util" version="9.6"> + <artifact name="asm-util-9.6.jar"> + <sha256 value="c635a7402f4aa9bf66b2f4230cea62025a0fe1cd63e8729adefc9b1994fac4c3" origin="Generated by Gradle"/> + </artifact> + <artifact name="asm-util-9.6.pom"> + <sha256 value="52c5c1d357404779d1a99b49a85bf9d3a085025b8516cb73dbef77c8ae34005e" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.slf4j" name="slf4j-api" version="1.7.30"> + <artifact name="slf4j-api-1.7.30.jar"> + <sha256 value="cdba07964d1bb40a0761485c6b1e8c2f8fd9eb1d19c53928ac0d7f9510105c57" origin="Generated by Gradle"/> + </artifact> + <artifact name="slf4j-api-1.7.30.pom"> + <sha256 value="7e0747751e9b67e19dcb5206f04ea22cc03d250c422426402eadd03513f2c314" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.slf4j" name="slf4j-parent" version="1.7.30"> + <artifact name="slf4j-parent-1.7.30.pom"> + <sha256 value="11647956e48a0c5bfb3ac33f6da7e83f341002b6857efd335a505b687be34b75" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.sonatype.oss" name="oss-parent" version="7"> + <artifact name="oss-parent-7.pom"> + <sha256 value="b51f8867c92b6a722499557fc3a1fdea77bdf9ef574722fe90ce436a29559454" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.sonatype.oss" name="oss-parent" version="9"> + <artifact name="oss-parent-9.pom"> + <sha256 value="fb40265f982548212ff82e362e59732b2187ec6f0d80182885c14ef1f982827a" origin="Generated by Gradle"/> + </artifact> + </component> + <component group="org.tensorflow" name="tensorflow-lite-metadata" version="0.1.0-rc2"> + <artifact name="tensorflow-lite-metadata-0.1.0-rc2.jar"> + <sha256 value="2c2a264f842498c36d34d2a7b91342490d9a962862c85baac1acd54ec2fca6d9" origin="Generated by Gradle"/> + </artifact> + <artifact name="tensorflow-lite-metadata-0.1.0-rc2.pom"> + <sha256 value="9a4f5e5674366c156c90391662f03ed7c5971d6aa63832df74a271da6ff82e96" origin="Generated by Gradle"/> + </artifact> + </component> + </components> +</verification-metadata> diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 09523c0..77f5d0b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME @@ -3,6 +3,11 @@ # Sourced by the build scripts (POSIX sh: . ./versions) and mirrored by the # F-Droid recipe. Keep builds reproducible: bump deliberately, never float. +# App release identity. Bump both together; the release's changelog file is +# fastlane/metadata/android/en-US/changelogs/${APP_VERSION_CODE}.txt. +APP_VERSION=0.1.3 +APP_VERSION_CODE=4 + # Native rsync, built from source via the Android NDK. The tarball sha256 lives # in rsync/rsync-${RSYNC_VERSION}.tar.gz.sha256, which the build verifies. RSYNC_VERSION=3.5.0 @@ -11,31 +16,37 @@ RSYNC_URL=https://download.samba.org/pub/rsync/src/rsync-${RSYNC_VERSION}.tar.gz # Go SSH transport (rsh). Matches the go.mod go directive. GO_VERSION=1.26.6 GO_SHA256=708effb774be8237570d0add163225abbdfaf4fca28b2611df167beba4feef89 +GOVULNCHECK_VERSION=1.6.0 X_CRYPTO_VERSION=0.54.0 X_SYS_VERSION=0.47.0 # Android toolchain. ANDROID_NDK is the sdkmanager package revision. -# JDK_RELEASE is the exact Temurin GA build; JDK_VERSION its major. +# JDK_RELEASE is the exact Temurin GA build. ANDROID_NDK=27.2.12479018 -ANDROID_CMDLINE_TOOLS=11076708 +# Keep this portable Java SDK manager release. The tested newer native Android +# CLI does not run on supported musl hosts. +ANDROID_CMDLINE_TOOLS=13114758 ANDROID_BUILD_TOOLS=35.0.0 ANDROID_PLATFORM=35 +ANDROID_PLATFORM_REVISION=2 +ANDROID_PLATFORM_JAR_SHA256=4566663c3876e022b4fa4ced8c8697c4ab1688267f090114fd92d027b32e619b ANDROID_MIN_SDK=30 ANDROID_TARGET_SDK=35 AGP_VERSION=8.7.3 GRADLE_VERSION=8.9 -KOTLIN_VERSION=2.0.21 -ANDROIDX_CORE_VERSION=1.13.1 -ANDROIDX_APPCOMPAT_VERSION=1.7.0 -ANDROIDX_WORK_VERSION=2.10.0 +KOTLIN_VERSION=2.3.20 +ANDROIDX_CORE_VERSION=1.16.0 +ANDROIDX_APPCOMPAT_VERSION=1.7.1 +ANDROIDX_WORK_VERSION=2.11.2 JUNIT_VERSION=4.13.2 JSON_VERSION=20240303 -JDK_VERSION=17 JDK_RELEASE=17.0.19+10 -JDK_SHA256=d8afc263758141a66e0e3aafc321e783f7016696f4eaea067d340a269037d331 -ANDROID_CMDLINE_TOOLS_SHA256=2d2d50857e4eb553af5a6dc3ad507a17adf43d115264b1afc116f95c92e5e258 +JDK_GLIBC_SHA256=d8afc263758141a66e0e3aafc321e783f7016696f4eaea067d340a269037d331 +JDK_MUSL_SHA256=960b4090b75a887bb21a915a294bee3a97cd11876967c95e5bd29d9ec4812e17 +ANDROID_CMDLINE_TOOLS_SHA256=7ec965280a073311c339e571cd5de778b9975026cfcbe79f2b1cdcb1e15317ee GRADLE_SHA256=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab -# Native ABIs to build. arm64-v8a ships on the phone; x86_64 is for host and -# emulator tests. Add armeabi-v7a to support 32-bit phones. +# Native ABIs to build, and to ship in the APK. arm64-v8a is every current +# phone; x86_64 covers x86 Android devices and the emulator. Add armeabi-v7a to +# support 32-bit phones. Keep this in step with abiFilters in app/build.gradle. ABIS="arm64-v8a x86_64" |