react-native-app-attestation 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,12 +15,12 @@ android {
15
15
  }
16
16
 
17
17
  compileOptions {
18
- sourceCompatibility JavaVersion.VERSION_1_8
19
- targetCompatibility JavaVersion.VERSION_1_8
18
+ sourceCompatibility safeExtGet("javaVersion", JavaVersion.VERSION_17)
19
+ targetCompatibility safeExtGet("javaVersion", JavaVersion.VERSION_17)
20
20
  }
21
21
 
22
22
  kotlinOptions {
23
- jvmTarget = "1.8"
23
+ jvmTarget = safeExtGet("kotlinJvmTarget", "17")
24
24
  }
25
25
  }
26
26
 
@@ -30,7 +30,6 @@ repositories {
30
30
  }
31
31
 
32
32
  dependencies {
33
- // Provided by the host app / React Native Gradle plugin
34
33
  implementation "com.facebook.react:react-android"
35
34
  implementation "com.google.android.play:integrity:1.3.0"
36
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-app-attestation",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Mobile app attestation for React Native — Android Play Integrity & iOS App Attest",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",