pushwave-client 0.1.8 → 0.2.0

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.
@@ -51,5 +51,5 @@ repositories {
51
51
  dependencies {
52
52
  implementation "com.facebook.react:react-native:+"
53
53
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
54
- implementation "com.google.android.play:integrity:1.4.0"
54
+ implementation "com.google.android.play:integrity:1.6.0"
55
55
  }
@@ -6,9 +6,9 @@ import com.facebook.react.bridge.ReactContextBaseJavaModule
6
6
  import com.facebook.react.bridge.ReactMethod
7
7
  import com.google.android.gms.tasks.OnFailureListener
8
8
  import com.google.android.gms.tasks.OnSuccessListener
9
- import com.google.android.play.integrity.IntegrityManagerFactory
10
- import com.google.android.play.integrity.StandardIntegrityManager
11
- import com.google.android.play.integrity.StandardIntegrityTokenRequest
9
+ import com.google.android.play.core.integrity.IntegrityManagerFactory
10
+ import com.google.android.play.core.integrity.StandardIntegrityManager
11
+ import com.google.android.play.core.integrity.StandardIntegrityTokenRequest
12
12
 
13
13
  class PushwaveAttestationModule(private val context: ReactApplicationContext) :
14
14
  ReactContextBaseJavaModule(context) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pushwave-client",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "PushWave Client, Expo Push Notifications SaaS SDK",
5
5
  "homepage": "https://github.com/luruk-hai/pushwave-client#readme",
6
6
  "bugs": {
package/plugin/index.js CHANGED
@@ -6,7 +6,7 @@ const {
6
6
 
7
7
  const pkg = require("../package.json");
8
8
 
9
- const PLAY_INTEGRITY_DEP = 'implementation("com.google.android.play:integrity:1.4.0")';
9
+ const PLAY_INTEGRITY_DEP = 'implementation("com.google.android.play:integrity:1.6.0")';
10
10
 
11
11
  function injectDependency(contents) {
12
12
  if (contents.includes(PLAY_INTEGRITY_DEP)) return contents;