lehttp_overrides 1.0.0+1 lehttp_overrides: ^1.0.0+1 copied to clipboard
A Flutter package to resolve SSL Certificate problem with Android 7 or below
lehttp_overrides #
A Flutter package to resolve SSL Certificate problem with Android 7 or earlier
Getting Started #
To resolve the issue linked to SSL Certificate, you need to add this line at the beginning of your project:
import 'package:lehttp_overrides/lehttp_overrides.dart';
void main() {
...
if (Platform.isAndroid){
HttpOverrides.global = LEHttpOverrides();
}
...
runApp(const MyApp());
}