mixpanel-react-native 3.0.6 → 3.0.7
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
#
|
|
2
2
|
|
|
3
|
+
## [v3.0.7](https://github.com/mixpanel/mixpanel-react-native/tree/v3.0.7) (2024-09-26)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- Revert the minSDK to 21 [\#271](https://github.com/mixpanel/mixpanel-react-native/pull/271)
|
|
8
|
+
- revert android [\#267](https://github.com/mixpanel/mixpanel-react-native/pull/267)
|
|
9
|
+
|
|
10
|
+
#
|
|
11
|
+
|
|
3
12
|
## [v3.0.6](https://github.com/mixpanel/mixpanel-react-native/tree/v3.0.6) (2024-09-10)
|
|
4
13
|
|
|
5
14
|
### Enhancements
|
|
@@ -461,3 +470,5 @@ This major release removes all remaining calls to Mixpanel's `/decide` API endpo
|
|
|
461
470
|
|
|
462
471
|
|
|
463
472
|
|
|
473
|
+
|
|
474
|
+
|
package/android/build.gradle
CHANGED
|
@@ -21,7 +21,7 @@ android {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
defaultConfig {
|
|
24
|
-
minSdkVersion
|
|
24
|
+
minSdkVersion 21
|
|
25
25
|
targetSdkVersion 34
|
|
26
26
|
versionCode 1
|
|
27
27
|
versionName "1.0"
|
|
@@ -41,5 +41,5 @@ repositories {
|
|
|
41
41
|
|
|
42
42
|
dependencies {
|
|
43
43
|
implementation 'com.facebook.react:react-native:+'
|
|
44
|
-
implementation 'com.mixpanel.android:mixpanel-android:7.5.
|
|
44
|
+
implementation 'com.mixpanel.android:mixpanel-android:7.5.2'
|
|
45
45
|
}
|