Giter VIP home page Giter VIP logo

snapkit's Introduction

Snapkit

Pub Package Code Analysis Android Builds iOS Builds

A plugin that allows developers like you to integrate with Snapchat (using SnapKit) into your Flutter applications!

Getting Started

Follow the Wiki for steps on how to get setup in an existing project or just copy the example project into a directory of your choosing and rename it.

Usage

Create new Instance

Snapkit snapkit = new Snapkit();

AuthState Stream

snapkit.onAuthStateChanged.listen((SnapchatUser? user) {
    // Do something with the returned SnapchatUser or null here
});

AuthState Class

class MyAppState extends State<MyApp> implements SnapchatAuthStateListener {

  snapkit.addAuthStateListener(this);

  @override
  void onLogin(SnapchatUser user) {
    // Do something with the returned SnapchatUser here
  }

  @override
  void onLogout() {
    // Do something on logout
  }

}

Login

await snapkit.login();

// or

snapkit.login().then(user => {});

Logout

await snapkit.logout();

// or

snapkit.logout().then(() => {});

Verify a Phone Number

Returns a bool if Snapchat has verified the phone number, throws an error if there was a problem. Always returns false on Android

snapkit.verifyPhoneNumber('US', '1231234567')
  .then(isVerified {})
  .catchError((error, StackTrace stacktrace) {})

Share to Snapchat

Share to LIVE

snapkit.share(SnapchatMediaType.NONE,
  sticker: SnapchatSticker?,
  caption: String?,
  attachmentUrl: String?
);

Share with Background Photo

snapkit.share(SnapchatMediaType.PHOTO,
  image: ImageProvider,
  sticker: SnapchatSticker?,
  caption: String?,
  attachmentUrl: String?
);

Share with Background Video

Currently unavailable on Android

snapkit.share(SnapchatMediaType.VIDEO,
  videoUrl: String,
  sticker: SnapchatSticker?,
  caption: String?,
  attachmentUrl: String?
);

SnapchatSticker

new SnapchatSticker(
  image: ImageProvider
);

snapkit's People

Contributors

timmyrb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

snapkit's Issues

Not loading image

Running on iOS, opens Snapchat, but couldn't launch the image which passed. As well, no error is thrown, only shows "Something went wrong, Please try again later".

Platform Exception Error when running app in release mode

Steps to Reproduce

  1. When the login button is pressed in release mode the platform error occurs

Expected results: Successful Login

Actual results: E/flutter (27362): [ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception: PlatformException(UnknownGetUserError, Unknown Error, 400, null)
E/flutter (27362): #0 Snapkit.currentUser (package:snapkit/snapkit.dart:138)
E/flutter (27362):
E/flutter (27362): #1 Snapkit.login (package:snapkit/snapkit.dart:57)
E/flutter (27362):
E/flutter (27362):**

Logs
  info • This class (or a class that this class inherits from) is marked as '@immutable', but one or more of its instance fields aren't final: HomeScreen.snapchatUser •
          lib/Screens/HomeScreen.dart:21:7 • must_be_immutable
   info • 'overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/HomeScreen.dart:501:59 • deprecated_member_use
   info • 'Overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/HomeScreen.dart:502:63 • deprecated_member_use
   info • Cancel instances of dart.async.StreamSubscription • lib/Screens/Mainscreen.dart:22:36 • cancel_subscriptions
   info • Unused import: 'package:path_provider/path_provider.dart' • lib/Screens/NewSnapScreen.dart:11:8 • unused_import
   info • This class (or a class that this class inherits from) is marked as '@immutable', but one or more of its instance fields aren't final: NewSnapScreen.snapchatUser
          • lib/Screens/NewSnapScreen.dart:17:7 • must_be_immutable
   info • 'overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/NewSnapScreen.dart:227:13 • deprecated_member_use
   info • 'Overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/NewSnapScreen.dart:227:23 • deprecated_member_use
   info • 'overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/NewSnapScreen.dart:419:31 • deprecated_member_use
   info • 'Overflow' is deprecated and shouldn't be used. Use clipBehavior instead. See the migration guide in flutter.dev/go/clip-behavior. This feature was deprecated
          after v1.22.0-12.0.pre. • lib/Screens/NewSnapScreen.dart:419:41 • deprecated_member_use
[✓] Flutter (Channel stable, 2.2.3-0.0.pre.2, on Mac OS X 10.15.7 19H1323 darwin-x64, locale en-PK)
    • Flutter version 2.2.3-0.0.pre.2 at /Users/Flash/Developer/flutter
    • Framework revision a794a412e1 (6 months ago), 2021-06-12 17:13:00 +0500
    • Engine revision 91c9fc8fe0
    • Dart version 2.13.3

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    • Android SDK at /Users/Flash/Library/Android/sdk
    • Platform android-31, build-tools 30.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.1, Build version 12A7403
    • CocoaPods version 1.10.1

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)

[✓] VS Code (version 1.62.3)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.29.0

[✓] Connected device (2 available)
    • Nokia 6 1 (mobile) • PL2GAMU841604032 • android-arm64  • Android 10 (API 29)
    • Chrome (web)       • chrome           • web-javascript • Google Chrome 96.0.4664.55

• No issues found!

Snapchat StoriesKit

  • iOS
  • Android

Note: Requires permission from Snap inc. before this can be implemented

share error

Share to snapkit, snapkit reported。 error, something went wrong. Please try again! Okay. I thought the integration was wrong, run your demo example, the result is the same error

`videoUrl` parameter documented incorrectly

In the docs, you state that in Snapkit.share:

SnapchatMediaType.VIDEO requires videoUrl to be non null.
[...]
videoUrl is a String that contains an external url eg. https://domain.com/video.mp4/

This, however, is not accurate because:

  1. There is no videoUrl parameter - there only is a videoPath parameter.
  2. The videoPath parameter loads the video from local assets (the rootBundle) rather than from an external URL.

Error on button click

Steps to Reproduce

  1. Run flutter run
  2. Update clientID
  3. Click open with snapchat
  4. The app navigates to Snapchat momentarily then displays Error. Something went wrong, please try again!.

Expected results:
It should navigate to snapchat momentarily then navigate back to the application with auth.

Actual results:
Errors on snapchat and doesn't redirect back to the application.

Logs
[   +2 ms] Flutter run key commands.
[   +1 ms] r Hot reload. 
[        ] R Hot restart.
[        ] h List all available interactive commands.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ]  Running with sound null safety 
[        ] An Observatory debugger and profiler on MI 9 is available at: http://127.0.0.1:56966/KqIIBOkoJd0=/
[ +779 ms] The Flutter DevTools debugger and profiler on MI 9 is available at: http://127.0.0.1:9104?uri=http://127.0.0.1:56966/KqIIBOkoJd0=/
[  +65 ms] I/snapkit_exampl(23335): ProcessProfilingInfo new_methods=2636 is saved saved_to_disk=1 resolve_classes_delay=8000
[+4823 ms] I/Timeline(23335): Timeline: Activity_launch_request time:35328867
Analyzing example...                                                    
No issues found! (ran in 2.5s)
• No issues found!

Error on Snapchat after sharing: "Something went wrong"

I have followed all the installation instructions for Android here: https://github.com/TimmyRB/snapkit/wiki/Android-Installation

I have created my snapchat app application and am using the Public OAuth 2.0 Client ID for the Staging App, Initial Version. And I added the redirect uri auth: myapp://snapchat/oauth2, with myapp replaced by my app name. I added the LoginKit and the CreativeKit. Snapchat says my application is still in review.

When I use snapkit.share, the app successfully redirects to Snapchat app, but Snapchat gives me the error: "Error. Something went wrong. Please try again!"

On snapchat app its showing `Something went wrong`

I have resolved some of the issues related to snapchat but now there is following problem.

When I click on Login with snapchat button from example project it navigates to app and app says Something went wrong and when I perform same thing 5-6 times then it will redirect to web and from there everything works

For Android everything works well from web but from app it shows error

For IOS even from web it says Safari cannot open the page because the address is invalid

SendMediaSendError

I have observed the following error in our crashalytics:

Fatal Exception: FlutterError
PlatformException(SendMediaSendError, Optional(Error Domain=SCSDKCreativeKitErrorDomain Code=5 "error_description_deep_link_failure" UserInfo={NSLocalizedRecoverySuggestion=recovery_suggestion_contact_snap_kit_support, NSLocalizedDescription=error_description_deep_link_failure, NSLocalizedFailureReason=}), null, null)
Fatal Exception: FlutterError
0  ???                            0x0 StandardMethodCodec.decodeEnvelope + 653 (message_codecs.dart:653)
1  ???                            0x0 MethodChannel._invokeMethod + 315 (platform_channel.dart:315)
2  ???                            0x0 Snapkit.share + 214 (snapkit.dart:214)
3  ???                            0x0 _SocialShareInviteState.initState.<fn> + 301 (screen.dart:301)

Not sure why it happens, or how to reproduce. It has happened to +800 unique users.

Can't run build - Undefined symbol: _OBJC_CLASS_$_SCSDKLoginClient

All of a sudden I can't run the build anymore - it worked fine yesterday, and we even released this version to TestFlight and it works fine, however, today when I try to run the client locally, I am getting this error:

Undefined symbol: _OBJC_CLASS_$_SCSDKLoginClient

image

I have tried running flutter clean, pod install and restarting the devices, but no luck.

Error when compiling app on Android

Thanks @TimmyRB for the plugin !
Actually i wanted to try it and unfortunately i can't build :/

Steps to Reproduce

  1. Build a new project with snapkit: 1.2.2
  2. See the error below

Expected results:

The application should compile.

Actual results:

The application can't compile and can't run on Android.

Logs Error log :
/Users/tom3652/StudioProjects/testproject/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java:184: error: cannot access LoginStateController
      flutterEngine.getPlugins().add(new com.jacobbrasil.snapkit.SnapkitPlugin());
                                ^
  class file for com.snapchat.kit.sdk.core.controller.LoginStateController not found
1 error

FAILURE: Build failed with an exception.

Flutter doctor output :

[✓] Flutter (Channel stable, 2.5.0, on macOS 11.6 20G165 darwin-x64, locale fr-FR)
    • Flutter version 2.5.0 at /Users/foxtom/Desktop/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 4cc385b4b8 (9 days ago), 2021-09-07 23:01:49 -0700
    • Engine revision f0826da7ef
    • Dart version 2.14.0

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Users/foxtom/Library/Android/sdk
    • Platform android-30, build-tools 30.0.3
    • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.5.1, Build version 12E507
    • CocoaPods version 1.11.0

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 2020.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)

[✓] VS Code (version 1.60.1)
    • VS Code at /Users/foxtom/Desktop/Visual Studio Code.app/Contents
    • Flutter extension version 3.26.0

[✓] Connected device (3 available)
    • CPH1931 (mobile) • ee9b32b5 • android-arm64  • Android 10 (API 29)
    • macOS (desktop)  • macos    • darwin-x64     • macOS 11.6 20G165 darwin-x64
    • Chrome (web)     • chrome   • web-javascript • Google Chrome 93.0.4577.82

• No issues found!

Build / sharing does not work targeting Android 31+

When following the Android installation guide and running on a Pixel 6, the following installation error is thrown:

adb: failed to install app.apk: Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during
installPackageLI: /data/app/vmdl1231205057.tmp/base.apk (at Binary XML file line #68): com.snapchat.kit.sdk.SnapKitActivity: Targeting S+ (version 31 and above) requires that an explicit value for
android:exported be defined when intent filters are present]

After adding android:exported="false" to the activity, the following error is thrown during runtime:

Unhandled Exception: PlatformException(error, fun.gatch.story_sharing_example: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.

Workaround

A workaround I was able to use was downgarding the targetSdkVersion to 30 in app/build.gradle:

...
        minSdkVersion 21
        targetSdkVersion 30
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }
...

`attachmentUrl` no longer working

We have recently updated our app, and all of a sudden the attachmentUrl is not working anymore. There's simply not a link in the snapchat app, despite being there in a previous version.

I have verified the shared link is what's accepted by the snapchat developer platform (which haven't changed by the way).

We updated other dependencies, but snapkit seems to be stable on version 2, so I am not sure exactly what happened here

fixing video upload from android

The problem is that snapkit package is currently unavailable to share video on Android.

actually, it's not unavailable as it is described on the package readme page, you can share the video if it's an asset only, and that is because the share function (line 200) uses the rootBundle to load the video
The solution is too simple just replace this line:
ByteData byteData = await rootBundle.load(videoPath!);
with this line:
Uint8List byteData = await File(videoPath!).readAsBytes();

now we can call the share function and just give it the video path.

Verify Phone Number

  • iOS
  • Android

Note: Android SDK doesn't seem to include a way to verify phone numbers through Snapchat, might have to always return false when run on Android

Snap Media Video on Android

Currently the SnapKit Android version does not support VideoURLs so when your app is run on Android, the user will instead be shown a Live camera view instead of the video.

This is something I am actively working on fixing.

Running example on ios casuing errors

I am running an example with clientID and redirect URI... its running on android but on IOS its showing some error:
1). Removed the snapkit path from pubspec.yaml file and added snapkit: ^2.0.0
2). cd ios
3). pod install
4). Run the project
5). Got errors

ERROR

Launching lib/main.dart on iPhone 13 in debug mode...
Xcode build done.                                            6.6s
Failed to build iOS app
Error output from Xcode build:
↳
    objc[24315]: Class AMSupportURLConnectionDelegate is implemented in both /usr/lib/libauthinstall.dylib (0x21ebd6b90) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1039b02c8). One of the two will be used. Which one is undefined.
    objc[24315]: Class AMSupportURLSession is implemented in both /usr/lib/libauthinstall.dylib (0x21ebd6be0) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1039b0318). One of the two will be used. Which one is undefined.
    ** BUILD FAILED **
Xcode's output:
↳
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKLoginKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:
    #import "SCSDKLoginButton.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKLoginKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:
    #import "SCSDKLoginButton.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:9:
    #import "SCSDKBitmojiClient.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: note: insert '_Nullable' if the pointer may be null
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: note: insert '_Nonnull' if the pointer should never be null
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: note: insert '_Nullable' if the pointer may be null
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: note: insert '_Nonnull' if the pointer should never be null
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: note: insert '_Nullable' if the pointer may be null
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: note: insert '_Nonnull' if the pointer should never be null
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: note: insert '_Nullable' if the pointer may be null
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: note: insert '_Nonnull' if the pointer should never be null
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKLoginKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:
    #import "SCSDKLoginButton.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKLoginKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginKit.h:12:
    #import "SCSDKLoginButton.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/Headers/SCSDKLoginButton.h:18:77: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithCompletion:(nullable void (^)(BOOL success, NSError *error))completion NS_DESIGNATED_INITIALIZER;
                                                                                ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:9:
    #import "SCSDKBitmojiClient.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: note: insert '_Nullable' if the pointer may be null
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiClient.h:11:17: note: insert '_Nonnull' if the pointer should never be null
    extern NSString *const kSCSDKBitmojiClientRequiredScope;
                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:47:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withBackgroundColor:(nonnull UIColor *)backgroundColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:49:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withTitleTextColor:(nonnull UIColor *)titleTextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:51:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSubtextColor:(nonnull UIColor *)subtextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:53:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withBorderColor:(nonnull UIColor *)borderColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:55:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withErrorRed:(nonnull UIColor *)errorRed;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:57:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchColor:(nonnull UIColor *)searchColor NS_SWIFT_NAME(withSearchColor(_:));
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:59:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withNavIconColor:(nonnull UIColor *)navIconColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:61:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillTextColor:(nonnull UIColor *)searchPillTextColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:63:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillColors:(nullable NSArray<UIColor *> *)searchPillColors;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:65:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withSearchPillShadowColor:(nonnull UIColor *)searchPillShadowColor;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:9:
    #import "SCSDKBitmojiStickerPickerTheme.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerTheme.h:67:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShouldRandomizeSearchPillColors:(BOOL)shouldRandomizeSearchPillColors;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:25:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShowSearchBar:(BOOL)showSearchBar;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:27:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withShowSearchPills:(BOOL)showSearchPills;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:10:
    #import "SCSDKBitmojiStickerPickerConfig.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerConfig.h:29:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)withTheme:(nonnull SCSDKBitmojiStickerPickerTheme *)theme;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:4: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
       ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: note: insert '_Nullable' if the pointer may be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:75:65: note: insert '_Nonnull' if the pointer should never be null
    - (instancetype)initWithConfig:(SCSDKBitmojiStickerPickerConfig *)config;
                                                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: note: insert '_Nullable' if the pointer may be null
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:92:33: note: insert '_Nonnull' if the pointer should never be null
    - (void)setSearchTerm:(NSString *)text searchMode:(SCSDKBitmojiStickerPickerSearchMode)searchMode;
                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: note: insert '_Nullable' if the pointer may be null
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:93:49: note: insert '_Nonnull' if the pointer should never be null
    - (void)attachBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Headers/SCSDKBitmojiKit.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:9: note: in file included from /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiKit.h:12:
    #import "SCSDKBitmojiStickerPickerViewController.h"
            ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: note: insert '_Nullable' if the pointer may be null
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/Headers/SCSDKBitmojiStickerPickerViewController.h:94:49: note: insert '_Nonnull' if the pointer should never be null
    - (void)removeBitmojiIcon:(SCSDKBitmojiIconView *)bitmojiIcon;
                                                    ^
    ld: warning: ignoring file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/SCSDKBitmojiKit, missing required architecture arm64 in file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKBitmojiKit/SCSDKBitmojiKit.framework/SCSDKBitmojiKit (2 slices)
    ld: warning: ignoring file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKCoreKit/SCSDKCoreKit.framework/SCSDKCoreKit, missing required architecture arm64 in file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKCoreKit/SCSDKCoreKit.framework/SCSDKCoreKit (2 slices)
    ld: warning: ignoring file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/SCSDKLoginKit, missing required architecture arm64 in file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKLoginKit/SCSDKLoginKit.framework/SCSDKLoginKit (2 slices)
    ld: warning: ignoring file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKCreativeKit/SCSDKCreativeKit.framework/SCSDKCreativeKit, missing required architecture arm64 in file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKCreativeKit/SCSDKCreativeKit.framework/SCSDKCreativeKit (2 slices)
    ld: warning: ignoring file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKStoryKit/SCSDKStoryKit.framework/SCSDKStoryKit, missing required architecture arm64 in file /Users/arslankaleem/Flutter workspace/Junk/snapkit/example/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/SnapSDK/SCSDKStoryKit/SCSDKStoryKit.framework/SCSDKStoryKit (2 slices)
    Undefined symbols for architecture arm64:
      "_OBJC_CLASS_$_SCSDKVerifyClient", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKPhotoSnapContent", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKSnapPhoto", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKVideoSnapContent", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKSnapSticker", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKSnapAPI", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKSnapVideo", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKLoginClient", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
      "_OBJC_CLASS_$_SCSDKNoSnapContent", referenced from:
          objc-class-ref in SwiftSnapkitPlugin.o
    ld: symbol(s) not found for architecture arm64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    note: Using new build system
    note: Planning
    note: Build preparation complete
    note: Building targets in dependency order
Could not build the application for the simulator.
Error launching application on iPhone 13.
Exited (sigterm)

flutter doctor -v

arslankaleem@Arslans-MBP example % flutter doctor -v
[✓] Flutter (Channel stable, 2.8.1, on macOS 12.1 21C52 darwin-arm, locale en-PK)
    • Flutter version 2.8.1 at /Users/arslankaleem/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 77d935af4d (3 weeks ago), 2021-12-16 08:37:33 -0800
    • Engine revision 890a5fca2e
    • Dart version 2.15.1

[✓] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
    • Android SDK at /Users/arslankaleem/Library/Android/sdk
    • Platform android-32, build-tools 32.0.0
    • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 13.2.1)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • CocoaPods version 1.11.2

[✓] Android Studio (version 2020.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)

[✓] VS Code (version 1.63.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.32.0

[✓] Connected device (1 available)
    • iPhone 13 (mobile) • B3946FC1-A069-4CF8-B399-5E968197302B • ios • com.apple.CoreSimulator.SimRuntime.iOS-15-2 (simulator)

• No issues found!

Found an issue while compiling in ios

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:113:5: warning: 'public' modifier is redundant for property
declared in a public extension
public var snp_center: ConstraintItem { return self.snp.center }
^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:117:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_margins: ConstraintItem { return self.snp.margins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:121:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerWithinMargins: ConstraintItem { return self.snp.centerWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:124:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_prepareConstraints(_ closure: (_ make: ConstraintMaker) -> Void) -> [Constraint] {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:129:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_makeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:134:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_remakeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:139:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_updateConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:144:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_removeConstraints() {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:148:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintViewDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintDSL.swift:118:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use .lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMaker.swift:72:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/Debugging.swift:32:14: warning: 'public' modifier is redundant for property declared in a public
extension
    override public var description: String {
             ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerExtendable.swift:83:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.required) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.high) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.medium) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.low) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift:32:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintLayoutSupportDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:33:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:36:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:39:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:42:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:48:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:54:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:60:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:66:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:106:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:109:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:112:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:123:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:128:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:133:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:138:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:143:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:34:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_left: ConstraintItem { return self.snp.left }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:37:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_top: ConstraintItem { return self.snp.top }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:40:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_right: ConstraintItem { return self.snp.right }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:43:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottom: ConstraintItem { return self.snp.bottom }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:46:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leading: ConstraintItem { return self.snp.leading }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:49:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailing: ConstraintItem { return self.snp.trailing }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:52:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_width: ConstraintItem { return self.snp.width }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:55:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_height: ConstraintItem { return self.snp.height }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:58:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerX: ConstraintItem { return self.snp.centerX }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:61:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerY: ConstraintItem { return self.snp.centerY }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:64:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_baseline: ConstraintItem { return self.snp.baseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:68:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_lastBaseline: ConstraintItem { return self.snp.lastBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:72:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_firstBaseline: ConstraintItem { return self.snp.firstBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:76:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leftMargin: ConstraintItem { return self.snp.leftMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:80:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_topMargin: ConstraintItem { return self.snp.topMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:84:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_rightMargin: ConstraintItem { return self.snp.rightMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:88:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottomMargin: ConstraintItem { return self.snp.bottomMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:92:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leadingMargin: ConstraintItem { return self.snp.leadingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:96:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailingMargin: ConstraintItem { return self.snp.trailingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:100:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerXWithinMargins: ConstraintItem { return self.snp.centerXWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:104:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerYWithinMargins: ConstraintItem { return self.snp.centerYWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:107:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_edges: ConstraintItem { return self.snp.edges }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:110:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_size: ConstraintItem { return self.snp.size }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:113:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_center: ConstraintItem { return self.snp.center }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:117:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_margins: ConstraintItem { return self.snp.margins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:121:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerWithinMargins: ConstraintItem { return self.snp.centerWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:124:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_prepareConstraints(_ closure: (_ make: ConstraintMaker) -> Void) -> [Constraint] {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:129:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_makeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:134:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_remakeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:139:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_updateConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:144:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_removeConstraints() {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:148:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintViewDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintDSL.swift:118:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use .lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMaker.swift:72:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/Debugging.swift:32:14: warning: 'public' modifier is redundant for property declared in a public
extension
    override public var description: String {
             ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerExtendable.swift:83:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.required) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.high) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.medium) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.low) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift:32:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintLayoutSupportDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:33:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:36:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:39:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:42:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:48:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:54:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:60:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:66:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:106:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:109:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:112:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:123:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:128:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:133:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:138:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:143:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:34:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_left: ConstraintItem { return self.snp.left }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:37:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_top: ConstraintItem { return self.snp.top }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:40:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_right: ConstraintItem { return self.snp.right }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:43:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottom: ConstraintItem { return self.snp.bottom }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:46:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leading: ConstraintItem { return self.snp.leading }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:49:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailing: ConstraintItem { return self.snp.trailing }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:52:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_width: ConstraintItem { return self.snp.width }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:55:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_height: ConstraintItem { return self.snp.height }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:58:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerX: ConstraintItem { return self.snp.centerX }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:61:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerY: ConstraintItem { return self.snp.centerY }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:64:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_baseline: ConstraintItem { return self.snp.baseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:68:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_lastBaseline: ConstraintItem { return self.snp.lastBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:72:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_firstBaseline: ConstraintItem { return self.snp.firstBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:76:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leftMargin: ConstraintItem { return self.snp.leftMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:80:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_topMargin: ConstraintItem { return self.snp.topMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:84:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_rightMargin: ConstraintItem { return self.snp.rightMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:88:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottomMargin: ConstraintItem { return self.snp.bottomMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:92:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leadingMargin: ConstraintItem { return self.snp.leadingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:96:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailingMargin: ConstraintItem { return self.snp.trailingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:100:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerXWithinMargins: ConstraintItem { return self.snp.centerXWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:104:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerYWithinMargins: ConstraintItem { return self.snp.centerYWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:107:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_edges: ConstraintItem { return self.snp.edges }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:110:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_size: ConstraintItem { return self.snp.size }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:113:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_center: ConstraintItem { return self.snp.center }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:117:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_margins: ConstraintItem { return self.snp.margins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:121:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerWithinMargins: ConstraintItem { return self.snp.centerWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:124:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_prepareConstraints(_ closure: (_ make: ConstraintMaker) -> Void) -> [Constraint] {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:129:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_makeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:134:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_remakeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:139:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_updateConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:144:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_removeConstraints() {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:148:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintViewDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintDSL.swift:118:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use .lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMaker.swift:72:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/Debugging.swift:32:14: warning: 'public' modifier is redundant for property declared in a public
extension
    override public var description: String {
             ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerExtendable.swift:83:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.required) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.high) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.medium) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.low) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift:32:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintLayoutSupportDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:33:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:36:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:39:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:42:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:48:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:54:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:60:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:66:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:106:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:109:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:112:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:123:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:128:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:133:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:138:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:143:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use newer snp.* syntax.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:34:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_left: ConstraintItem { return self.snp.left }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:37:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_top: ConstraintItem { return self.snp.top }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:40:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_right: ConstraintItem { return self.snp.right }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:43:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottom: ConstraintItem { return self.snp.bottom }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:46:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leading: ConstraintItem { return self.snp.leading }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:49:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailing: ConstraintItem { return self.snp.trailing }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:52:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_width: ConstraintItem { return self.snp.width }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:55:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_height: ConstraintItem { return self.snp.height }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:58:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerX: ConstraintItem { return self.snp.centerX }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:61:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerY: ConstraintItem { return self.snp.centerY }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:64:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_baseline: ConstraintItem { return self.snp.baseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:68:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_lastBaseline: ConstraintItem { return self.snp.lastBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:72:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_firstBaseline: ConstraintItem { return self.snp.firstBaseline }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:76:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leftMargin: ConstraintItem { return self.snp.leftMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:80:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_topMargin: ConstraintItem { return self.snp.topMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:84:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_rightMargin: ConstraintItem { return self.snp.rightMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:88:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_bottomMargin: ConstraintItem { return self.snp.bottomMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:92:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_leadingMargin: ConstraintItem { return self.snp.leadingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:96:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_trailingMargin: ConstraintItem { return self.snp.trailingMargin }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:100:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerXWithinMargins: ConstraintItem { return self.snp.centerXWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:104:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerYWithinMargins: ConstraintItem { return self.snp.centerYWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:107:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_edges: ConstraintItem { return self.snp.edges }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:110:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_size: ConstraintItem { return self.snp.size }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:113:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_center: ConstraintItem { return self.snp.center }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:117:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_margins: ConstraintItem { return self.snp.margins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:121:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp_centerWithinMargins: ConstraintItem { return self.snp.centerWithinMargins }
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:124:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_prepareConstraints(_ closure: (_ make: ConstraintMaker) -> Void) -> [Constraint] {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:129:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_makeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:134:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_remakeConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:139:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_updateConstraints(_ closure: (_ make: ConstraintMaker) -> Void) {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:144:5: warning: 'public' modifier is redundant for instance
method declared in a public extension
    public func snp_removeConstraints() {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintView+Extensions.swift:148:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintViewDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintDSL.swift:118:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use .lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMaker.swift:72:6: warning: unexpected version number in 'available' attribute for
non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/Debugging.swift:32:14: warning: 'public' modifier is redundant for property declared in a public
extension
    override public var description: String {
             ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerExtendable.swift:83:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use lastBaseline instead")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:45:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.required) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:51:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.high) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:57:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.medium) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift:63:6: warning: unexpected version number in 'available'
attribute for non-specific platform '*'
    @available(*, deprecated:3.0, message:"Use priority(.low) instead.")
     ^                      ~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift:32:5: warning: 'public' modifier is redundant for property
declared in a public extension
    public var snp: ConstraintLayoutSupportDSL {
    ^~~~~~~

/Users/imac/DATA/project/demo project/snapchat_login_app/ios/Runner/GeneratedPluginRegistrant.m:12:9: fatal error: module 'path_provider' not found
@import path_provider;
 ~~~~~~~^~~~~~~~~~~~~
1 error generated.
1 error generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description

Could not build the application for the simulator.
Error launching application on iPhone 11 Pro Max.

I found this type of error while run my app in ios.

Android app not run this snapkit in flutter

dart: ">=2.17.6 <3.0.0"
flutter: ">=3.0.0"

I have done android folder code

when we add snapkit: ^2.0.0 lib in pubspec.yaml And run project
than get this error

A problem occurred configuring project ':path_provider_android'.

Could not open cp_proj generic class cache for build file 'C:\flutter.pub-cache\hosted\pub.dartlang.org\path_provider_android-2.0.20\android\build.gradle' (C:\Users\Lenovo.gradle\caches\7.4\scripts\b2vdqg6c7aareyvcslpc1ij96).
Unexpected lock protocol found in lock file. Expected 3, found 0.
Failed to notify project evaluation listener.
Could not get unknown property 'android' for project ':path_provider_android' of type org.gradle.api.Project.
Could not get unknown property 'android' for project ':path_provider_android' of type org.gradle.api.Project.

Stickers on Android

There is an issue where Sticker images don't always appear on the Snapchat app on Android, this is being looked into.

SnapChat errors on IOS

[VERBOSE-2:ui_dart_state.cc(186)] Unhandled Exception: PlatformException(SendMediaSendError, Optional(Error Domain=SCSDKCreativeKitErrorDomain Code=4 "error_description_encryption_metadata_read_failure" UserInfo={NSLocalizedRecoverySuggestion=Please contact [email protected] if problem persists., NSLocalizedDescription=error_description_encryption_metadata_read_failure, NSLocalizedFailureReason=}), null, null)
#0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:581:7)
#1 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:158:18)

#2 Snapkit.share (package:snapkit/snapkit.dart:129:5)

Ios Exception

Hi
I tried to share an image with Snapchat
it works in android but I got an exception in ios

I already add user demo & bundle id

[VERBOSE-2:ui_dart_state.cc(199)] Unhandled Exception: PlatformException(SendMediaSendError, Optional(Error Domain=SCSDKCreativeKitErrorDomain Code=10 "error_description_malformed_url" UserInfo={NSLocalizedRecoverySuggestion=recovery_suggestion_check_documentation, NSLocalizedDescription=error_description_malformed_url, NSLocalizedFailureReason=}), null, null)
#0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:597:7)
#1 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:158:18)

#2 Snapkit.share (package:snapkit/snapkit.dart:193:5)

TestFlight problem

Hello,
sharing to snap as stickers in IOS is working fine in debug and release mode but after upload the app to
Test Flight and tried to share SnapChat the app crashed.

is there any way to find the problem ?

Client ID

Your "client_id" is in the example.

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.