Woopra / Woopra-iOS

MIT License
1 stars 5 forks source link

Rename framework to AppierWoopra and keep the import module as-is - Woopra #17

Closed michaelrevlis closed 4 months ago

michaelrevlis commented 4 months ago

Context

There is another old CocoaPods framework named Woopra since 2015 earlier than Woopra-iOS (2017). To avoid ambiguous pod install, this PR defines the CocoaPods framework as AppierWoopra and keeps the import SDK name as Woopra.

How to verify this

  1. Install the local pod by modifying the Podfile in your test project
    pod 'AppierWoopra', :path => '/path/to/local/pod'
  2. Execute pod install
  3. Confirm import Woopra works
michaelrevlis commented 4 months ago

Context

To align framework naming for CocoaPods and SPM.

How to verify this

  1. Build the local SPM by executing swift build
  2. Install the local SPM: Project > Package Dependencies > plus button > Add Local... > select the local project directory
  3. Visit Project > Package Dependencies again and verify that the package name is AppierWoopra Screenshot 2024-04-23 at 4 50 08 PM
  4. Confirm import Woopra works
michaelrevlis commented 4 months ago

Change

Rename AppierWoopra to WoopraSDK

How to verify

CocoaPods

  1. Install the local pod by modifying the Podfile in your test project
    pod 'WoopraSDK', :path => '/path/to/local/pod'
  2. Execute pod install
  3. Confirm import Woopra works

    SPM

  4. Build the local SPM by executing swift build
  5. Install the local SPM: Project > Package Dependencies > plus button > Add Local... > select the local project directory
  6. Visit Project > Package Dependencies again and verify that the package name is WoopraSDK
  7. Confirm import Woopra works