- Install cocoapods
sudo gem install cocoapods
- Initialize cocoapods for your project
pod init
- To install the dependencies from current repository, add it as another pods source and add the required pods:
source 'https://github.com/adjoeio/PlaytimeSpecExternal.git' # Playtime repository
source 'https://cdn.cocoapods.org/' # Default CocoaPods source
platform :ios, '13.0'
target 'YourAppName' do
use_frameworks!
pod 'PlaytimeMonetize'
end