This quickstart is written specifically for Android and iOS apps that are implemented using Flutter
and the HTTP Client
, the Dart IO HttpClient
or Dio
. If this is not your situation then please check if there is a more relevant quickstart guide available.
This page provides all the steps for integrating Approov into your app. Additionally, a step-by-step tutorial guide using our Shapes App Example is also available.
To follow this guide you should have received an onboarding email for a trial or paid Approov account.
This package requires Flutter 3 because of the need to execute channel handlers on background threads, which is only available in the stable channel from Flutter 3.
Note that the minimum OS requirement for iOS is 12 and for Android the minimum SDK version is 21 (Android 5.0). You cannot use Approov in apps that need to support OS versions older than this.
The Approov integration is available via Github
package. This allows inclusion into the project by simply specifying a dependency in the pubspec.yaml
files for the app. In the dependencies:
section of pubspec.yaml
file add the following package reference:
approov_service_flutter_httpclient:
git:
url: https://github.com/approov/approov-service-flutter-httpclient.git
ref: 3.2.0
This package is actually an open source wrapper layer that allows you to easily use Approov with Flutter
. This has a further dependency to the closed source Android Approov SDK and iOS Approov SDK packages. Those are automatically added as dependencies for the platform specific targets.
The approov_service_flutter_httpclient
package provides a number of accessible classes:
ApproovService
provides a higher level interface to the underlying Approov SDKApproovException
, and derivedApproovNetworkException
andApproovRejectionException
, provide special exception classes for Approov related errorsApproovHttpClient
which is a drop-in replacement for the Dart IO library'sHttpClient
and calls theApproovService
ApproovClient
which is a drop-in replacement for Client from the Flutter http package (https://pub.dev/packages/http) and internally uses anApproovHttpClient
object
The following app permissions need to be available in the manifest to use Approov:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Please read this section of the reference documentation if targeting Android 11 (API level 30) or above.
The approov_service_flutter_httpclient
generates a Cocoapods dependency file which can be installed by executing:
pod install
in the directory containing the iOS project files.
The ApproovClient
declared in the approov_service_flutter_httpclient
package can be used as a drop in replacement for HTTP Client
from the Flutter http package. It will handle any request in the same way but with the additional features provided by the Approov SDK
. The only additional requirement when using ApproovClient
is providing an initialization string during object creation:
import 'package:approov_service_flutter_httpclient/approov_service_flutter_httpclient.dart';
...
http.Client client = ApproovClient('<enter-your-config-string-here>');
The <enter-your-config-string-here>
is a custom string that configures your Approov account access. This will have been provided in your Approov onboarding email. This initializes Approov when the app is first created. Please note that you must provide the initialization String every time you instantiate an ApproovClient
but the underlying SDK only actually initializes the library once.
After creatng the ApproovClient
you can perform requests and await responses as normal, for example:
http.Response response = await client.get(Uri.parse('https://your.domain/api'));
This client includes an interceptor that protects channel integrity (with either pinning or managed trust roots) and may also add Approov-Token
or substitute app secret values, depending upon your integration choices. You should thus use this client for all API calls you may wish to protect.
The ApproovHttpClient
declared in the approov_service_flutter_httpclient
package can be used as a drop in replacement for the Dart IO HttpClient
. It will handle any request in the same way but with the additional features provided by the Approov SDK
. The only additional requirement when using ApproovHttpClient
is providing an initialization string during object creation:
import 'package:approov_service_flutter_httpclient/approov_service_flutter_httpclient.dart';
...
HttpClient client = ApproovHttpClient('<enter-your-config-string-here>');
The <enter-your-config-string-here>
is a custom string that configures your Approov account access. This will have been provided in your Approov onboarding email. This initializes Approov when the app is first created. Please note that you must provide the initialization String every time you instantiate an ApproovHttpClient
but the underlying SDK only actually initializes the library once.
After creatng the ApproovHttpClient
you can perform requests and await responses as normal, for example:
HttpClientRequest request = await client.getUrl(Uri.parse('https://your.domain/api'));
HttpClientResponse response = await request.close();
This client protects channel integrity (with either pinning or managed trust roots) and may also add Approov-Token
or substitute app secret values, depending upon your integration choices. You should thus use this client for all API calls you may wish to protect.
It is also possible to use Approov with the Dio
networking stack, since this uses HttpClient
internally. When constructing a Dio
object you need to modify the underlying client used as follows:
import 'package:dio/adapter.dart';
...
var dio = Dio();
(dio.httpClientAdapter as DefaultHttpClientAdapter).onHttpClientCreate = (client) {
return ApproovHttpClient('<enter-your-config-string-here>');
};
The <enter-your-config-string-here>
is a custom string that configures your Approov account access. This will have been provided in your Approov onboarding email. This initializes Approov when the app is first created. Please note that you must provide the initialization String every time you instantiate an ApproovHttpClient
but the underlying SDK only actually initializes the library once.
After creatng the Dio
you can perform requests and await responses as normal, for example:
var response = await dio.get('https://your.domain/api');
This client protects channel integrity (with either pinning or managed trust roots) and may also add Approov-Token
or substitute app secret values, depending upon your integration choices. You should thus use this client for all API calls you may wish to protect.
Note that if you are using Sentry then you must make any call to addSentry
after updating onHttpClientCreate
as Sentry modifies the Dio adapter to something other than DefaulyHttpClientAdapter
.
Initially you won't have set which API domains to protect, so the interceptor will not add anything. It will have called Approov though and made contact with the Approov cloud service. You will see logging from Approov saying UNKNOWN_URL
.
Your Approov onboarding email should contain a link allowing you to access Live Metrics Graphs. After you've run your app with Approov integration you should be able to see the results in the live metrics within a minute or so. At this stage you could even release your app to get details of your app population and the attributes of the devices they are running upon.
To actually protect your APIs and/or secrets there are some further steps. Approov provides two different options for protection:
-
API PROTECTION: You should use this if you control the backend API(s) being protected and are able to modify them to ensure that a valid Approov token is being passed by the app. An Approov Token is short lived crytographically signed JWT proving the authenticity of the call.
-
SECRETS PROTECTION: This allows app secrets, including API keys for 3rd party services, to be protected so that they no longer need to be included in the released app code. These secrets are only made available to valid apps at runtime.
Note that it is possible to use both approaches side-by-side in the same app.
See REFERENCE for a complete list of all of the ApproovService
methods.