()
| 329 | /* Helpers */ |
| 330 | // Check for TrustManagerImpl class |
| 331 | public boolean hasTrustManagerImpl() { |
| 332 | |
| 333 | try { |
| 334 | Class.forName("com.android.org.conscrypt.TrustManagerImpl"); |
| 335 | } catch (ClassNotFoundException e) { |
| 336 | return false; |
| 337 | } |
| 338 | return true; |
| 339 | } |
| 340 | |
| 341 | public boolean hasDefaultHTTPClient() { |
| 342 | try { |
no outgoing calls
no test coverage detected