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.
- package/android/build.gradle +3 -4
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -15,12 +15,12 @@ android {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
compileOptions {
|
|
18
|
-
sourceCompatibility JavaVersion.
|
|
19
|
-
targetCompatibility JavaVersion.
|
|
18
|
+
sourceCompatibility safeExtGet("javaVersion", JavaVersion.VERSION_17)
|
|
19
|
+
targetCompatibility safeExtGet("javaVersion", JavaVersion.VERSION_17)
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
kotlinOptions {
|
|
23
|
-
jvmTarget = "
|
|
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