Project Setup

The Android SDK has been VAPT (Vulnerability Assessment and Penetration Testing) tested .

You can find the detailed report in the PDF attached below.


Add Accura SDK's to your App

Step 1: Add the JitPack repository

  1. In your root-level (project-level) Gradle file (<project>/build.gradle)

    allprojects {
        repositories {
            ...
            maven {
                url 'https://jitpack.io'
                credentials { username authToken }
            }
        }
    }
  2. Add the token to gradle.properties

    authToken=jp_ssguccab6c5ge2l4jitaj92ek2
    

Step 2: Add dependency

In your module (app-level) Gradle file (usually <project>/<app-module>/build.gradle), add the dependencies for the Accura Products.

Step 3: Required Adanced setup as per requirement

Add some more setup in your module (app-level) Gradle file (usually <project>/<app-module>/build.gradle), for the Accura Products.

  1. Specify CPU architectures as per your Requirement.

  2. Add Packaging option for some .so files, for multiple Accura Products

Note: Add Packaging options are required for multiple Accura Products used in same Project

Last updated