Fix error message on app startup. Test to determine this doesn't break functionality with connected app. Must run "getState()" on wake as well as startup.
This commit is contained in:
parent
defa0afe7f
commit
d4f04ec9f1
File diff suppressed because it is too large
Load Diff
|
@ -1,25 +1,26 @@
|
|||
{
|
||||
"name": "com.sixteenmillimeter.intval3",
|
||||
"displayName": "INTVAL3",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"description": "Mobile control app for the INTVAL intervalometer for Bolex 16mm cameras",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"ios": "cordova build ios --buildFlag='-UseModernBuildSystem=0'"
|
||||
},
|
||||
"author": "M McWilliams",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"cordova-android": "^6.4.0",
|
||||
"cordova-ios": "^4.5.5",
|
||||
"cordova-plugin-ble-central": "^1.2.2",
|
||||
"cordova-plugin-camera-with-exif": "^1.2.4",
|
||||
"cordova-android": "^8.1.0",
|
||||
"cordova-ios": "^5.1.1",
|
||||
"cordova-plugin-ble-central": "^1.2.4",
|
||||
"cordova-plugin-camera-with-exif": "^1.3.1",
|
||||
"cordova-plugin-compat": "^1.2.0",
|
||||
"cordova-plugin-device": "^1.1.7",
|
||||
"cordova-plugin-dialogs": "^1.3.4",
|
||||
"cordova-plugin-splashscreen": "^4.1.0",
|
||||
"cordova-plugin-statusbar": "^2.4.2",
|
||||
"cordova-plugin-whitelist": "^1.3.3"
|
||||
"cordova-plugin-device": "^2.0.3",
|
||||
"cordova-plugin-dialogs": "^2.0.2",
|
||||
"cordova-plugin-splashscreen": "^5.0.3",
|
||||
"cordova-plugin-statusbar": "^2.4.3",
|
||||
"cordova-plugin-whitelist": "^1.3.4"
|
||||
},
|
||||
"cordova": {
|
||||
"plugins": {
|
||||
|
|
|
@ -162,6 +162,7 @@ mobile.init = function () {
|
|||
mobile.getState = function () {
|
||||
if (!mobile.ble.connected) {
|
||||
//returning here will prevent error alert
|
||||
return true
|
||||
}
|
||||
ble.read(mobile.ble.device.id,
|
||||
mobile.ble.SERVICE_ID,
|
||||
|
|
Loading…
Reference in New Issue