mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 05:17:03 +05:30
fix: disable InvalidPackage
lint
This commit is contained in:
parent
0aaac90e63
commit
eccdb91c82
4 changed files with 5 additions and 37 deletions
|
@ -1,18 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<issues format="6" by="lint 8.12.0-alpha01" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha01)" variant="all" version="8.12.0-alpha01">
|
<issues format="6" by="lint 8.12.0-alpha02" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha02)" variant="all" version="8.12.0-alpha02">
|
||||||
|
|
||||||
<issue
|
|
||||||
id="InvalidPackage"
|
|
||||||
message="Invalid package reference in library; not included in Android: `java.net.http`. Referenced from `org.jsoup.helper.HttpClientExecutor`.">
|
|
||||||
<location
|
|
||||||
file="../../../.gradle/caches/modules-2/files-2.1/org.jsoup/jsoup/1.20.1/769377896610be1736f8d6d51fc52a6042d1ce82/jsoup-1.20.1.jar"/>
|
|
||||||
</issue>
|
|
||||||
|
|
||||||
<issue
|
|
||||||
id="InvalidPackage"
|
|
||||||
message="Invalid package reference in org.jsoup:jsoup; not included in Android: `java.net.http`. Referenced from `org.jsoup.helper.HttpClientExecutor`.">
|
|
||||||
<location
|
|
||||||
file="../../../.gradle/caches/modules-2/files-2.1/org.jsoup/jsoup/1.20.1/769377896610be1736f8d6d51fc52a6042d1ce82/jsoup-1.20.1.jar"/>
|
|
||||||
</issue>
|
|
||||||
|
|
||||||
</issues>
|
</issues>
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<issues format="6" by="lint 8.12.0-alpha01" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha01)" variant="all" version="8.12.0-alpha01">
|
<issues format="6" by="lint 8.12.0-alpha02" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha02)" variant="all" version="8.12.0-alpha02">
|
||||||
|
|
||||||
<issue
|
|
||||||
id="InvalidPackage"
|
|
||||||
message="Invalid package reference in org.jsoup:jsoup; not included in Android: `java.net.http`. Referenced from `org.jsoup.helper.HttpClientExecutor`.">
|
|
||||||
<location
|
|
||||||
file="../../../.gradle/caches/modules-2/files-2.1/org.jsoup/jsoup/1.20.1/769377896610be1736f8d6d51fc52a6042d1ce82/jsoup-1.20.1.jar"/>
|
|
||||||
</issue>
|
|
||||||
|
|
||||||
</issues>
|
</issues>
|
||||||
|
|
|
@ -41,6 +41,9 @@ object LintConfig {
|
||||||
disable += "NewerVersionAvailable"
|
disable += "NewerVersionAvailable"
|
||||||
// Can't do anything about this
|
// Can't do anything about this
|
||||||
disable += "ObsoleteLintCustomCheck"
|
disable += "ObsoleteLintCustomCheck"
|
||||||
|
// I trust myself enough to not deal with the constantly
|
||||||
|
// changing error message.
|
||||||
|
disable += "InvalidPackage"
|
||||||
}
|
}
|
||||||
|
|
||||||
fun configureRootProject(project: Project) {
|
fun configureRootProject(project: Project) {
|
||||||
|
|
|
@ -1,18 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<issues format="6" by="lint 8.12.0-alpha02" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha02)" variant="all" version="8.12.0-alpha02">
|
<issues format="6" by="lint 8.12.0-alpha02" type="baseline" client="gradle" dependencies="true" name="AGP (8.12.0-alpha02)" variant="all" version="8.12.0-alpha02">
|
||||||
|
|
||||||
<issue
|
|
||||||
id="InvalidPackage"
|
|
||||||
message="Invalid package reference in library; not included in Android: `java.net.http`. Referenced from `org.jsoup.helper.HttpClientExecutor`.">
|
|
||||||
<location
|
|
||||||
file="../../../.gradle/caches/modules-2/files-2.1/org.jsoup/jsoup/1.20.1/769377896610be1736f8d6d51fc52a6042d1ce82/jsoup-1.20.1.jar"/>
|
|
||||||
</issue>
|
|
||||||
|
|
||||||
<issue
|
|
||||||
id="InvalidPackage"
|
|
||||||
message="Invalid package reference in org.jsoup:jsoup; not included in Android: `java.net.http`. Referenced from `org.jsoup.helper.HttpClientExecutor`.">
|
|
||||||
<location
|
|
||||||
file="../../../.gradle/caches/modules-2/files-2.1/org.jsoup/jsoup/1.20.1/769377896610be1736f8d6d51fc52a6042d1ce82/jsoup-1.20.1.jar"/>
|
|
||||||
</issue>
|
|
||||||
|
|
||||||
</issues>
|
</issues>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue