總所周知Podfile指定版本號(hào)通常的寫法如下
pod 'LumberjackConsole', ‘1.1.2’
指定configurations模式的寫法如下
pod 'LumberjackConsole', :configurations => ['Release', 'App Store']
pod 'LumberjackConsole', :configurations => ['Debug']
指定git遠(yuǎn)程地址的寫法如下
pod 'LumberjackConsole', :git => "https://github.com/sushushu/LumberjackConsole"
問(wèn)題來(lái)了,那么想同時(shí)使用上面三種模式的話語(yǔ)法該怎么寫
答案:用 ,
號(hào)分割
pod 'LumberjackConsole', :configurations => ['Debug'] , :git => "https://github.com/sushushu/LumberjackConsole"