Skip to content

Commit 9c4f6e3

Browse files
authored
Merge pull request #99 from mixpanel/bump-ios-android-versions
bump ios to 4.0.5 and android to 7.3.0
2 parents ddcb28b + e893cca commit 9c4f6e3

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/flutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
run: flutter pub get
5454
- name: Test iOS integration
5555
working-directory: example
56-
run: flutter build ios --debug --no-codesign
56+
run: flutter build ios --debug --simulator --no-codesign

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ android {
3535
}
3636

3737
dependencies {
38-
implementation "com.mixpanel.android:mixpanel-android:7.0.1"
38+
implementation "com.mixpanel.android:mixpanel-android:7.3.0"
3939
}

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '9.0'
2+
platform :ios, '11.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@
362362
"$(PROJECT_DIR)/Flutter",
363363
);
364364
INFOPLIST_FILE = Runner/Info.plist;
365+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
365366
LD_RUNPATH_SEARCH_PATHS = (
366367
"$(inherited)",
367368
"@executable_path/Frameworks",
@@ -499,6 +500,7 @@
499500
"$(PROJECT_DIR)/Flutter",
500501
);
501502
INFOPLIST_FILE = Runner/Info.plist;
503+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
502504
LD_RUNPATH_SEARCH_PATHS = (
503505
"$(inherited)",
504506
"@executable_path/Frameworks",
@@ -530,6 +532,7 @@
530532
"$(PROJECT_DIR)/Flutter",
531533
);
532534
INFOPLIST_FILE = Runner/Info.plist;
535+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
533536
LD_RUNPATH_SEARCH_PATHS = (
534537
"$(inherited)",
535538
"@executable_path/Frameworks",

ios/mixpanel_flutter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Pod::Spec.new do |s|
1212
s.source = { :path => '.' }
1313
s.source_files = 'Classes/**/*'
1414
s.dependency 'Flutter'
15-
s.dependency 'Mixpanel-swift', '4.0.1'
16-
s.platform = :ios, '9.0'
15+
s.dependency 'Mixpanel-swift', '4.0.5'
16+
s.platform = :ios, '11.0'
1717

1818
# Flutter.framework does not contain a i386 slice.
1919
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

0 commit comments

Comments
 (0)