Skip to main content
Question

iOS Widget Extension - Warning when setting the SDK

  • December 20, 2025
  • 0 replies
  • 6 views

Forum|alt.badge.img

I read a few other threads about this topic, and followed the suggestion: configure the SDK as earlier as possible. I also followed the instructions in the docs. This is how I am setting it up:

      let configuration = Configuration.Builder(withAPIKey: "my_api_key")

        .with(userDefaults: .init(suiteName: groupIdentifier)!)

        .build()

      

      Purchases.configure(with: configuration)

 

Despite this, I am getting:

ERROR: 😿‼️ RevenueCat SDK Configuration is not valid



Your app's Bundle ID 'com.foo.bar.widgetextension' doesn't match the RevenueCat configuration 'com.foo.bar'. This will cause the SDK to not show any products and won't allow users to make purchases. Please update your Bundle ID in either your app or the RevenueCat website to match.



Please visit the RevenueCat website to resolve the issue: https://app.revenuecat.com/projects/c89a1ec9/apps/appa3ee8cada1


I guess my question is: what am I missing here? I just need to check if the user is subscribed or not.