'which Google place version that suitable for iOS 11 and above?

I want to implement Google Place SDK to my iOS native app. according to the documentation I have to use the code below in my podfile

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '12.0'

target 'YOUR_APPLICATION_TARGET_NAME_HERE' do
  pod 'GooglePlaces', '6.1.1'
end

as you can see, to use version 6.1.1 I have to set the ios to be 12.0 or above. but I need to support iOS 11.0 and above. so if thats the case, which GooglePlaces version that I need to use?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source