This provides support for using Approov in NativeScript
mobile applications, including Angular and Vue. Support is provided for adding Approov protection to API requests made using the Http module
and also Angular Http
requests. Furthermore, requests using Axios
are also supported. 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 for Android the minimum supported version is 5.1 (SDK level 22). For iOS, only 64-bit devices are supported on iOS 12 or above.
Add the Approov plugin to your existing App with the following command:
ns plugin add @approov/nativescript-approov
In order to use Approov you should include the ApproovService
, which allows you to make certain calls to Approov from your application, as follows:
import { ApproovService } from '@approov/nativescript-approov';
You must initialize the ApproovService
as follows:
ApproovService.initialize("<enter-your-config-string-here>");
You should place this in your main app file so that it is executed immediately the app starts. 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.
Once the initialization has been made, Approov protection can be automatically added to network requests. Note that you must ensure that no network requests are executed prior to the initialization call being made.
For an Angular app you should place the initialization call in the constructor
of the App itself as follows:
export class AppModule {
constructor() {
ApproovService.initialize("<enter-your-config-string-here>");
}
}
For a Vue app you should place the initialization call in the beforeCreate
of the components that can be initially shown in the app`:
export default Vue.extend({
beforeCreate() {
ApproovService.initialize("<enter-your-config-string-here>");
}
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.