Skip to content

Commit

Permalink
Added AppCenter Distribution
Browse files Browse the repository at this point in the history
below committed Jul 29, 2022
1 parent 2c363e4 commit e9e7a83
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GeofenceTester.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -367,7 +367,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = VZVFUQTSQC;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = GeofenceTester/Info.plist;
@@ -398,7 +398,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = VZVFUQTSQC;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = GeofenceTester/Info.plist;
4 changes: 3 additions & 1 deletion GeofenceTester/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ import UIKit
import AppCenter
import AppCenterAnalytics
import AppCenterCrashes
import AppCenterDistribute

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
@@ -20,7 +21,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
AppCenter.start(withAppSecret: AppCenterKey,
services:[
Analytics.self,
Crashes.self
Crashes.self,
Distribute.self
])
UserDefaults.standard.register(defaults: [PausesVisitAutomatically: true])

9 changes: 9 additions & 0 deletions GeofenceTester/Info.plist
Original file line number Diff line number Diff line change
@@ -2,6 +2,15 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>appcenter-{APP_SECRET}</string>
</array>
</dict>
</array>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ All of these events are logged, the log can be shared using the usual iOS sharin

The goal for this tool is to be accessible. It includes a custom Voiceover rotor for the map.

### Build
## Build

* Clone the project
* Adjust Code Signing Team as appropriate

0 comments on commit e9e7a83

Please sign in to comment.