AppsFlyerSDK / appsflyer-capacitor-plugin

AppsFlyer SDK plugin for Capacitor
MIT License
15 stars 26 forks source link

iOS min platform version #15

Closed bfine9618 closed 2 years ago

bfine9618 commented 2 years ago

Using version 6.4.4 causes an issue with my pod install.

AppsflyerCapacitorPlugin: Using default AppsFlyerFramework.You may require App Tracking Transparency. Not
        allowed for Kids apps.
        AppsflyerCapacitorPlugin: You may set variable `$AppsFlyerStrictMode=true` in Podfile to use strict mode for
        kids apps.
        [!] CocoaPods could not find compatible versions for pod "AppsFlyerFramework":
        In Podfile:
        AppsFlyerFramework

        AppsflyerCapacitorPlugin (from `../../node_modules/appsflyer-capacitor-plugin`) was resolved to 6.4.4, which
        depends on
        AppsFlyerFramework (= 6.4.4)

        Specs satisfying the `AppsFlyerFramework, AppsFlyerFramework (= 6.4.4)` dependency were found, but they required
        a higher minimum deployment target.

When i downgrade the plugin version to 6.4.0, it builds totally fine.

My minimum iOS version is 12.0

"@capacitor/android": "^3.4.0",
        "@capacitor/app": "^1.0.7",
        "@capacitor/browser": "^1.0.7",
        "@capacitor/cli": "^3.3.2",
        "@capacitor/core": "^3.4.0",
        "@capacitor/ios": "^3.4.0",
pazlavi commented 2 years ago

Hi @bfine9618 , Thank you for reaching out to us.

It seems like a problem with Cocoapods and not related to the plugin. Did you try running the commandpod install --repo-update in the iOS directory? Please see this thread as well

bfine9618 commented 2 years ago

Thanks @pazlavi