react-native-mparticle 3.1.4 → 3.1.5

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.
@@ -120,7 +120,7 @@ dependencies {
120
120
  //
121
121
  // Bounded upper bound prevents resolving to 6.0.0-rc.1+ on Maven Central.
122
122
  // 6.x removed deprecated symbols (e.g. UserAttributeListener); see #710.
123
- api 'com.mparticle:android-core:[5.79.0, 6.0)'
123
+ api 'com.mparticle:android-core:[5.79.2, 6.0)'
124
124
 
125
125
  //
126
126
  // And, if you want to include kits, you can do so as follows:
@@ -136,6 +136,6 @@ dependencies {
136
136
  testImplementation 'junit:junit:4.13.2'
137
137
  testImplementation files('libs/java-json.jar')
138
138
 
139
- testImplementation 'com.mparticle:android-core:5.79.0'
139
+ testImplementation 'com.mparticle:android-core:5.79.2'
140
140
  testImplementation("com.facebook.react:react-android:+")
141
141
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "homepage": "https://www.mparticle.com",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "mParticle/react-native-mparticle",
7
- "version": "3.1.4",
7
+ "version": "3.1.5",
8
8
  "main": "lib/index.js",
9
9
  "types": "lib/index.d.ts",
10
10
  "react-native": "js/index",
@@ -287,7 +287,7 @@ const withMParticleAppBuildGradle = (config, props) => {
287
287
  // to a pre-release (e.g. 6.0.0-rc.1) and transitively drag the core past
288
288
  // the bridge's compiled-against API surface.
289
289
  const kitDependencies = props.androidKits
290
- .map(kit => ` implementation "com.mparticle:${kit}:[5.79.0, 6.0)"`)
290
+ .map(kit => ` implementation "com.mparticle:${kit}:[5.79.2, 6.0)"`)
291
291
  .join('\n');
292
292
  // Use mergeContents for idempotent injection
293
293
  const withKits = (0, generateCode_1.mergeContents)({
@@ -385,7 +385,7 @@ const withMParticleAppBuildGradle: ConfigPlugin<MParticlePluginProps> = (
385
385
  // to a pre-release (e.g. 6.0.0-rc.1) and transitively drag the core past
386
386
  // the bridge's compiled-against API surface.
387
387
  const kitDependencies = props.androidKits
388
- .map(kit => ` implementation "com.mparticle:${kit}:[5.79.0, 6.0)"`)
388
+ .map(kit => ` implementation "com.mparticle:${kit}:[5.79.2, 6.0)"`)
389
389
  .join('\n');
390
390
 
391
391
  // Use mergeContents for idempotent injection