Skip to content

Commit d982389

Browse files
committed
Xcode 11 support and v3.2.6 release
1 parent 308133a commit d982389

File tree

25 files changed

+227
-284
lines changed

25 files changed

+227
-284
lines changed

Beaconstac.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Beaconstac'
3-
s.version = '3.2.6-beta0'
3+
s.version = '3.2.6'
44
s.swift_version = '5.0'
55
s.summary = 'iOS library for iBeacon devices'
66

@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99

1010
s.license = { :type => 'MIT', :file => 'LICENSE' }
1111

12-
s.source = { :git => 'https://github.com/Beaconstac/iOS-SDK.git', :tag => "v#{s.version}" }
12+
s.source = { :git => 'https://github.com/Beaconstac/iOS-SDK.git', :tag => "#{s.version}" }
1313

1414
s.vendored_frameworks = 'Beaconstac/Beaconstac.framework'
1515

4.22 MB
Binary file not shown.
0 Bytes
Binary file not shown.

BeaconstacSampleApp/BeaconstacSampleApp.xcodeproj/project.pbxproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,19 @@
175175
attributes = {
176176
LastSwiftUpdateCheck = 0930;
177177
LastUpgradeCheck = 0930;
178+
TargetAttributes = {
179+
A7DC4B6AB1BBA132BE3B25FF = {
180+
DevelopmentTeam = 69A43C2J9Q;
181+
ProvisioningStyle = Automatic;
182+
};
183+
};
178184
};
179185
buildConfigurationList = 358513A02A7833B43E7885DB /* Build configuration list for PBXProject "BeaconstacSampleApp" */;
180186
compatibilityVersion = "Xcode 3.2";
181187
developmentRegion = English;
182188
hasScannedForEncodings = 0;
183189
knownRegions = (
190+
English,
184191
en,
185192
);
186193
mainGroup = 920C7F100F1AB9128B1ED485;
@@ -282,7 +289,7 @@
282289
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
283290
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
284291
MODULEMAP_FILE = "";
285-
PRODUCT_BUNDLE_IDENTIFIER = mobstac.SampleApp;
292+
PRODUCT_BUNDLE_IDENTIFIER = com.mobstac.SampleApp;
286293
PRODUCT_NAME = "$(TARGET_NAME)";
287294
SDKROOT = iphoneos;
288295
SWIFT_INCLUDE_PATHS = "";
@@ -351,7 +358,7 @@
351358
CODE_SIGN_IDENTITY = "iPhone Developer";
352359
CODE_SIGN_STYLE = Automatic;
353360
DEFINES_MODULE = YES;
354-
DEVELOPMENT_TEAM = 44VN4BY3TF;
361+
DEVELOPMENT_TEAM = 69A43C2J9Q;
355362
FRAMEWORK_SEARCH_PATHS = (
356363
"$(inherited)",
357364
../Beaconstac/,

BeaconstacSampleApp/BeaconstacSampleApp/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, CBCentralManagerDelegate
2828
var locationManager: CLLocationManager!
2929
var bluetoothManager: CBCentralManager!
3030

31-
var MY_DEVELOPER_TOKEN = "e62435a78e67ec98bba3b879ba00448650032557"
31+
var MY_DEVELOPER_TOKEN = "08ddda7aabcbecfa54b29f6d032d7d289eb241b5"
3232

3333
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
3434
// Override point for customization after application launch.

BeaconstacSampleApp/BeaconstacSampleApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NSLocationAlwaysAndWhenInUsageDescription</key>
6-
<string>To detect Beacons</string>
75
<key>CFBundleDevelopmentRegion</key>
86
<string>$(DEVELOPMENT_LANGUAGE)</string>
97
<key>CFBundleExecutable</key>
@@ -24,6 +22,8 @@
2422
<true/>
2523
<key>NSBluetoothPeripheralUsageDescription</key>
2624
<string>Range Beacons</string>
25+
<key>NSLocationAlwaysAndWhenInUsageDescription</key>
26+
<string>To detect Beacons</string>
2727
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
2828
<string>Beaconstac SDK Demo</string>
2929
<key>NSLocationAlwaysUsageDescription</key>

BeaconstacSampleApp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ platform :ios, '10.0'
22

33
target 'BeaconstacSampleApp' do
44
use_frameworks!
5-
pod 'EddystoneScanner'
5+
pod 'EddystoneScanner', '~> 1.2.11'
66
end

BeaconstacSampleApp/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- EddystoneScanner (1.1.6)
2+
- EddystoneScanner (1.2.11)
33

44
DEPENDENCIES:
5-
- EddystoneScanner
5+
- EddystoneScanner (~> 1.2.11)
66

77
SPEC REPOS:
8-
https://github.com/CocoaPods/Specs.git:
8+
trunk:
99
- EddystoneScanner
1010

1111
SPEC CHECKSUMS:
12-
EddystoneScanner: 4faf448a2a5a0f5dc442cc9a2324bdea1dcc7d4d
12+
EddystoneScanner: ad0fd2fcc063db3a1a174d31e2eea0626b82adef
1313

14-
PODFILE CHECKSUM: d8f102212049976c568b51a8d8c166fa89eaef53
14+
PODFILE CHECKSUM: 8fbbe08287ac2f7f131057a729340068df706cbe
1515

1616
COCOAPODS: 1.8.4

BeaconstacSampleApp/Pods/EddystoneScanner/EddystoneScanner/DispatchTimer.swift

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BeaconstacSampleApp/Pods/EddystoneScanner/EddystoneScanner/EddystoneRFC/Models/Beacon.swift

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)