Bump aboutlibraries-core from 7.1.0 to 8.0.0 (#731)
This commit is contained in:
![27856297+dependabot-preview[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
GitHub

parent
b9a19b60e4
commit
d9322b0df4
@ -19,7 +19,7 @@ class LicenseItem(val library: Library) : AbstractFlexibleItem<LicenseItem.ViewH
|
||||
override fun bindViewHolder(adapter: FlexibleAdapter<IFlexible<*>>, holder: ViewHolder, position: Int, payloads: MutableList<Any>) {
|
||||
with(holder) {
|
||||
licenseItemName.text = library.libraryName
|
||||
licenseItemSummary.text = library.license?.licenseName
|
||||
licenseItemSummary.text = library.license?.licenseName?.takeIf { it.isNotBlank() } ?: library.libraryVersion
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -27,10 +27,6 @@ class LicensePresenter @Inject constructor(
|
||||
|
||||
private fun loadData() {
|
||||
disposable.add(Single.fromCallable { view?.appLibraries }
|
||||
.map {
|
||||
val exclude = listOf("Android-Iconics", "CircleImageView", "FastAdapter", "Jsoup", "okio", "Retrofit")
|
||||
it.filter { library -> !exclude.contains(library.libraryName) }
|
||||
}
|
||||
.map { it.map { library -> LicenseItem(library) } }
|
||||
.subscribeOn(schedulers.backgroundThread)
|
||||
.observeOn(schedulers.mainThread)
|
||||
|
@ -14,9 +14,11 @@
|
||||
android:id="@+id/licenseItemName"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="28dp"
|
||||
android:ellipsize="end"
|
||||
android:gravity="bottom"
|
||||
android:singleLine="true"
|
||||
android:textSize="16sp"
|
||||
tools:text="@tools:sample/lorem" />
|
||||
tools:text="@tools:sample/lorem/random" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/licenseItemSummary"
|
||||
|
1
app/src/main/res/raw/custom_license_mappings.prop
Normal file
1
app/src/main/res/raw/custom_license_mappings.prop
Normal file
@ -0,0 +1 @@
|
||||
io_github_wulkanowy__sdk:apache_2_0
|
3
app/src/main/res/raw/custom_license_year_mappings.prop
Normal file
3
app/src/main/res/raw/custom_license_year_mappings.prop
Normal file
@ -0,0 +1,3 @@
|
||||
com_github_wulkanowy__material_chips_input:2019
|
||||
io_github_wulkanowy__uonet_request_signer:2019
|
||||
io_github_wulkanowy__sdk:2020
|
3
app/src/main/res/raw/custom_name_mappings.prop
Normal file
3
app/src/main/res/raw/custom_name_mappings.prop
Normal file
@ -0,0 +1,3 @@
|
||||
com_github_wulkanowy__material_chips_input:Material Chips Input
|
||||
io_github_wulkanowy__uonet_request_signer:UONET+ Request Signer
|
||||
io_github_wulkanowy__sdk:VULCAN UONET+ SDK
|
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="define_WulkanowyApi" translatable="false" />
|
||||
|
||||
<string name="library_WulkanowyApi_author" translatable="false">Wulkanowy</string>
|
||||
<string name="library_WulkanowyApi_authorWebsite" translatable="false">https://github.com/wulkanowy</string>
|
||||
|
||||
<string name="library_WulkanowyApi_libraryName" translatable="false">UONET+ Scraping API</string>
|
||||
<string name="library_WulkanowyApi_libraryDescription" translatable="false">The UONET+ client using web scraping</string>
|
||||
<string name="library_WulkanowyApi_libraryWebsite" translatable="false">https://github.com/wulkanowy/api</string>
|
||||
<string name="library_WulkanowyApi_libraryVersion" translatable="false">Development</string>
|
||||
|
||||
<string name="library_WulkanowyApi_isOpenSource" translatable="false">true</string>
|
||||
<string name="library_WulkanowyApi_repositoryLink" translatable="false">https://github.com/wulkanowy/api</string>
|
||||
|
||||
<string name="library_WulkanowyApi_licenseId" translatable="false">apache_2_0</string>
|
||||
</resources>
|
Reference in New Issue
Block a user