Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagegroovy
android {
	compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
	implementation 'com.navmii.android:dashcam-sdk:1.2.0-137138'
}

If you want to always use the latest version of the SDK, you can specify a dynamic version instead of a fixed one. For example:

...