Skip to content

Commit 864f6b5

Browse files
committed
example app updates
1 parent d659a0c commit 864f6b5

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ jitsiMeet.join(options);
6565

6666
### iOS
6767

68-
Make sure in `Podfile` from `ios` directory you set the ios version `13.4 or higher`
68+
Make sure in `Podfile` from `ios` directory you set the ios version `15.1 or higher`
6969

7070
```
71-
platform :ios, '13.4'
71+
platform :ios, '15.1'
7272
```
7373

7474
The plugin requests camera and microphone access, make sure to include the required entries for `NSCameraUsageDescription` and `NSMicrophoneUsageDescription` in your `Info.plist` file from the `ios/Runner` directory.

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PODS:
44
- libwebp
55
- integration_test (0.0.1):
66
- Flutter
7-
- jitsi_meet_flutter_sdk (10.2.0):
7+
- jitsi_meet_flutter_sdk (10.2.1):
88
- Flutter
99
- JitsiMeetSDK (= 10.2.1)
1010
- JitsiMeetSDK (10.2.1):
@@ -48,7 +48,7 @@ SPEC CHECKSUMS:
4848
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
4949
Giphy: 6b5f6986c8df4f71e01a8ef86595f426b3439fb5
5050
integration_test: 252f60fa39af5e17c3aa9899d35d908a0721b573
51-
jitsi_meet_flutter_sdk: fc492679013136b4243c8771d354345fcaef465f
51+
jitsi_meet_flutter_sdk: 1c75d5f7cf2f8a893d36fd6bb90d69ac02a87de9
5252
JitsiMeetSDK: cdba360baf6426a2f98cdc313c5b352d8cd3bbd7
5353
JitsiWebRTC: d0ae5fd6a81e771bfd82c2ee6c6bb542ebd65ee8
5454
libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
97C146E61CF9000F007C117D /* Project object */ = {
215215
isa = PBXProject;
216216
attributes = {
217-
LastUpgradeCheck = 1520;
217+
LastUpgradeCheck = 1510;
218218
ORGANIZATIONNAME = "";
219219
TargetAttributes = {
220220
331C8080294A63A400263BE5 = {
@@ -451,7 +451,7 @@
451451
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
452452
GCC_WARN_UNUSED_FUNCTION = YES;
453453
GCC_WARN_UNUSED_VARIABLE = YES;
454-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
454+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
455455
MTL_ENABLE_DEBUG_INFO = NO;
456456
SDKROOT = iphoneos;
457457
SUPPORTED_PLATFORMS = iphoneos;
@@ -580,7 +580,7 @@
580580
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
581581
GCC_WARN_UNUSED_FUNCTION = YES;
582582
GCC_WARN_UNUSED_VARIABLE = YES;
583-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
583+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
584584
MTL_ENABLE_DEBUG_INFO = YES;
585585
ONLY_ACTIVE_ARCH = YES;
586586
SDKROOT = iphoneos;
@@ -629,7 +629,7 @@
629629
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
630630
GCC_WARN_UNUSED_FUNCTION = YES;
631631
GCC_WARN_UNUSED_VARIABLE = YES;
632-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
632+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
633633
MTL_ENABLE_DEBUG_INFO = NO;
634634
SDKROOT = iphoneos;
635635
SUPPORTED_PLATFORMS = iphoneos;

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1520"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import UIKit
22
import Flutter
33

4-
@UIApplicationMain
4+
@main
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,

ios/jitsi_meet_flutter_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'jitsi_meet_flutter_sdk'
7-
s.version = '10.2.0'
7+
s.version = '10.2.1'
88
s.summary = 'Jitsi Meet Flutter SDK'
99
s.description = <<-DESC
1010
Jitsi Meet Flutter SDK

0 commit comments

Comments
 (0)