Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
355bb98b28 | ||
|
|
8f9efa4373 | ||
|
|
94c5e804a8 |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<module external.linked.project.id="DeightonAR" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/app" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
|
<module external.linked.project.id="DeightonAR" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
|
||||||
<component name="FacetManager">
|
<component name="FacetManager">
|
||||||
<facet type="java-gradle" name="Java-Gradle">
|
<facet type="java-gradle" name="Java-Gradle">
|
||||||
<configuration>
|
<configuration>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</facet>
|
</facet>
|
||||||
</component>
|
</component>
|
||||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
|
||||||
<exclude-output />
|
<exclude-output />
|
||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</facet>
|
</facet>
|
||||||
</component>
|
</component>
|
||||||
<component name="NewModuleRootManager">
|
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7">
|
||||||
<output url="file://$MODULE_DIR$/build/intermediates/classes/debug" />
|
<output url="file://$MODULE_DIR$/build/intermediates/classes/debug" />
|
||||||
<output-test url="file://$MODULE_DIR$/build/intermediates/classes/test/debug" />
|
<output-test url="file://$MODULE_DIR$/build/intermediates/classes/test/debug" />
|
||||||
<exclude-output />
|
<exclude-output />
|
||||||
@@ -103,7 +103,7 @@
|
|||||||
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
|
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="jdk" jdkName="Android API 27 Platform" jdkType="Android SDK" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
<orderEntry type="library" name="Gradle: com.android.support:support-fragment-25.0.0" level="project" />
|
<orderEntry type="library" name="Gradle: com.android.support:support-fragment-25.0.0" level="project" />
|
||||||
<orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore-1.3.0" level="project" />
|
<orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore-1.3.0" level="project" />
|
||||||
@@ -149,6 +149,5 @@
|
|||||||
<orderEntry type="module" module-name="react-native-maps" />
|
<orderEntry type="module" module-name="react-native-maps" />
|
||||||
<orderEntry type="module" module-name="react-native-image-resizer" />
|
<orderEntry type="module" module-name="react-native-image-resizer" />
|
||||||
<orderEntry type="module" module-name="react-native-image-picker" />
|
<orderEntry type="module" module-name="react-native-image-picker" />
|
||||||
<orderEntry type="library" name="Gradle: android-android-27" level="project" />
|
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
@@ -101,8 +101,8 @@ android {
|
|||||||
applicationId "com.deightonar"
|
applicationId "com.deightonar"
|
||||||
minSdkVersion 24
|
minSdkVersion 24
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode 13
|
versionCode 14
|
||||||
versionName "1.4.0"
|
versionName "1.4.1"
|
||||||
ndk {
|
ndk {
|
||||||
abiFilters "armeabi-v7a", "x86"
|
abiFilters "armeabi-v7a", "x86"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.deightonar"
|
package="com.deightonar"
|
||||||
android:versionCode="11"
|
android:versionCode="11"
|
||||||
android:versionName="1.4.0">
|
android:versionName="1.4.1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||||
|
|||||||
@@ -19,11 +19,11 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.4.0</string>
|
<string>1.4.1</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>20180627.0</string>
|
<string>20180628.0</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>NSAppTransportSecurity</key>
|
<key>NSAppTransportSecurity</key>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ export class BubbleLoader extends React.Component {
|
|||||||
this.animatedScales.map((value, i) =>
|
this.animatedScales.map((value, i) =>
|
||||||
Animated.sequence([
|
Animated.sequence([
|
||||||
Animated.timing(value, {
|
Animated.timing(value, {
|
||||||
toValue: 0.0,
|
toValue: 0.01,
|
||||||
duration: 800,
|
duration: 800,
|
||||||
delay: 200 * i,
|
delay: 200 * i,
|
||||||
easing: Easing.out(Easing.sin),
|
easing: Easing.out(Easing.sin),
|
||||||
|
|||||||
@@ -28,11 +28,19 @@ export class Geolocation extends Component {
|
|||||||
this.props.onUpdate(position)
|
this.props.onUpdate(position)
|
||||||
)),
|
)),
|
||||||
null,
|
null,
|
||||||
{ distanceFilter: 5, maximumAge: 0, enableHighAccuracy: true }
|
{
|
||||||
|
distanceFilter: 5,
|
||||||
|
maximumAge: 0,
|
||||||
|
timeout: 20000,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
null,
|
null,
|
||||||
{ distanceFilter: 5, maximumAge: 0, enableHighAccuracy: true }
|
{
|
||||||
|
distanceFilter: 5,
|
||||||
|
maximumAge: 0,
|
||||||
|
timeout: 20000,
|
||||||
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export const versionInfo = {
|
export const versionInfo = {
|
||||||
version: '1.4.0',
|
version: '1.4.1',
|
||||||
fullVersion: '1.4.0-20180627.0',
|
fullVersion: '1.4.1-20180628.0',
|
||||||
title: 'Deighton AR System',
|
title: 'Deighton AR System',
|
||||||
copyright: '© 2018, Kingston Software Solutions.',
|
copyright: '© 2018, Kingston Software Solutions.',
|
||||||
supportEmail: 'support@kss.us.com',
|
supportEmail: 'support@kss.us.com',
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "deighton-ar",
|
"name": "deighton-ar",
|
||||||
"version": "1.4.0",
|
"version": "1.4.1",
|
||||||
"description": "Deighton AR Training System",
|
"description": "Deighton AR Training System",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export const versionInfo = {
|
export const versionInfo = {
|
||||||
version: '1.4.0',
|
version: '1.4.1',
|
||||||
fullVersion: '1.4.0-20180627.0',
|
fullVersion: '1.4.1-20180628.0',
|
||||||
title: 'Deighton AR System',
|
title: 'Deighton AR System',
|
||||||
copyright: '© 2018, Kingston Software Solutions.',
|
copyright: '© 2018, Kingston Software Solutions.',
|
||||||
supportEmail: 'support@kss.us.com',
|
supportEmail: 'support@kss.us.com',
|
||||||
|
|||||||
@@ -16,10 +16,10 @@
|
|||||||
tags: {
|
tags: {
|
||||||
major: 1,
|
major: 1,
|
||||||
minor: 4,
|
minor: 4,
|
||||||
patch: 0,
|
patch: 1,
|
||||||
build: 20180627,
|
build: 20180628,
|
||||||
revision: 0,
|
revision: 0,
|
||||||
sequence: 13,
|
sequence: 14,
|
||||||
tz: "America/Los_Angeles",
|
tz: "America/Los_Angeles",
|
||||||
title: "Deighton AR System",
|
title: "Deighton AR System",
|
||||||
copyright: "© 2018, Kingston Software Solutions.",
|
copyright: "© 2018, Kingston Software Solutions.",
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
glob: "**/AndroidManifest.xml",
|
glob: "**/AndroidManifest.xml",
|
||||||
updates: [
|
updates: [
|
||||||
{
|
{
|
||||||
search: "(?<begin>android:versionCode=\")\\d?(?<end>\")",
|
search: "(?<begin>android:versionCode=\")\\d+(?<end>\")",
|
||||||
replace: "${begin}${sequence}${end}"
|
replace: "${begin}${sequence}${end}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export const versionInfo = {
|
export const versionInfo = {
|
||||||
version: '1.4.0',
|
version: '1.4.1',
|
||||||
fullVersion: '1.4.0-20180627.0',
|
fullVersion: '1.4.1-20180628.0',
|
||||||
title: 'Deighton AR System',
|
title: 'Deighton AR System',
|
||||||
copyright: '© 2018, Kingston Software Solutions.',
|
copyright: '© 2018, Kingston Software Solutions.',
|
||||||
supportEmail: 'support@kss.us.com',
|
supportEmail: 'support@kss.us.com',
|
||||||
|
|||||||
Reference in New Issue
Block a user