diff --git a/commons/src/main/kotlin/org/fossify/commons/activities/LicenseActivity.kt b/commons/src/main/kotlin/org/fossify/commons/activities/LicenseActivity.kt
index fba3149247..57ccd293dc 100644
--- a/commons/src/main/kotlin/org/fossify/commons/activities/LicenseActivity.kt
+++ b/commons/src/main/kotlin/org/fossify/commons/activities/LicenseActivity.kt
@@ -11,7 +11,45 @@ import org.fossify.commons.compose.extensions.enableEdgeToEdgeSimple
import org.fossify.commons.compose.screens.LicenseScreen
import org.fossify.commons.compose.theme.AppThemeSurface
import org.fossify.commons.extensions.launchViewIntent
-import org.fossify.commons.helpers.*
+import org.fossify.commons.helpers.APP_LICENSES
+import org.fossify.commons.helpers.LICENSE_ANDROID_LAME
+import org.fossify.commons.helpers.LICENSE_APNG
+import org.fossify.commons.helpers.LICENSE_AUDIO_RECORD_VIEW
+import org.fossify.commons.helpers.LICENSE_AUTOFITTEXTVIEW
+import org.fossify.commons.helpers.LICENSE_COMMONMARK
+import org.fossify.commons.helpers.LICENSE_COMMONS_CSV
+import org.fossify.commons.helpers.LICENSE_CROPPER
+import org.fossify.commons.helpers.LICENSE_ESPRESSO
+import org.fossify.commons.helpers.LICENSE_EVALEX
+import org.fossify.commons.helpers.LICENSE_EVENT_BUS
+import org.fossify.commons.helpers.LICENSE_EXOPLAYER
+import org.fossify.commons.helpers.LICENSE_FILTERS
+import org.fossify.commons.helpers.LICENSE_GESTURE_VIEWS
+import org.fossify.commons.helpers.LICENSE_GIF_DRAWABLE
+import org.fossify.commons.helpers.LICENSE_GLIDE
+import org.fossify.commons.helpers.LICENSE_GSON
+import org.fossify.commons.helpers.LICENSE_INDICATOR_FAST_SCROLL
+import org.fossify.commons.helpers.LICENSE_JODA
+import org.fossify.commons.helpers.LICENSE_JSOUP
+import org.fossify.commons.helpers.LICENSE_KOTLIN
+import org.fossify.commons.helpers.LICENSE_LEAK_CANARY
+import org.fossify.commons.helpers.LICENSE_M3U_PARSER
+import org.fossify.commons.helpers.LICENSE_MAMMOTH
+import org.fossify.commons.helpers.LICENSE_NUMBER_PICKER
+import org.fossify.commons.helpers.LICENSE_OTTO
+import org.fossify.commons.helpers.LICENSE_PATTERN
+import org.fossify.commons.helpers.LICENSE_PDF_VIEWER
+import org.fossify.commons.helpers.LICENSE_PDF_VIEW_PAGER
+import org.fossify.commons.helpers.LICENSE_PHOTOVIEW
+import org.fossify.commons.helpers.LICENSE_PICASSO
+import org.fossify.commons.helpers.LICENSE_REPRINT
+import org.fossify.commons.helpers.LICENSE_ROBOLECTRIC
+import org.fossify.commons.helpers.LICENSE_RTL
+import org.fossify.commons.helpers.LICENSE_SANSELAN
+import org.fossify.commons.helpers.LICENSE_SMS_MMS
+import org.fossify.commons.helpers.LICENSE_STETHO
+import org.fossify.commons.helpers.LICENSE_SUBSAMPLING
+import org.fossify.commons.helpers.LICENSE_ZIP4J
import org.fossify.commons.models.License
class LicenseActivity : BaseComposeActivity() {
@@ -20,7 +58,11 @@ class LicenseActivity : BaseComposeActivity() {
enableEdgeToEdgeSimple()
setContent {
val licenseMask = remember { intent.getLongExtra(APP_LICENSES, 0) or LICENSE_KOTLIN }
- val thirdPartyLicenses by remember { derivedStateOf { initLicenses().filter { licenseMask and it.id != 0L }.toImmutableList() } }
+ val thirdPartyLicenses by remember {
+ derivedStateOf {
+ initLicenses().filter { licenseMask and it.id != 0L }.toImmutableList()
+ }
+ }
AppThemeSurface {
LicenseScreen(
goBack = ::finish,
@@ -44,27 +86,71 @@ class LicenseActivity : BaseComposeActivity() {
License(LICENSE_PICASSO, R.string.picasso_title, R.string.picasso_text, R.string.picasso_url),
License(LICENSE_PATTERN, R.string.pattern_title, R.string.pattern_text, R.string.pattern_url),
License(LICENSE_REPRINT, R.string.reprint_title, R.string.reprint_text, R.string.reprint_url),
- License(LICENSE_GIF_DRAWABLE, R.string.gif_drawable_title, R.string.gif_drawable_text, R.string.gif_drawable_url),
- License(LICENSE_AUTOFITTEXTVIEW, R.string.autofittextview_title, R.string.autofittextview_text, R.string.autofittextview_url),
+ License(
+ LICENSE_GIF_DRAWABLE,
+ R.string.gif_drawable_title,
+ R.string.gif_drawable_text,
+ R.string.gif_drawable_url
+ ),
+ License(
+ LICENSE_AUTOFITTEXTVIEW,
+ R.string.autofittextview_title,
+ R.string.autofittextview_text,
+ R.string.autofittextview_url
+ ),
License(LICENSE_ROBOLECTRIC, R.string.robolectric_title, R.string.robolectric_text, R.string.robolectric_url),
License(LICENSE_ESPRESSO, R.string.espresso_title, R.string.espresso_text, R.string.espresso_url),
License(LICENSE_GSON, R.string.gson_title, R.string.gson_text, R.string.gson_url),
License(LICENSE_LEAK_CANARY, R.string.leak_canary_title, R.string.leakcanary_text, R.string.leakcanary_url),
- License(LICENSE_NUMBER_PICKER, R.string.number_picker_title, R.string.number_picker_text, R.string.number_picker_url),
+ License(
+ LICENSE_NUMBER_PICKER,
+ R.string.number_picker_title,
+ R.string.number_picker_text,
+ R.string.number_picker_url
+ ),
License(LICENSE_EXOPLAYER, R.string.exoplayer_title, R.string.exoplayer_text, R.string.exoplayer_url),
License(LICENSE_SANSELAN, R.string.sanselan_title, R.string.sanselan_text, R.string.sanselan_url),
License(LICENSE_FILTERS, R.string.filters_title, R.string.filters_text, R.string.filters_url),
- License(LICENSE_GESTURE_VIEWS, R.string.gesture_views_title, R.string.gesture_views_text, R.string.gesture_views_url),
- License(LICENSE_INDICATOR_FAST_SCROLL, R.string.indicator_fast_scroll_title, R.string.indicator_fast_scroll_text, R.string.indicator_fast_scroll_url),
+ License(
+ LICENSE_GESTURE_VIEWS,
+ R.string.gesture_views_title,
+ R.string.gesture_views_text,
+ R.string.gesture_views_url
+ ),
+ License(
+ LICENSE_INDICATOR_FAST_SCROLL,
+ R.string.indicator_fast_scroll_title,
+ R.string.indicator_fast_scroll_text,
+ R.string.indicator_fast_scroll_url
+ ),
License(LICENSE_EVENT_BUS, R.string.event_bus_title, R.string.event_bus_text, R.string.event_bus_url),
- License(LICENSE_AUDIO_RECORD_VIEW, R.string.audio_record_view_title, R.string.audio_record_view_text, R.string.audio_record_view_url),
+ License(
+ LICENSE_AUDIO_RECORD_VIEW,
+ R.string.audio_record_view_title,
+ R.string.audio_record_view_text,
+ R.string.audio_record_view_url
+ ),
License(LICENSE_SMS_MMS, R.string.sms_mms_title, R.string.sms_mms_text, R.string.sms_mms_url),
License(LICENSE_APNG, R.string.apng_title, R.string.apng_text, R.string.apng_url),
- License(LICENSE_PDF_VIEW_PAGER, R.string.pdf_view_pager_title, R.string.pdf_view_pager_text, R.string.pdf_view_pager_url),
+ License(
+ LICENSE_PDF_VIEW_PAGER,
+ R.string.pdf_view_pager_title,
+ R.string.pdf_view_pager_text,
+ R.string.pdf_view_pager_url
+ ),
License(LICENSE_M3U_PARSER, R.string.m3u_parser_title, R.string.m3u_parser_text, R.string.m3u_parser_url),
- License(LICENSE_ANDROID_LAME, R.string.android_lame_title, R.string.android_lame_text, R.string.android_lame_url),
+ License(
+ LICENSE_ANDROID_LAME,
+ R.string.android_lame_title,
+ R.string.android_lame_text,
+ R.string.android_lame_url
+ ),
License(LICENSE_PDF_VIEWER, R.string.pdf_viewer_title, R.string.pdf_viewer_text, R.string.pdf_viewer_url),
License(LICENSE_ZIP4J, R.string.zip4j_title, R.string.zip4j_text, R.string.zip4j_url),
- License(LICENSE_EVALEX, R.string.evalex_title, R.string.evalex_text, R.string.evalex_url)
+ License(LICENSE_EVALEX, R.string.evalex_title, R.string.evalex_text, R.string.evalex_url),
+ License(LICENSE_MAMMOTH, R.string.mammoth_title, R.string.mammoth_text, R.string.mammoth_url),
+ License(LICENSE_COMMONMARK, R.string.commonmark_title, R.string.commonmark_text, R.string.commonmark_url),
+ License(LICENSE_JSOUP, R.string.jsoup_title, R.string.jsoup_text, R.string.jsoup_url),
+ License(LICENSE_COMMONS_CSV, R.string.commons_csv_title, R.string.commons_csv_text, R.string.commons_csv_url)
)
}
diff --git a/commons/src/main/kotlin/org/fossify/commons/compose/screens/LicenseScreen.kt b/commons/src/main/kotlin/org/fossify/commons/compose/screens/LicenseScreen.kt
index 438d27f0c2..2159169ee6 100644
--- a/commons/src/main/kotlin/org/fossify/commons/compose/screens/LicenseScreen.kt
+++ b/commons/src/main/kotlin/org/fossify/commons/compose/screens/LicenseScreen.kt
@@ -18,7 +18,44 @@ import org.fossify.commons.compose.lists.SimpleLazyListScaffold
import org.fossify.commons.compose.settings.SettingsHorizontalDivider
import org.fossify.commons.compose.theme.AppThemeSurface
import org.fossify.commons.compose.theme.SimpleTheme
-import org.fossify.commons.helpers.*
+import org.fossify.commons.helpers.LICENSE_ANDROID_LAME
+import org.fossify.commons.helpers.LICENSE_APNG
+import org.fossify.commons.helpers.LICENSE_AUDIO_RECORD_VIEW
+import org.fossify.commons.helpers.LICENSE_AUTOFITTEXTVIEW
+import org.fossify.commons.helpers.LICENSE_COMMONMARK
+import org.fossify.commons.helpers.LICENSE_COMMONS_CSV
+import org.fossify.commons.helpers.LICENSE_CROPPER
+import org.fossify.commons.helpers.LICENSE_ESPRESSO
+import org.fossify.commons.helpers.LICENSE_EVALEX
+import org.fossify.commons.helpers.LICENSE_EVENT_BUS
+import org.fossify.commons.helpers.LICENSE_EXOPLAYER
+import org.fossify.commons.helpers.LICENSE_FILTERS
+import org.fossify.commons.helpers.LICENSE_GESTURE_VIEWS
+import org.fossify.commons.helpers.LICENSE_GIF_DRAWABLE
+import org.fossify.commons.helpers.LICENSE_GLIDE
+import org.fossify.commons.helpers.LICENSE_GSON
+import org.fossify.commons.helpers.LICENSE_INDICATOR_FAST_SCROLL
+import org.fossify.commons.helpers.LICENSE_JODA
+import org.fossify.commons.helpers.LICENSE_JSOUP
+import org.fossify.commons.helpers.LICENSE_KOTLIN
+import org.fossify.commons.helpers.LICENSE_LEAK_CANARY
+import org.fossify.commons.helpers.LICENSE_M3U_PARSER
+import org.fossify.commons.helpers.LICENSE_MAMMOTH
+import org.fossify.commons.helpers.LICENSE_NUMBER_PICKER
+import org.fossify.commons.helpers.LICENSE_OTTO
+import org.fossify.commons.helpers.LICENSE_PATTERN
+import org.fossify.commons.helpers.LICENSE_PDF_VIEWER
+import org.fossify.commons.helpers.LICENSE_PDF_VIEW_PAGER
+import org.fossify.commons.helpers.LICENSE_PHOTOVIEW
+import org.fossify.commons.helpers.LICENSE_PICASSO
+import org.fossify.commons.helpers.LICENSE_REPRINT
+import org.fossify.commons.helpers.LICENSE_ROBOLECTRIC
+import org.fossify.commons.helpers.LICENSE_RTL
+import org.fossify.commons.helpers.LICENSE_SANSELAN
+import org.fossify.commons.helpers.LICENSE_SMS_MMS
+import org.fossify.commons.helpers.LICENSE_STETHO
+import org.fossify.commons.helpers.LICENSE_SUBSAMPLING
+import org.fossify.commons.helpers.LICENSE_ZIP4J
import org.fossify.commons.models.License
@Composable
@@ -47,20 +84,27 @@ private fun LicenseItem(
license: License,
onLicenseClick: (urlId: Int) -> Unit
) {
- ListItem(headlineContent = {
- Text(
- text = stringResource(id = license.titleId),
- modifier = Modifier
- .clickable {
- onLicenseClick(license.urlId)
- }
- )
- }, supportingContent = {
- Text(
- text = stringResource(id = license.textId),
- modifier = Modifier.padding(top = SimpleTheme.dimens.padding.extraSmall),
+ ListItem(
+ headlineContent = {
+ Text(
+ text = stringResource(id = license.titleId),
+ modifier = Modifier
+ .clickable {
+ onLicenseClick(license.urlId)
+ }
+ )
+ },
+ supportingContent = {
+ Text(
+ text = stringResource(id = license.textId),
+ modifier = Modifier.padding(top = SimpleTheme.dimens.padding.extraSmall),
+ )
+ },
+ colors = ListItemDefaults.colors(
+ headlineColor = SimpleTheme.colorScheme.primary,
+ supportingColor = SimpleTheme.colorScheme.onSurface
)
- }, colors = ListItemDefaults.colors(headlineColor = SimpleTheme.colorScheme.primary, supportingColor = SimpleTheme.colorScheme.onSurface))
+ )
}
@Composable
@@ -71,10 +115,20 @@ private fun LicenseScreenPreview() {
goBack = {},
thirdPartyLicenses = listOf(
License(LICENSE_KOTLIN, R.string.kotlin_title, R.string.kotlin_text, R.string.kotlin_url),
- License(LICENSE_SUBSAMPLING, R.string.subsampling_title, R.string.subsampling_text, R.string.subsampling_url),
+ License(
+ LICENSE_SUBSAMPLING,
+ R.string.subsampling_title,
+ R.string.subsampling_text,
+ R.string.subsampling_url
+ ),
License(LICENSE_GLIDE, R.string.glide_title, R.string.glide_text, R.string.glide_url),
License(LICENSE_CROPPER, R.string.cropper_title, R.string.cropper_text, R.string.cropper_url),
- License(LICENSE_RTL, R.string.rtl_viewpager_title, R.string.rtl_viewpager_text, R.string.rtl_viewpager_url),
+ License(
+ LICENSE_RTL,
+ R.string.rtl_viewpager_title,
+ R.string.rtl_viewpager_text,
+ R.string.rtl_viewpager_url
+ ),
License(LICENSE_JODA, R.string.joda_title, R.string.joda_text, R.string.joda_url),
License(LICENSE_STETHO, R.string.stetho_title, R.string.stetho_text, R.string.stetho_url),
License(LICENSE_OTTO, R.string.otto_title, R.string.otto_text, R.string.otto_url),
@@ -82,17 +136,47 @@ private fun LicenseScreenPreview() {
License(LICENSE_PICASSO, R.string.picasso_title, R.string.picasso_text, R.string.picasso_url),
License(LICENSE_PATTERN, R.string.pattern_title, R.string.pattern_text, R.string.pattern_url),
License(LICENSE_REPRINT, R.string.reprint_title, R.string.reprint_text, R.string.reprint_url),
- License(LICENSE_GIF_DRAWABLE, R.string.gif_drawable_title, R.string.gif_drawable_text, R.string.gif_drawable_url),
- License(LICENSE_AUTOFITTEXTVIEW, R.string.autofittextview_title, R.string.autofittextview_text, R.string.autofittextview_url),
- License(LICENSE_ROBOLECTRIC, R.string.robolectric_title, R.string.robolectric_text, R.string.robolectric_url),
+ License(
+ LICENSE_GIF_DRAWABLE,
+ R.string.gif_drawable_title,
+ R.string.gif_drawable_text,
+ R.string.gif_drawable_url
+ ),
+ License(
+ LICENSE_AUTOFITTEXTVIEW,
+ R.string.autofittextview_title,
+ R.string.autofittextview_text,
+ R.string.autofittextview_url
+ ),
+ License(
+ LICENSE_ROBOLECTRIC,
+ R.string.robolectric_title,
+ R.string.robolectric_text,
+ R.string.robolectric_url
+ ),
License(LICENSE_ESPRESSO, R.string.espresso_title, R.string.espresso_text, R.string.espresso_url),
License(LICENSE_GSON, R.string.gson_title, R.string.gson_text, R.string.gson_url),
- License(LICENSE_LEAK_CANARY, R.string.leak_canary_title, R.string.leakcanary_text, R.string.leakcanary_url),
- License(LICENSE_NUMBER_PICKER, R.string.number_picker_title, R.string.number_picker_text, R.string.number_picker_url),
+ License(
+ LICENSE_LEAK_CANARY,
+ R.string.leak_canary_title,
+ R.string.leakcanary_text,
+ R.string.leakcanary_url
+ ),
+ License(
+ LICENSE_NUMBER_PICKER,
+ R.string.number_picker_title,
+ R.string.number_picker_text,
+ R.string.number_picker_url
+ ),
License(LICENSE_EXOPLAYER, R.string.exoplayer_title, R.string.exoplayer_text, R.string.exoplayer_url),
License(LICENSE_SANSELAN, R.string.sanselan_title, R.string.sanselan_text, R.string.sanselan_url),
License(LICENSE_FILTERS, R.string.filters_title, R.string.filters_text, R.string.filters_url),
- License(LICENSE_GESTURE_VIEWS, R.string.gesture_views_title, R.string.gesture_views_text, R.string.gesture_views_url),
+ License(
+ LICENSE_GESTURE_VIEWS,
+ R.string.gesture_views_title,
+ R.string.gesture_views_text,
+ R.string.gesture_views_url
+ ),
License(
LICENSE_INDICATOR_FAST_SCROLL,
R.string.indicator_fast_scroll_title,
@@ -100,19 +184,57 @@ private fun LicenseScreenPreview() {
R.string.indicator_fast_scroll_url
),
License(LICENSE_EVENT_BUS, R.string.event_bus_title, R.string.event_bus_text, R.string.event_bus_url),
- License(LICENSE_AUDIO_RECORD_VIEW, R.string.audio_record_view_title, R.string.audio_record_view_text, R.string.audio_record_view_url),
+ License(
+ LICENSE_AUDIO_RECORD_VIEW,
+ R.string.audio_record_view_title,
+ R.string.audio_record_view_text,
+ R.string.audio_record_view_url
+ ),
License(LICENSE_SMS_MMS, R.string.sms_mms_title, R.string.sms_mms_text, R.string.sms_mms_url),
License(LICENSE_APNG, R.string.apng_title, R.string.apng_text, R.string.apng_url),
- License(LICENSE_PDF_VIEW_PAGER, R.string.pdf_view_pager_title, R.string.pdf_view_pager_text, R.string.pdf_view_pager_url),
- License(LICENSE_M3U_PARSER, R.string.m3u_parser_title, R.string.m3u_parser_text, R.string.m3u_parser_url),
- License(LICENSE_ANDROID_LAME, R.string.android_lame_title, R.string.android_lame_text, R.string.android_lame_url),
- License(LICENSE_PDF_VIEWER, R.string.pdf_viewer_title, R.string.pdf_viewer_text, R.string.pdf_viewer_url),
+ License(
+ LICENSE_PDF_VIEW_PAGER,
+ R.string.pdf_view_pager_title,
+ R.string.pdf_view_pager_text,
+ R.string.pdf_view_pager_url
+ ),
+ License(
+ LICENSE_M3U_PARSER,
+ R.string.m3u_parser_title,
+ R.string.m3u_parser_text,
+ R.string.m3u_parser_url
+ ),
+ License(
+ LICENSE_ANDROID_LAME,
+ R.string.android_lame_title,
+ R.string.android_lame_text,
+ R.string.android_lame_url
+ ),
+ License(
+ LICENSE_PDF_VIEWER,
+ R.string.pdf_viewer_title,
+ R.string.pdf_viewer_text,
+ R.string.pdf_viewer_url
+ ),
License(LICENSE_ZIP4J, R.string.zip4j_title, R.string.zip4j_text, R.string.zip4j_url),
- License(LICENSE_EVALEX, R.string.evalex_title, R.string.evalex_text, R.string.evalex_url)
+ License(LICENSE_EVALEX, R.string.evalex_title, R.string.evalex_text, R.string.evalex_url),
+ License(LICENSE_MAMMOTH, R.string.mammoth_title, R.string.mammoth_text, R.string.mammoth_url),
+ License(
+ LICENSE_COMMONMARK,
+ R.string.commonmark_title,
+ R.string.commonmark_text,
+ R.string.commonmark_url
+ ),
+ License(LICENSE_JSOUP, R.string.jsoup_title, R.string.jsoup_text, R.string.jsoup_url),
+ License(
+ LICENSE_COMMONS_CSV,
+ R.string.commons_csv_title,
+ R.string.commons_csv_text,
+ R.string.commons_csv_url
+ )
).toImmutableList()
) {
}
}
}
-
diff --git a/commons/src/main/kotlin/org/fossify/commons/helpers/Constants.kt b/commons/src/main/kotlin/org/fossify/commons/helpers/Constants.kt
index 9140d2da38..4aef023e30 100644
--- a/commons/src/main/kotlin/org/fossify/commons/helpers/Constants.kt
+++ b/commons/src/main/kotlin/org/fossify/commons/helpers/Constants.kt
@@ -267,6 +267,10 @@ const val LICENSE_ANDROID_LAME = 2147483648L
const val LICENSE_PDF_VIEWER = 4294967296L
const val LICENSE_ZIP4J = 8589934592L
const val LICENSE_EVALEX = 17179869184L
+const val LICENSE_MAMMOTH = 34359738368L
+const val LICENSE_COMMONMARK = 68719476736L
+const val LICENSE_JSOUP = 137438953472L
+const val LICENSE_COMMONS_CSV = 274877906944L
// global intents
const val OPEN_DOCUMENT_TREE_FOR_ANDROID_DATA_OR_OBB = 1000
diff --git a/commons/src/main/res/values/donottranslate.xml b/commons/src/main/res/values/donottranslate.xml
index fa7391a0b2..eea28cd4d3 100644
--- a/commons/src/main/res/values/donottranslate.xml
+++ b/commons/src/main/res/values/donottranslate.xml
@@ -160,12 +160,20 @@
https://github.com/BjoernPetersen/m3u-parser
Copyright (C) 2015 Naman Dwivedi\n\nThis 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.\n\nThis software 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.\n\nYou should have received a copy of the GNU General Public License along with this app. If not, see https://www.gnu.org/licenses/.
https://github.com/naman14/TAndroidLame
- Copyright (C) 2017 Bartosz Schiller\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and limitations under the License.
- https://github.com/tibbi/AndroidPdfViewer
+ Android PdfViewer\n\nCopyright 2017 Bartosz Schiller\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n\nPdfiumAndroid\n\nOriginal work copyright 2014 Foxit Software Inc.\nModified work Copyright 2015 Bekket McClane\nModified work Copyright 2016 Bartosz Schiller\nModified work Copyright 2017-2020 The PDFium Authors\nModified work Copyright 2025 Infomaniak Network SA\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n\nCopyright 2014 PDFium Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* 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.\n* Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS 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.
+ https://github.com/Infomaniak/android-pdfview
Copyright (C) 2019 Srikanth Reddy Lingala\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
https://github.com/srikanth-lingala/zip4j
Copyright 2012-2023 by Udo Klimaschewski\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
https://github.com/ezylang/EvalEx
+ Copyright (c) 2015, Michael Williamson\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n2. 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.\n\nTHIS 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.
+ https://github.com/FossifyOrg/java-mammoth
+ Copyright (c) 2015, Atlassian Pty Ltd\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* 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.\n\nTHIS 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 HOLDER 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.
+ https://github.com/commonmark/commonmark-java
+ The MIT License\n\nCopyright (c) 2009-2026 Jonathan Hedley\n\nPermission 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:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE 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 AUTHORS OR COPYRIGHT HOLDERS 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.
+ https://github.com/jhy/jsoup
+ Copyright 2005-2025 The Apache Software Foundation\n\nLicensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
+ https://github.com/apache/commons-csv
MD5
diff --git a/commons/src/main/res/values/strings.xml b/commons/src/main/res/values/strings.xml
index 492bd28fb6..f3edff4241 100644
--- a/commons/src/main/res/values/strings.xml
+++ b/commons/src/main/res/values/strings.xml
@@ -1190,6 +1190,10 @@
AndroidLame (mp3 encoder)
Zip4j (ZIP compression and decompression)
EvalEx (math expression evaluation)
+ Mammoth (DOCX converter)
+ CommonMark (Markdown parser)
+ jsoup (HTML parser)
+ Apache Commons CSV (CSV parser)
Trial expired
@@ -1212,4 +1216,4 @@
A group of simple, open source Android apps with customizable widgets, without ads and unnecessary permissions.
-
\ No newline at end of file
+