Android version information
This commit is contained in:
@@ -102,7 +102,7 @@ android {
|
|||||||
minSdkVersion 23
|
minSdkVersion 23
|
||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0"
|
versionName "1.0.0"
|
||||||
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="1"
|
android:versionCode="1"
|
||||||
android:versionName="1.0">
|
android:versionName="1.0.0">
|
||||||
|
|
||||||
<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"/>
|
||||||
|
|||||||
@@ -17,11 +17,11 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.2.0</string>
|
<string>1.0.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>20180406.6</string>
|
<string>20180407.3</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>NSAppTransportSecurity</key>
|
<key>NSAppTransportSecurity</key>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "deighton-ar",
|
"name": "deighton-ar",
|
||||||
"version": "1.2.0",
|
"version": "1.0.0",
|
||||||
"description": "Deighton AR Training System",
|
"description": "Deighton AR Training System",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -4,16 +4,18 @@
|
|||||||
"website/.env",
|
"website/.env",
|
||||||
"website/src/version.js",
|
"website/src/version.js",
|
||||||
"mobile/ios/DeightonAR/info.plist",
|
"mobile/ios/DeightonAR/info.plist",
|
||||||
|
"mobile/android/app/build.gradle",
|
||||||
|
"mobile/android/app/src/main/AndroidManifest.xml",
|
||||||
"scratch/version.tag.txt",
|
"scratch/version.tag.txt",
|
||||||
"scratch/version.desc.txt"
|
"scratch/version.desc.txt"
|
||||||
],
|
],
|
||||||
buildFormat: "full",
|
buildFormat: "full",
|
||||||
tags: {
|
tags: {
|
||||||
major: 1,
|
major: 1,
|
||||||
minor: 2,
|
minor: 0,
|
||||||
patch: 0,
|
patch: 0,
|
||||||
build: 20180406,
|
build: 20180407,
|
||||||
revision: 6,
|
revision: 3,
|
||||||
sequence: 1,
|
sequence: 1,
|
||||||
tz: "America/Los_Angeles",
|
tz: "America/Los_Angeles",
|
||||||
title: "Deighton AR System",
|
title: "Deighton AR System",
|
||||||
@@ -69,6 +71,34 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Gradle Script",
|
||||||
|
glob: "**/build.gradle",
|
||||||
|
updates: [
|
||||||
|
{
|
||||||
|
search: "(?<begin>versionCode +)\\d+",
|
||||||
|
replace: "${begin}${sequence}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
search: "(?<begin>versionName +\")\\d+\\.\\d+\\.\\d+(?<end>\")",
|
||||||
|
replace: "${begin}${major}.${minor}.${patch}${end}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Android Manifest",
|
||||||
|
glob: "**/AndroidManifest.xml",
|
||||||
|
updates: [
|
||||||
|
{
|
||||||
|
search: "(?<begin>android:versionCode=\")\\d?(?<end>\")",
|
||||||
|
replace: "${begin}${sequence}${end}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
search: "(?<begin>android:versionName=\")\\d+\\.\\d+\\.\\d+(?<end>\")",
|
||||||
|
replace: "${begin}${major}.${minor}.${patch}${end}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Commit tag file",
|
name: "Commit tag file",
|
||||||
glob: "**/*.tag.txt",
|
glob: "**/*.tag.txt",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export const versionInfo = {
|
export const versionInfo = {
|
||||||
version: '1.2.0',
|
version: '1.0.0',
|
||||||
fullVersion: '1.2.0-20180406.6',
|
fullVersion: '1.0.0-20180407.3',
|
||||||
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