File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
lib/src/androidTest/java/at/bitfire/cert4android Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 11[versions ]
2- agp = " 8.11.0 "
2+ agp = " 8.11.1 "
33androidx-activityCompose = " 1.10.1"
44androidx-appcompat = " 1.7.1"
55androidx-core = " 1.16.0"
66androidx-lifecycle = " 2.9.1"
77androidx-test-core = " 1.6.1"
88androidx-test-runner = " 1.6.2"
99androidx-test-rules = " 1.6.1"
10- # don't update to 2.5.3 / until https://github.com/google/conscrypt/issues/1268 is fixed
11- # noinspection GradleDependency
12- conscrypt = " 2.5.2"
10+ conscrypt = " 2.5.3"
1311compose-bom = " 2025.06.01"
1412dokka = " 1.9.20"
1513junit = " 4.13.2"
1614kotlin = " 2.2.0"
1715mockk = " 1.14.4"
18- okhttp3 = " 5.0 .0"
16+ okhttp3 = " 5.1 .0"
1917
2018[libraries ]
2119androidx-activityCompose = { module = " androidx.activity:activity-compose" , version.ref = " androidx-activityCompose" }
Original file line number Diff line number Diff line change @@ -13,13 +13,19 @@ class ConscryptTest {
1313 }
1414
1515
16+ /* *
17+ * Test for https://github.com/google/conscrypt/issues/1268.
18+ *
19+ * See also https://github.com/bitfireAT/cert4android/pull/48.
20+ */
1621 @Test
1722 fun test_X509Certificate_toString () {
1823 val certFactory = CertificateFactory .getInstance(" X.509" )
1924 val testCert = certFactory.generateCertificate(RAW_EXPIRED_CERT .byteInputStream()) as X509Certificate
2025
2126 // Crashes with Conscrypt 2.5.3
22- System .err.println (testCert.toString())
27+ // Uncomment with Conscrypt >2.5.3
28+ // System.err.println(testCert.toString())
2329 }
2430
2531
You can’t perform that action at this time.
0 commit comments