Got build working again with AppCenter distrobution.
This commit is contained in:
parent
a87e81f128
commit
30c78ba58d
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<widget id="com.sixteenmillimeter.intval3" version="1.0.4" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||
<widget id="com.sixteenmillimeter.intval3" version="1.0.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||
<name>INTVAL3</name>
|
||||
<description>
|
||||
Mobile control app for the INTVAL intervalometer for Bolex 16mm cameras
|
||||
|
@ -30,19 +30,20 @@
|
|||
<icon height="120" src="res/icon/ios/icon-60@2x.png" width="120" />
|
||||
<icon height="60" src="res/icon/ios/icon-60.png" width="60" />
|
||||
<splash src="res/screen/ios/Default@2x~universal~anyany.png" />
|
||||
<preference name="APP_SECRET" value="d9cbb435-e432-43d3-ae20-747fccbc8190" />
|
||||
</platform>
|
||||
<preference name="DisallowOverscroll" value="true" />
|
||||
<preference name="StatusBarBackgroundColor" value="#212121" />
|
||||
<preference name="CameraUsesGeolocation" value="false" />
|
||||
<plugin name="cordova-plugin-whitelist" spec="1" />
|
||||
<plugin name="cordova-plugin-splashscreen" spec="~4.1.0" />
|
||||
<plugin name="cordova-plugin-device" spec="^1.1.7" />
|
||||
<plugin name="cordova-plugin-dialogs" spec="^1.3.4" />
|
||||
<plugin name="cordova-plugin-ble-central" spec="^1.2.2">
|
||||
<plugin name="cordova-plugin-device" spec="^2.0.3" />
|
||||
<plugin name="cordova-plugin-dialogs" spec="^2.0.2" />
|
||||
<plugin name="cordova-plugin-ble-central" spec="^1.2.4">
|
||||
<variable name="BLUETOOTH_USAGE_DESCRIPTION" value="INTVAL3 intervalometer controls" />
|
||||
</plugin>
|
||||
<plugin name="cordova-plugin-statusbar" spec="^2.4.2" />
|
||||
<plugin name="cordova-plugin-camera-with-exif" spec="^1.2.4" />
|
||||
<engine name="android" spec="^6.4.0" />
|
||||
<plugin name="cordova-plugin-statusbar" spec="^2.4.3" />
|
||||
<plugin name="cordova-plugin-camera-with-exif" spec="^1.3.1" />
|
||||
<engine name="ios" spec="^4.5.5" />
|
||||
<engine name="android" spec="^7.1.4" />
|
||||
</widget>
|
||||
|
|
|
@ -7,4 +7,6 @@ cordova plugin add cordova-plugin-device
|
|||
cordova plugin add cordova-plugin-dialogs
|
||||
cordova plugin add cordova-plugin-ble-central --variable BLUETOOTH_USAGE_DESCRIPTION="INTVAL3 intervalometer controls"
|
||||
cordova plugin add cordova-plugin-statusbar
|
||||
cordova plugin add cordova-plugin-camera-with-exif
|
||||
cordova plugin add cordova-plugin-camera-with-exif
|
||||
cordova plugin add cordova-plugin-appcenter-analytics
|
||||
cordova plugin add cordova-plugin-appcenter-crashes
|
File diff suppressed because it is too large
Load Diff
|
@ -11,8 +11,14 @@
|
|||
"author": "M McWilliams",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"cordova-android": "^8.1.0",
|
||||
"cordova-ios": "^5.1.1",
|
||||
"appcenter": "^2.6.1",
|
||||
"appcenter-analytics": "^2.6.1",
|
||||
"appcenter-crashes": "^2.6.1",
|
||||
"cordova-android": "^7.1.4",
|
||||
"cordova-ios": "^4.5.5",
|
||||
"cordova-plugin-appcenter-analytics": "^0.5.1",
|
||||
"cordova-plugin-appcenter-crashes": "^0.5.1",
|
||||
"cordova-plugin-appcenter-shared": "^0.5.1",
|
||||
"cordova-plugin-ble-central": "^1.2.4",
|
||||
"cordova-plugin-camera-with-exif": "^1.3.1",
|
||||
"cordova-plugin-compat": "^1.2.0",
|
||||
|
@ -32,11 +38,13 @@
|
|||
"BLUETOOTH_USAGE_DESCRIPTION": "INTVAL3 intervalometer controls"
|
||||
},
|
||||
"cordova-plugin-splashscreen": {},
|
||||
"cordova-plugin-camera-with-exif": {}
|
||||
"cordova-plugin-camera-with-exif": {},
|
||||
"cordova-plugin-appcenter-analytics": {},
|
||||
"cordova-plugin-appcenter-crashes": {}
|
||||
},
|
||||
"platforms": [
|
||||
"android",
|
||||
"ios"
|
||||
"ios",
|
||||
"android"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue