Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update Readme & fix up errors on pod lint #53

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RxCoreLocation abstract the Rx behavior for Core Location

## Requirements

- iOS 9.0+ / Mac OS X 10.10+ / tvOS 9.0+ / watchOS 2.0+
- iOS 11.0+ / Mac OS X 10.15+ / tvOS 9.0+ / watchOS 4.0+
- Xcode 9.1+

## Installation
Expand All @@ -36,7 +36,7 @@ To integrate RxCoreLocation into your Xcode project using CocoaPods, specify it

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
platform :ios, '11.0'
use_frameworks!

pod 'RxCoreLocation', '~> 1.5.1'
Expand Down
5 changes: 3 additions & 2 deletions RxCoreLocation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ Pod::Spec.new do |s|
s.authors = { "Obi Bob Godwin" => "bobgodwinx@gmail.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxCoreLocation.git", :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.swift_versions = ['5.0', '5.6']

s.default_subspec = "Core"
s.subspec "Core" do |ss|
Expand Down
1 change: 0 additions & 1 deletion Sources/RxKeyPaths.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ extension String {
static let desiredAccuracy = #keyPath(CLLocationManager.desiredAccuracy)
static let pausesLocationUpdatesAutomatically = #keyPath(CLLocationManager.pausesLocationUpdatesAutomatically)
static let allowsBackgroundLocationUpdates = #keyPath(CLLocationManager.allowsBackgroundLocationUpdates)
@available(iOS 11.0, *)
static let showsBackgroundLocationIndicator = #keyPath(CLLocationManager.showsBackgroundLocationIndicator)
static let location = #keyPath(CLLocationManager.location)
static let headingFilter = #keyPath(CLLocationManager.headingFilter)
Expand Down