First commit
26
cordova/.gitignore
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
.DS_Store
|
||||
|
||||
# Generated by package manager
|
||||
node_modules/
|
||||
|
||||
# Generated by Cordova
|
||||
/plugins/
|
||||
/platforms/
|
||||
77
cordova/config.xml
Normal file
@@ -0,0 +1,77 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<widget id="edu.midwestern.alvinn" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||
<name>ALVINN</name>
|
||||
<description>Sample Apache Cordova App</description>
|
||||
<author email="dev@cordova.apache.org" href="https://cordova.apache.org">
|
||||
Apache Cordova Team
|
||||
</author>
|
||||
<content src="index.html" />
|
||||
<allow-intent href="http://*/*" />
|
||||
<allow-intent href="https://*/*" />
|
||||
|
||||
<allow-navigation href="*" />
|
||||
|
||||
<platform name="android">
|
||||
<preference name="StatusBarOverlaysWebView" value="false" />
|
||||
<preference name="android-minSdkVersion" value="22" />
|
||||
<preference name="SplashMaintainAspectRatio" value="true" />
|
||||
<splash density="land-hdpi" src="res/screen/android/drawable-hdpi/screen.png" />
|
||||
<splash density="land-mdpi" src="res/screen/android/drawable-mdpi/screen.png" />
|
||||
<splash density="land-xhdpi" src="res/screen/android/drawable-xhdpi/screen.png" />
|
||||
<splash density="land-xxhdpi" src="res/screen/android/drawable-xxhdpi/screen.png" />
|
||||
<splash density="land-xxxhdpi" src="res/screen/android/drawable-xxxhdpi/screen.png" />
|
||||
<splash density="port-hdpi" src="res/screen/android/drawable-hdpi/screen.png" />
|
||||
<splash density="port-mdpi" src="res/screen/android/drawable-mdpi/screen.png" />
|
||||
<splash density="port-xhdpi" src="res/screen/android/drawable-xhdpi/screen.png" />
|
||||
<splash density="port-xxhdpi" src="res/screen/android/drawable-xxhdpi/screen.png" />
|
||||
<splash density="port-xxxhdpi" src="res/screen/android/drawable-xxxhdpi/screen.png" />
|
||||
<icon density="ldpi" src="res/icon/android/mipmap-ldpi/ic_launcher.png" />
|
||||
<icon density="mdpi" src="res/icon/android/mipmap-mdpi/ic_launcher.png" />
|
||||
<icon density="hdpi" src="res/icon/android/mipmap-hdpi/ic_launcher.png" />
|
||||
<icon density="xhdpi" src="res/icon/android/mipmap-xhdpi/ic_launcher.png" />
|
||||
<icon density="xxhdpi" src="res/icon/android/mipmap-xxhdpi/ic_launcher.png" />
|
||||
<icon density="xxxhdpi" src="res/icon/android/mipmap-xxxhdpi/ic_launcher.png" />
|
||||
</platform>
|
||||
|
||||
|
||||
<platform name="ios">
|
||||
<config-file parent="CFBundleAllowMixedLocalizations" platform="ios" target="*-Info.plist">
|
||||
<true />
|
||||
</config-file>
|
||||
<preference name="scheme" value="app" />
|
||||
<preference name="hostname" value="localhost" />
|
||||
<preference name="StatusBarOverlaysWebView" value="true" />
|
||||
<splash src="res/screen/ios/Default@2x~universal~anyany.png" />
|
||||
<icon height="180" src="res/icon/ios/icon-60x60@3x.png" width="180" />
|
||||
<icon height="60" src="res/icon/ios/icon-60x60@1x.png" width="60" />
|
||||
<icon height="120" src="res/icon/ios/icon-60x60@2x.png" width="120" />
|
||||
<icon height="76" src="res/icon/ios/icon-76x76@1x.png" width="76" />
|
||||
<icon height="152" src="res/icon/ios/icon-76x76@2x.png" width="152" />
|
||||
<icon height="228" src="res/icon/ios/icon-76x76@3x.png" width="228" />
|
||||
<icon height="40" src="res/icon/ios/icon-40x40@1x.png" width="40" />
|
||||
<icon height="80" src="res/icon/ios/icon-40x40@2x.png" width="80" />
|
||||
<icon height="87" src="res/icon/ios/icon-29x29@3x.png" width="87" />
|
||||
<icon height="57" src="res/icon/ios/icon-57x57@1x.png" width="57" />
|
||||
<icon height="114" src="res/icon/ios/icon-57x57@2x.png" width="114" />
|
||||
<icon height="72" src="res/icon/ios/icon-72x72@1x.png" width="72" />
|
||||
<icon height="144" src="res/icon/ios/icon-72x72@2x.png" width="144" />
|
||||
<icon height="167" src="res/icon/ios/icon-83.5x83.5@2x.png" width="167" />
|
||||
<icon height="29" src="res/icon/ios/icon-29x29@1x.png" width="29" />
|
||||
<icon height="58" src="res/icon/ios/icon-29x29@2x.png" width="58" />
|
||||
<icon height="50" src="res/icon/ios/icon-50x50@1x.png" width="50" />
|
||||
<icon height="100" src="res/icon/ios/icon-50x50@2x.png" width="100" />
|
||||
<icon height="167" src="res/icon/ios/icon-83.5x83.5@2x.png" width="167" />
|
||||
<icon height="1024" src="res/icon/ios/icon-512x512@2x.png" width="1024" />
|
||||
</platform>
|
||||
|
||||
|
||||
<preference name="DisallowOverscroll" value="true" />
|
||||
<preference name="BackupWebStorage" value="local" />
|
||||
<preference name="AutoHideSplashScreen" value="false" />
|
||||
<preference name="ShowSplashScreenSpinner" value="false" />
|
||||
<preference name="SplashScreenDelay" value="0" />
|
||||
<preference name="Suppresses3DTouchGesture" value="true" />
|
||||
<preference name="Allow3DTouchLinkPreview" value="false" />
|
||||
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
|
||||
<preference name="AllowInlineMediaPlayback" value="true" />
|
||||
</widget>
|
||||
2307
cordova/package-lock.json
generated
Normal file
33
cordova/package.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "edu.midwestern.alvinn",
|
||||
"displayName": "ALVINN",
|
||||
"version": "1.0.0",
|
||||
"description": "A sample Apache Cordova application that responds to the deviceready event.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [
|
||||
"ecosystem:cordova"
|
||||
],
|
||||
"author": "Apache Cordova Team",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"cordova-android": "^12.0.1",
|
||||
"cordova-ios": "^7.0.1",
|
||||
"cordova-plugin-keyboard": "^1.2.0",
|
||||
"cordova-plugin-splashscreen": "^6.0.2",
|
||||
"cordova-plugin-statusbar": "^4.0.0"
|
||||
},
|
||||
"cordova": {
|
||||
"plugins": {
|
||||
"cordova-plugin-statusbar": {},
|
||||
"cordova-plugin-keyboard": {},
|
||||
"cordova-plugin-splashscreen": {}
|
||||
},
|
||||
"platforms": [
|
||||
"ios",
|
||||
"android"
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
cordova/res/icon/android/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
cordova/res/icon/android/mipmap-ldpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 770 B |
BIN
cordova/res/icon/android/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 954 B |
BIN
cordova/res/icon/android/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
cordova/res/icon/android/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
cordova/res/icon/android/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
cordova/res/icon/android/playstore-icon.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
cordova/res/icon/ios/icon-20x20@1x.png
Normal file
|
After Width: | Height: | Size: 534 B |
BIN
cordova/res/icon/ios/icon-20x20@2x.png
Normal file
|
After Width: | Height: | Size: 828 B |
BIN
cordova/res/icon/ios/icon-20x20@3x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
cordova/res/icon/ios/icon-29x29@1x.png
Normal file
|
After Width: | Height: | Size: 696 B |
BIN
cordova/res/icon/ios/icon-29x29@2x.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
cordova/res/icon/ios/icon-29x29@3x.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
cordova/res/icon/ios/icon-40x40@1x.png
Normal file
|
After Width: | Height: | Size: 828 B |
BIN
cordova/res/icon/ios/icon-40x40@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
cordova/res/icon/ios/icon-40x40@3x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
cordova/res/icon/ios/icon-50x50@1x.png
Normal file
|
After Width: | Height: | Size: 977 B |
BIN
cordova/res/icon/ios/icon-50x50@2x.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
cordova/res/icon/ios/icon-512x512@1x.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
BIN
cordova/res/icon/ios/icon-512x512@2x.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
cordova/res/icon/ios/icon-57x57@1x.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
cordova/res/icon/ios/icon-57x57@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
cordova/res/icon/ios/icon-60x60@1x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
cordova/res/icon/ios/icon-60x60@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
cordova/res/icon/ios/icon-60x60@3x.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
cordova/res/icon/ios/icon-72x72@1x.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
cordova/res/icon/ios/icon-72x72@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
cordova/res/icon/ios/icon-76x76@1x.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
cordova/res/icon/ios/icon-76x76@2x.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
cordova/res/icon/ios/icon-76x76@3x.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
cordova/res/icon/ios/icon-83.5x83.5@2x.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
cordova/res/screen/android/drawable-hdpi/screen.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
cordova/res/screen/android/drawable-ldpi/screen.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
cordova/res/screen/android/drawable-mdpi/screen.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
cordova/res/screen/android/drawable-xhdpi/screen.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
cordova/res/screen/android/drawable-xxhdpi/screen.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
cordova/res/screen/android/drawable-xxxhdpi/screen.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
cordova/res/screen/ios/Default@2x~universal~anyany.png
Normal file
|
After Width: | Height: | Size: 44 KiB |