This quickstart is written specifically for Android and iOS apps that are implemented using Kotlin Multiplatform for Mobile
and Ktor Client
for network requests. If this is not your situation then 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.
Note that the minimum OS requirement for iOS is 12 and for Android the minimum SDK version is 21 (Android 5.0).
The Approov integration is available via maven
. This allows inclusion into the project by simply specifying a dependency in Gradle.
Add the approov service dependency in the shared/build.gradle.kts
to allow it to be used in the shared project as follows:
val androidMain by getting {
dependencies {
...
implementation("io.approov:service.okhttp:3.3.1")
}
}
You must also add the dependency in androidMain/build.gradle.kts
:
dependencies {
...
implementation("io.approov:service.okhttp:3.3.1")
}
The Approov integration is available via CocoaPods
. This allows inclusion into the project by simply specifying a dependency in a Podfile
which should be placed in iosApp/Podfile
. Create this file if not already present and include this content using an editor:
target 'iosApp' do
use_frameworks!
platform :ios, '12.0'
pod 'approov-service-nsurlsession', '3.3.0'
end
This includes an open source Approov specialized version of NSURLSession
and also the closed source Approov SDK.
After creating or updating your Podfile
, change the directory to iosApp
in your project and type:
pod install
Note that once the pods have been installed you should open the Xcode project using the generated iosApp.xcworkspace
as this contains the generated configuration for the pods.
In order to use Approov you must generate a specialized instantiation of Ktor
for Android and iOS. This is only required for the construction of the HttpClient
object, and your actual API requests can remain in your common code. Once completed, Approov tokens and/or secrets substitution will be made on API requests without any further need to modify the actual API request logic.
If you have code such as the following in shared/src/commonMain
:
val client = HttpClient()
val response: HttpResponse = client.get {
url("https://your.domain/endpoint")
}
The you must modify this to use an HttpClient
that is constructed in the platform specific parts of shared
. Add the following code which declares an interface for obtaining a platform specific custom client:
interface CustomHttpClient {
fun getClient(): HttpClient
}
@SharedImmutable
internal expect val ApplicationHttpClient: CustomHttpClient
Change the original code to use the platform specific HttpClient
as follows:
val client = ApplicationHttpClient.getClient()
val response: HttpResponse = client.get {
url("https://your.domain/endpoint")
}
Note that it is important that you obtain the HttpClient
from the platform layer on each batch of requests. This is because for Android a new HttpClient
needs to be constructed in order to obtain the latest certificate pins if they are being dynamically updated by Approov. Failure to do this means that the app would only be able to obtain new pins via an app restart.
You must then provide platform specific implementations as follows:
You must ensure the OkHttp
based Ktor engine is installed in the shared/build.gradle.kts
as follows:
val androidMain by getting {
dependencies {
...
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
...
}
}
Add the following code into the shared/src/androidMain
:
import io.ktor.client.*
import io.ktor.client.engine.okhttp.*
import io.approov.service.okhttp.ApproovService
internal actual val ApplicationHttpClient: CustomHttpClient = AndroidHttpClient()
class AndroidHttpClient: CustomHttpClient {
override fun getClient(): HttpClient {
return HttpClient(OkHttp) {
engine {
preconfigured = ApproovService.getOkHttpClient()
}
}
}
}
This provides a Ktor HttpClient
that is specifically based on the OkHttp
engine. This allows a preconfigured
client to be specified. This uses the Approov OkHttp
service integration to provide the specialized OkHttp
client. This automatically adds Approov tokens and/or substitutes secrets in requests and includes dynamic pinning.
The iOS implementation is a little more complex than Android, since there is a need to pass a custom NSURLSession
into the shared layer from the app, which itself must use a Kotlin supplied session delegate object.
You must ensure the Darwin
based Ktor engine is installed in the shared/build.gradle.kts
as follows:
val iosMain by ... {
...
dependencies {
...
implementation("io.ktor:ktor-client-darwin:$ktorVersion")
...
}
}
Add the following code into the shared/src/iosMain
:
import io.ktor.client.*
import io.ktor.client.engine.darwin.Darwin
import io.ktor.client.engine.darwin.KtorNSURLSessionDelegate
import platform.Foundation.NSURLSession
import platform.Foundation.NSURLSessionDelegateProtocol
internal actual val ApplicationHttpClient: CustomHttpClient = IOSHttpClient()
class IOSHttpClient: CustomHttpClient {
override fun getClient(): HttpClient {
return HttpClient(Darwin) {
engine {
if ((session != null) && (delegate != null))
usePreconfiguredSession(session!!, delegate!!)
}
}
}
companion object {
var session: NSURLSession? = null
var delegate: KtorNSURLSessionDelegate? = null
fun setSession(pNSURLSession: NSURLSession) {
session = pNSURLSession
}
fun getDelegate(): NSURLSessionDelegateProtocol {
if (delegate == null)
delegate = KtorNSURLSessionDelegate()
return delegate!!
}
}
}
This provides a Ktor HttpClient
that is specifically based on the Darwin
engine. This allows a preconfigured
client to be specified. This uses the Approov NSURLSession
service integration to provide the specialized NSURLSession
. This automatically adds Approov tokens and/or substitutes secrets in requests and includes dynamic pinning.
No reliable method was found to include the Approov NSURLSession
and SDK
Cocoapods directly into the shared part of the KMM project. Instead these dependencies are included directly in the iosApp
. Thus the session must be set using the setSession
method of the companion
global object. The getDelegate
method allows the mandatory Kotlin level delegate to also be provided to the NSURLSession
instantiation. This is necessary for the NSURLSession
delegate mechanisms to operate correctly.
The initialization of Approov must be performed in the iOS and Android apps, not in the shared code. The initialization must be placed in code which will only exceute once when the app is started and before any API requests that need to be protected with Approov.
The <enter-your-config-string-here>
in these code snippets is a custom string that configures your Approov account access. This will have been provided in your Approov onboarding email.
You simply need to initialize Approov when the app is started, likely in the onCreate
method when the app is launched in androidApp/src
.
import io.approov.service.okhttp.ApproovService
ApproovService.initialize(getApplicationContext(), "<enter-your-config-string-here>")
The initialization procedure on iOS is slightly more complex. You need to initialize Approov once when the app is started, somewhere in iosApp/src
.
import approov_service_nsurlsession
ApproovService.initialize("<enter-your-config-string-here>", error: nil)
let delegate = IOSHttpClient.companion.getDelegate()
let session = ApproovNSURLSession.init(configuration: .default, delegate: delegate,
delegateQueue: OperationQueue.current)
IOSHttpClient.companion.setSession(pNSURLSession: session!)
This calls the Objective-C implemented Approov NSURLSession
from Swift. After Approov itself is initialized this obtains the Ktor delegate from IOSHttpClient
shown earlier in the shared code and constructs a ApproovNSURLSession
from it. This is then set in IOSHttpClient
where it can be used as the preconfigured session for constructing a customized Ktor HttpClient
.
Once the initialization is called, it is possible for any network requests to have Approov tokens or secret substitutions made. Initially you won't have set which API domains to protect, so the requests will be unchanged. It will have called Approov though and made contact with the Approov cloud service. You will see ApproovService
logging indicating UNKNOWN_URL
(Android) or unknown URL
(iOS).
On Android, you can see logging using logcat
output from the device. You can see the specific Approov output using adb logcat | grep ApproovService
. On iOS, look at the console output from the device using the Console app from MacOS. This provides console output for a connected simulator or physical device. Select the device and search for ApproovService
to obtain specific logging related to Approov.
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 Approov related methods.