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.
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
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.
|
|
139
|
+
testImplementation 'com.mparticle:android-core:5.79.2'
|
|
140
140
|
testImplementation("com.facebook.react:react-android:+")
|
|
141
141
|
}
|
package/package.json
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|