You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
fixes to make Picasso Image Loader work
This library is used by newer NewPipe versions
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
package android.net.http;
|
||||
|
||||
import java.security.cert.X509Certificate;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.net.ssl.X509TrustManager;
|
||||
|
||||
public class X509TrustManagerExtensions {
|
||||
|
||||
public X509TrustManagerExtensions(X509TrustManager tm) {}
|
||||
|
||||
public List<X509Certificate> checkServerTrusted (X509Certificate[] chain,
|
||||
String authType, String host) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user