0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

Add autodiscovery dependency

This commit is contained in:
Wolf-Martell Montwé 2023-06-12 18:06:46 +02:00
parent 0cc61723bb
commit a16b0834cc
No known key found for this signature in database
GPG Key ID: 6D45B21512ACBF72
4 changed files with 31 additions and 0 deletions

View File

@ -10,6 +10,18 @@ android {
versionCode = 1
versionName = "1.0"
}
packaging {
resources {
excludes += listOf(
"META-INF/DEPENDENCIES",
)
}
}
lint {
baseline = file("lint-baseline.xml")
}
}
dependencies {

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 8.0.2" type="baseline" client="gradle" dependencies="true" name="AGP (8.0.2)" variant="all" version="8.0.2">
<issue
id="CustomX509TrustManager"
message="Implementing a custom `X509TrustManager` is error-prone and likely to be insecure. It is likely to disable certificate validation altogether, and is non-trivial to implement correctly without calling Android&apos;s default implementation."
errorLine1=" private class SecureX509TrustManager implements X509TrustManager {"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/java/com/fsck/k9/mail/ssl/TrustManagerFactory.java"
line="70"
column="19"/>
</issue>
</issues>

View File

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name=".FeatureApplication"
android:allowBackup="true"

View File

@ -11,5 +11,7 @@ dependencies {
implementation(projects.core.ui.compose.designsystem)
implementation(projects.core.common)
implementation(projects.feature.autodiscovery.service)
testImplementation(projects.core.ui.compose.testing)
}