3 Commits

Author SHA1 Message Date
John Lyon-Smith
5e00b0dd23 Correct fix for background location services 2018-05-29 12:49:51 -07:00
John Lyon-Smith
fb8545110c Revert to location when in use 2018-05-29 12:44:38 -07:00
John Lyon-Smith
323d047903 Version 1.1.2-20180529.0 2018-05-29 07:55:59 -07:00
9 changed files with 31 additions and 20 deletions

View File

@@ -101,8 +101,8 @@ android {
applicationId "com.deightonar"
minSdkVersion 24
targetSdkVersion 27
versionCode 7
versionName "1.1.1"
versionCode 8
versionName "1.1.2"
ndk {
abiFilters "armeabi-v7a", "x86"
}

View File

@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.deightonar"
android:versionCode="7"
android:versionName="1.1.1">
android:versionCode="8"
android:versionName="1.1.2">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

View File

@@ -140,6 +140,11 @@
TargetAttributes = {
13B07F861A680F5B00A75B9A = {
DevelopmentTeam = 523GZPCZ3X;
SystemCapabilities = {
com.apple.BackgroundModes = {
enabled = 1;
};
};
};
};
};

View File

@@ -2,8 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) camera use</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>$(PRODUCT_NAME) background location use</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
@@ -19,11 +19,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20180528.0</string>
<string>20180529.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
@@ -33,8 +33,16 @@
</dict>
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) camera use</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>$(PRODUCT_NAME) location use</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) camera use</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) photo use</string>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
@@ -46,8 +54,6 @@
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>$(PRODUCT_NAME) location use</string>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>

View File

@@ -1,6 +1,6 @@
export const versionInfo = {
version: '1.1.1',
fullVersion: '1.1.1-20180528.0',
version: '1.1.2',
fullVersion: '1.1.2-20180529.0',
title: 'Deighton AR System',
copyright: '© 2018, Kingston Software Solutions.',
supportEmail: 'support@kss.us.com',

View File

@@ -1,6 +1,6 @@
{
"name": "deighton-ar",
"version": "1.1.1",
"version": "1.1.2",
"description": "Deighton AR Training System",
"main": "index.js",
"repository": {

View File

@@ -1,6 +1,6 @@
export const versionInfo = {
version: '1.1.1',
fullVersion: '1.1.1-20180528.0',
version: '1.1.2',
fullVersion: '1.1.2-20180529.0',
title: 'Deighton AR System',
copyright: '© 2018, Kingston Software Solutions.',
supportEmail: 'support@kss.us.com',

View File

@@ -16,10 +16,10 @@
tags: {
major: 1,
minor: 1,
patch: 1,
build: 20180528,
patch: 2,
build: 20180529,
revision: 0,
sequence: 7,
sequence: 8,
tz: "America/Los_Angeles",
title: "Deighton AR System",
copyright: "© 2018, Kingston Software Solutions.",

View File

@@ -1,6 +1,6 @@
export const versionInfo = {
version: '1.1.1',
fullVersion: '1.1.1-20180528.0',
version: '1.1.2',
fullVersion: '1.1.2-20180529.0',
title: 'Deighton AR System',
copyright: '© 2018, Kingston Software Solutions.',
supportEmail: 'support@kss.us.com',