Skip to content

Commit

Permalink
Support aware-core 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tetujin committed Sep 23, 2024
1 parent 0c47c5f commit 542d23f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use_frameworks!
platform :ios, '13.0'
platform :ios, '12.0'

target 'com.awareframework.ios.sensor.locations_Example' do
pod 'com.awareframework.ios.sensor.locations', :path => '../'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-com.awareframework.ios.sensor.locations_Example/Pods-com.awareframework.ios.sensor.locations_Example-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/Networking/Networking.framework",
"${BUILT_PRODUCTS_DIR}/Realm/Realm.framework",
"${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework",
"${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
Expand All @@ -285,7 +284,6 @@
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Networking.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
Expand Down
6 changes: 3 additions & 3 deletions com.awareframework.ios.sensor.locations.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'com.awareframework.ios.sensor.locations'
s.version = '0.7.0'
s.version = '0.7.1'
s.summary = 'A Location Sensor Module for AWARE Framework'

# This description is used to generate tags and improve search results.
Expand All @@ -28,8 +28,8 @@ The locations sensor provides the best location estimate for the users’ curren
s.source = { :git => 'https://github.com/awareframework/com.awareframework.ios.sensor.locations.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.platform = :ios, '13.0'
s.ios.deployment_target = '13.0'
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'

s.swift_version = '5'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ public class LocationsSensor: AwareSensor{
// Enable basic location features
// enableMyWhenInUseFeatures()
break
@unknown default:
break
}

// Do not start services that aren't available.
Expand Down

0 comments on commit 542d23f

Please sign in to comment.