Skip to content

Commit 3f61f7e

Browse files
Steve TreaseSteve Trease
authored andcommitted
Removed MS AppCenter.
1 parent 621e19c commit 3f61f7e

File tree

21 files changed

+41
-215
lines changed

21 files changed

+41
-215
lines changed

IP Address WatchOS Extension/IPAddressInterfaceController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class IPAddressInterfaceController: WKInterfaceController {
6868
func refreshSortAndFilterData () {
6969
interfaces = Interface.allInterfaces()
7070

71-
var IPv4Interfaces = interfaces.filter { $0.family == .ipv4 }
71+
let IPv4Interfaces = interfaces.filter { $0.family == .ipv4 }
7272
var IPv6Interfaces = interfaces.filter { $0.family == .ipv6 }
7373

7474
// print ("\(IPv4Interfaces.count) \(IPv6Interfaces.count) \(interfaces.count)")

IP Address WatchOS Extension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>1.0</string>
2121
<key>CFBundleVersion</key>
22-
<string>48</string>
22+
<string>49</string>
2323
<key>NSExtension</key>
2424
<dict>
2525
<key>NSExtensionAttributes</key>

IP Address WatchOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>1.0</string>
2121
<key>CFBundleVersion</key>
22-
<string>48</string>
22+
<string>49</string>
2323
<key>UISupportedInterfaceOrientations</key>
2424
<array>
2525
<string>UIInterfaceOrientationPortrait</string>

IP Address.xcodeproj/project.pbxproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
AA343B8B1FEBF5D900CB6E03 /* IP Address WatchOS.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = AA343B711FEBF5D900CB6E03 /* IP Address WatchOS.app */; };
1818
AA343B951FEBF60C00CB6E03 /* Interface.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA343B941FEBF60C00CB6E03 /* Interface.swift */; };
1919
AA343B971FEBFA7400CB6E03 /* IPAddressInterfaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA343B961FEBFA7400CB6E03 /* IPAddressInterfaceController.swift */; };
20-
AA3757981FE94E1000F59336 /* AppCenterToken.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA3757971FE94E1000F59336 /* AppCenterToken.swift */; };
2120
AAE235201F91223400FB8E69 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE2351F1F91223400FB8E69 /* AppDelegate.swift */; };
2221
AAE235221F91223400FB8E69 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE235211F91223400FB8E69 /* ViewController.swift */; };
2322
AAE235251F91223400FB8E69 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AAE235231F91223400FB8E69 /* Main.storyboard */; };
@@ -82,7 +81,6 @@
8281
AA343B881FEBF5D900CB6E03 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8382
AA343B941FEBF60C00CB6E03 /* Interface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Interface.swift; sourceTree = "<group>"; };
8483
AA343B961FEBFA7400CB6E03 /* IPAddressInterfaceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IPAddressInterfaceController.swift; sourceTree = "<group>"; };
85-
AA3757971FE94E1000F59336 /* AppCenterToken.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppCenterToken.swift; sourceTree = "<group>"; };
8684
AAE2351C1F91223400FB8E69 /* IP Address.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "IP Address.app"; sourceTree = BUILT_PRODUCTS_DIR; };
8785
AAE2351F1F91223400FB8E69 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
8886
AAE235211F91223400FB8E69 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
@@ -112,6 +110,13 @@
112110
);
113111
runOnlyForDeploymentPostprocessing = 0;
114112
};
113+
EA34DEE51FA597AE9584BC41 /* Frameworks */ = {
114+
isa = PBXFrameworksBuildPhase;
115+
buildActionMask = 2147483647;
116+
files = (
117+
);
118+
runOnlyForDeploymentPostprocessing = 0;
119+
};
115120
/* End PBXFrameworksBuildPhase section */
116121

117122
/* Begin PBXGroup section */
@@ -173,7 +178,6 @@
173178
isa = PBXGroup;
174179
children = (
175180
AAE2351F1F91223400FB8E69 /* AppDelegate.swift */,
176-
AA3757971FE94E1000F59336 /* AppCenterToken.swift */,
177181
AAE235211F91223400FB8E69 /* ViewController.swift */,
178182
AA12DD8E1FAB85F8004EB978 /* DNSlookup.swift */,
179183
AAE235331F91254800FB8E69 /* Interface.swift */,
@@ -202,6 +206,7 @@
202206
buildPhases = (
203207
AA343B6F1FEBF5D900CB6E03 /* Resources */,
204208
AA343B911FEBF5D900CB6E03 /* Embed App Extensions */,
209+
EA34DEE51FA597AE9584BC41 /* Frameworks */,
205210
);
206211
buildRules = (
207212
);
@@ -418,7 +423,6 @@
418423
isa = PBXSourcesBuildPhase;
419424
buildActionMask = 2147483647;
420425
files = (
421-
AA3757981FE94E1000F59336 /* AppCenterToken.swift in Sources */,
422426
AAE235221F91223400FB8E69 /* ViewController.swift in Sources */,
423427
AA12DD8F1FAB85F8004EB978 /* DNSlookup.swift in Sources */,
424428
AAE235201F91223400FB8E69 /* AppDelegate.swift in Sources */,

IP Address.xcodeproj/xcuserdata/steve.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<key>IP Address.xcscheme_^#shared#^_</key>
1313
<dict>
1414
<key>orderHint</key>
15-
<integer>1</integer>
15+
<integer>0</integer>
1616
</dict>
1717
</dict>
1818
</dict>

IP Address/AppCenterToken.swift

Lines changed: 0 additions & 12 deletions
This file was deleted.

IP Address/AppDelegate.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
//
88

99
import UIKit
10-
import AppCenter
11-
import AppCenterAnalytics
12-
import AppCenterCrashes
1310

1411

1512
@UIApplicationMain
@@ -28,11 +25,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
2825
let versionNumber: String = (Bundle.main.infoDictionary?["CFBundleVersion"] as? String)!
2926
print ("\(appName) (\(versionNumber))")
3027

31-
MSAppCenter.start(appCenterToken, withServices:[
32-
MSAnalytics.self,
33-
MSCrashes.self
34-
])
35-
3628
switch (application.applicationState) {
3729
case .active:
3830
print ("didFinishLaunchingWithOptions - active")

IP Address/Base.lproj/LaunchScreen.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
2222
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
2323
<subviews>
24-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Build: 48 (8a0af7c)" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yhA-lX-4Of" userLabel="APP_VERSION">
24+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Build: 49 (621e19c)" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yhA-lX-4Of" userLabel="APP_VERSION">
2525
<rect key="frame" x="132.5" y="527" width="55.5" height="21"/>
2626
<fontDescription key="fontDescription" type="system" pointSize="17"/>
2727
<nil key="textColor"/>

IP Address/Base.lproj/LaunchScreen.storyboardbak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
2222
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
2323
<subviews>
24-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Build: 47 (8a0af7c)" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yhA-lX-4Of" userLabel="APP_VERSION">
24+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Build: 48 (8a0af7c)" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yhA-lX-4Of" userLabel="APP_VERSION">
2525
<rect key="frame" x="132.5" y="527" width="55.5" height="21"/>
2626
<fontDescription key="fontDescription" type="system" pointSize="17"/>
2727
<nil key="textColor"/>

IP Address/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>1.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>48</string>
20+
<string>49</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>UILaunchStoryboardName</key>

0 commit comments

Comments
 (0)