vuejs-cordova-sample
--------------------------------------------------------------------------------
/cordova_app/platforms/android/assets/www/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js:
--------------------------------------------------------------------------------
1 | cordova.define("cordova-plugin-camera.CameraPopoverHandle", function(require, exports, module) {
2 | /*
3 | *
4 | * Licensed to the Apache Software Foundation (ASF) under one
5 | * or more contributor license agreements. See the NOTICE file
6 | * distributed with this work for additional information
7 | * regarding copyright ownership. The ASF licenses this file
8 | * to you under the Apache License, Version 2.0 (the
9 | * "License"); you may not use this file except in compliance
10 | * with the License. You may obtain a copy of the License at
11 | *
12 | * http://www.apache.org/licenses/LICENSE-2.0
13 | *
14 | * Unless required by applicable law or agreed to in writing,
15 | * software distributed under the License is distributed on an
16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | * KIND, either express or implied. See the License for the
18 | * specific language governing permissions and limitations
19 | * under the License.
20 | *
21 | */
22 |
23 | /**
24 | * @ignore in favour of iOS' one
25 | * A handle to an image picker popover.
26 | */
27 | var CameraPopoverHandle = function() {
28 | this.setPosition = function(popoverOptions) {
29 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.');
30 | };
31 | };
32 |
33 | module.exports = CameraPopoverHandle;
34 |
35 | });
36 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/assets/www/plugins/cordova-plugin-headercolor/www/HeaderColor.js:
--------------------------------------------------------------------------------
1 | cordova.define("cordova-plugin-headercolor.HeaderColor", function(require, exports, module) {
2 | var headerColor = {
3 | tint: function (color, successCallback, errorCallback) {
4 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]);
5 | }
6 | }
7 |
8 | if (!window.plugins) { window.plugins = {}; }
9 |
10 | window.plugins.headerColor = headerColor;
11 | return window.plugins.headerColor;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/assets/www/vuejs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/vuejs.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/android_sdk_version:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | Licensed to the Apache Software Foundation (ASF) under one
5 | or more contributor license agreements. See the NOTICE file
6 | distributed with this work for additional information
7 | regarding copyright ownership. The ASF licenses this file
8 | to you under the Apache License, Version 2.0 (the
9 | "License"); you may not use this file except in compliance
10 | with the License. You may obtain a copy of the License at
11 |
12 | http://www.apache.org/licenses/LICENSE-2.0
13 |
14 | Unless required by applicable law or agreed to in writing,
15 | software distributed under the License is distributed on an
16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | KIND, either express or implied. See the License for the
18 | specific language governing permissions and limitations
19 | under the License.
20 | */
21 |
22 | var android_sdk = require('./lib/android_sdk');
23 |
24 | android_sdk.print_newest_available_sdk_target().done(null, function(err) {
25 | console.error(err);
26 | process.exit(2);
27 | });
28 |
29 |
30 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/android_sdk_version.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0android_sdk_version"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'android_sdk_version' script in 'bin' folder, aborting...>&2
25 | EXIT /B 1
26 | )
27 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/build.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0build"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'build' script in 'cordova' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/check_reqs:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | Licensed to the Apache Software Foundation (ASF) under one
5 | or more contributor license agreements. See the NOTICE file
6 | distributed with this work for additional information
7 | regarding copyright ownership. The ASF licenses this file
8 | to you under the Apache License, Version 2.0 (the
9 | "License"); you may not use this file except in compliance
10 | with the License. You may obtain a copy of the License at
11 |
12 | http://www.apache.org/licenses/LICENSE-2.0
13 |
14 | Unless required by applicable law or agreed to in writing,
15 | software distributed under the License is distributed on an
16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | KIND, either express or implied. See the License for the
18 | specific language governing permissions and limitations
19 | under the License.
20 | */
21 |
22 | var check_reqs = require('./lib/check_reqs');
23 |
24 | check_reqs.run().done(
25 | function success() {
26 | console.log('Looks like your environment fully supports cordova-android development!');
27 | }, function fail(err) {
28 | console.log(err);
29 | process.exit(2);
30 | }
31 | );
32 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/check_reqs.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0check_reqs"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'check_reqs' script in 'bin' folder, aborting...>&2
25 | EXIT /B 1
26 | )
27 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/clean.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0clean"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'clean' script in 'cordova' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/defaults.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/getASPath.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | for /f "tokens=2*" %%a in ('REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Android Studio" /v Path') do set "ASPath=%%~b"
3 | ECHO %ASPath%
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/install-device.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0install-device"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'install-device' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/install-emulator.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0install-emulator"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'install-emulator' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/list-devices:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | Licensed to the Apache Software Foundation (ASF) under one
5 | or more contributor license agreements. See the NOTICE file
6 | distributed with this work for additional information
7 | regarding copyright ownership. The ASF licenses this file
8 | to you under the Apache License, Version 2.0 (the
9 | "License"); you may not use this file except in compliance
10 | with the License. You may obtain a copy of the License at
11 |
12 | http://www.apache.org/licenses/LICENSE-2.0
13 |
14 | Unless required by applicable law or agreed to in writing,
15 | software distributed under the License is distributed on an
16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | KIND, either express or implied. See the License for the
18 | specific language governing permissions and limitations
19 | under the License.
20 | */
21 |
22 | var devices = require('./device');
23 |
24 | // Usage support for when args are given
25 | require('./check_reqs').check_android().then(function() {
26 | devices.list().done(function(device_list) {
27 | device_list && device_list.forEach(function(dev) {
28 | console.log(dev);
29 | });
30 | }, function(err) {
31 | console.error('ERROR: ' + err);
32 | process.exit(2);
33 | });
34 | });
35 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/list-devices.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0list-devices"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'list-devices' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/list-emulator-images.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0list-emulator-images"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'list-emulator-images' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
27 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/list-started-emulators.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0list-started-emulators"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'list-started-emulators' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/lib/start-emulator.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0start-emulator"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'start-emulator' script in 'cordova\lib' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/log:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | Licensed to the Apache Software Foundation (ASF) under one
5 | or more contributor license agreements. See the NOTICE file
6 | distributed with this work for additional information
7 | regarding copyright ownership. The ASF licenses this file
8 | to you under the Apache License, Version 2.0 (the
9 | "License"); you may not use this file except in compliance
10 | with the License. You may obtain a copy of the License at
11 |
12 | http://www.apache.org/licenses/LICENSE-2.0
13 |
14 | Unless required by applicable law or agreed to in writing,
15 | software distributed under the License is distributed on an
16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | KIND, either express or implied. See the License for the
18 | specific language governing permissions and limitations
19 | under the License.
20 | */
21 |
22 | var log = require('./lib/log'),
23 | reqs = require('./lib/check_reqs'),
24 | args = process.argv;
25 |
26 | // Usage support for when args are given
27 | if(args.length > 2) {
28 | log.help();
29 | } else {
30 | reqs.run().done(function() {
31 | return log.run();
32 | }, function(err) {
33 | console.error('ERROR: ' + err);
34 | process.exit(2);
35 | });
36 | }
37 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/log.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0log"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'log' script in 'cordova' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/loggingHelper.js:
--------------------------------------------------------------------------------
1 | var CordovaLogger = require('cordova-common').CordovaLogger;
2 |
3 | module.exports = {
4 | adjustLoggerLevel: function (opts) {
5 | if (opts instanceof Array) {
6 | opts.silent = opts.indexOf('--silent') !== -1;
7 | opts.verbose = opts.indexOf('--verbose') !== -1;
8 | }
9 |
10 | if (opts.silent) {
11 | CordovaLogger.get().setLevel('error');
12 | }
13 |
14 | if (opts.verbose) {
15 | CordovaLogger.get().setLevel('verbose');
16 | }
17 | }
18 | };
19 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/run.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0run"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'run' script in 'cordova' folder, aborting...>&2
25 | EXIT /B 1
26 | )
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/version:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | /*
4 | Licensed to the Apache Software Foundation (ASF) under one
5 | or more contributor license agreements. See the NOTICE file
6 | distributed with this work for additional information
7 | regarding copyright ownership. The ASF licenses this file
8 | to you under the Apache License, Version 2.0 (the
9 | "License"); you may not use this file except in compliance
10 | with the License. You may obtain a copy of the License at
11 |
12 | http://www.apache.org/licenses/LICENSE-2.0
13 |
14 | Unless required by applicable law or agreed to in writing,
15 | software distributed under the License is distributed on an
16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | KIND, either express or implied. See the License for the
18 | specific language governing permissions and limitations
19 | under the License.
20 | */
21 |
22 | // Coho updates this line:
23 | var VERSION = "6.4.0";
24 |
25 | module.exports.version = VERSION;
26 |
27 | if (!module.parent) {
28 | console.log(VERSION);
29 | }
30 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/cordova/version.bat:
--------------------------------------------------------------------------------
1 | :: Licensed to the Apache Software Foundation (ASF) under one
2 | :: or more contributor license agreements. See the NOTICE file
3 | :: distributed with this work for additional information
4 | :: regarding copyright ownership. The ASF licenses this file
5 | :: to you under the Apache License, Version 2.0 (the
6 | :: "License"); you may not use this file except in compliance
7 | :: with the License. You may obtain a copy of the License at
8 | ::
9 | :: http://www.apache.org/licenses/LICENSE-2.0
10 | ::
11 | :: Unless required by applicable law or agreed to in writing,
12 | :: software distributed under the License is distributed on an
13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 | :: KIND, either express or implied. See the License for the
15 | :: specific language governing permissions and limitations
16 | :: under the License.
17 |
18 | @ECHO OFF
19 | SET script_path="%~dp0version"
20 | IF EXIST %script_path% (
21 | node %script_path% %*
22 | ) ELSE (
23 | ECHO.
24 | ECHO ERROR: Could not find 'version' script in 'cordova' folder, aborting...>&2
25 | EXIT /B 1
26 | )
27 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/platform_www/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js:
--------------------------------------------------------------------------------
1 | cordova.define("cordova-plugin-camera.CameraPopoverHandle", function(require, exports, module) {
2 | /*
3 | *
4 | * Licensed to the Apache Software Foundation (ASF) under one
5 | * or more contributor license agreements. See the NOTICE file
6 | * distributed with this work for additional information
7 | * regarding copyright ownership. The ASF licenses this file
8 | * to you under the Apache License, Version 2.0 (the
9 | * "License"); you may not use this file except in compliance
10 | * with the License. You may obtain a copy of the License at
11 | *
12 | * http://www.apache.org/licenses/LICENSE-2.0
13 | *
14 | * Unless required by applicable law or agreed to in writing,
15 | * software distributed under the License is distributed on an
16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 | * KIND, either express or implied. See the License for the
18 | * specific language governing permissions and limitations
19 | * under the License.
20 | *
21 | */
22 |
23 | /**
24 | * @ignore in favour of iOS' one
25 | * A handle to an image picker popover.
26 | */
27 | var CameraPopoverHandle = function() {
28 | this.setPosition = function(popoverOptions) {
29 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.');
30 | };
31 | };
32 |
33 | module.exports = CameraPopoverHandle;
34 |
35 | });
36 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/platform_www/plugins/cordova-plugin-headercolor/www/HeaderColor.js:
--------------------------------------------------------------------------------
1 | cordova.define("cordova-plugin-headercolor.HeaderColor", function(require, exports, module) {
2 | var headerColor = {
3 | tint: function (color, successCallback, errorCallback) {
4 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]);
5 | }
6 | }
7 |
8 | if (!window.plugins) { window.plugins = {}; }
9 |
10 | window.plugins.headerColor = headerColor;
11 | return window.plugins.headerColor;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 | # Project target.
13 | target=android-26
14 | android.library.reference.1=CordovaLib
15 | cordova.system.library.1=com.android.support:support-v4:24.1.1+
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-hdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-hdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-ldpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-ldpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-mdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-mdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-xhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-xxhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xxhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-land-xxxhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xxxhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-hdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-hdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-ldpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-ldpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-mdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-mdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-xhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-xxhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xxhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/drawable-port-xxxhdpi/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xxxhdpi/screen.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-hdpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-ldpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-ldpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-mdpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xhdpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xxhdpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/mipmap-xxxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xxxhdpi/icon.png
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | VueJS Cordova Sample
4 | @string/app_name
5 | @string/launcher_name
6 |
7 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/res/xml/provider_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/settings.gradle:
--------------------------------------------------------------------------------
1 | // GENERATED FILE - DO NOT EDIT
2 | include ":"
3 | include ":CordovaLib"
4 |
--------------------------------------------------------------------------------
/cordova_app/platforms/android/wrapper.gradle:
--------------------------------------------------------------------------------
1 | //This file is intentionally just a comment
2 |
--------------------------------------------------------------------------------
/cordova_app/plugins/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/.gitkeep
--------------------------------------------------------------------------------
/cordova_app/plugins/android.json:
--------------------------------------------------------------------------------
1 | {
2 | "prepare_queue": {
3 | "installed": [],
4 | "uninstalled": []
5 | },
6 | "config_munge": {
7 | "files": {}
8 | },
9 | "installed_plugins": {
10 | "cordova-plugin-camera": {
11 | "PACKAGE_NAME": "vuejs.cordova.sample"
12 | },
13 | "cordova-plugin-dialogs": {
14 | "PACKAGE_NAME": "vuejs.cordova.sample"
15 | },
16 | "cordova-plugin-flashlight": {
17 | "PACKAGE_NAME": "vuejs.cordova.sample"
18 | },
19 | "cordova-plugin-geolocation": {
20 | "PACKAGE_NAME": "vuejs.cordova.sample"
21 | },
22 | "cordova-plugin-headercolor": {
23 | "PACKAGE_NAME": "vuejs.cordova.sample"
24 | },
25 | "cordova-plugin-statusbar": {
26 | "PACKAGE_NAME": "vuejs.cordova.sample"
27 | },
28 | "cordova-plugin-vibration": {
29 | "PACKAGE_NAME": "vuejs.cordova.sample"
30 | },
31 | "cordova-plugin-whitelist": {
32 | "PACKAGE_NAME": "vuejs.cordova.sample"
33 | },
34 | "phonegap-nfc": {
35 | "PACKAGE_NAME": "vuejs.cordova.sample"
36 | }
37 | },
38 | "dependent_plugins": {}
39 | }
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-android-window-background/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 WINTER AGENCY
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-android-window-background/cordova-window-background-strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-android-window-background/cordova-window-background-styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/android-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/android-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/android-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/android-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-fail.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-success.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/android/xml/provider_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ios/UIImage+CropScaleOrientation.h:
--------------------------------------------------------------------------------
1 | /*
2 | Licensed to the Apache Software Foundation (ASF) under one
3 | or more contributor license agreements. See the NOTICE file
4 | distributed with this work for additional information
5 | regarding copyright ownership. The ASF licenses this file
6 | to you under the Apache License, Version 2.0 (the
7 | "License"); you may not use this file except in compliance
8 | with the License. You may obtain a copy of the License at
9 |
10 | http://www.apache.org/licenses/LICENSE-2.0
11 |
12 | Unless required by applicable law or agreed to in writing,
13 | software distributed under the License is distributed on an
14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 | KIND, either express or implied. See the License for the
16 | specific language governing permissions and limitations
17 | under the License.
18 | */
19 |
20 | #import
21 |
22 | @interface UIImage (CropScaleOrientation)
23 |
24 | - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize;
25 | - (UIImage*)imageCorrectedForCaptureOrientation;
26 | - (UIImage*)imageCorrectedForCaptureOrientation:(UIImageOrientation)imageOrientation;
27 | - (UIImage*)imageByScalingNotCroppingForSize:(CGSize)targetSize;
28 |
29 | @end
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/back.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/shoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/shoot.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest/CDVCameraTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/ja/README.md:
--------------------------------------------------------------------------------
1 |
19 |
20 | # CDVCamera の iOS のテスト
21 |
22 | `Node.js` `コルドバ`ios をプルするをインストールする必要があります。.
23 |
24 | コルドバ ios をインストールします。
25 |
26 | npm install
27 |
28 |
29 | 現在のフォルダーに.
30 |
31 | # Xcode からテスト
32 |
33 | 1. `CDVCameraTest.xcworkspace`ファイルを起動します。
34 | 2. スキーム] ドロップダウン メニューから"CDVCameraLibTests"を選択します。
35 | 3. クリックし、`再生`ボタンを押し、テストを実行する`レンチ`のアイコンを選択
36 |
37 | # コマンドラインからテスト
38 |
39 | npm test
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/ko/README.md:
--------------------------------------------------------------------------------
1 |
19 |
20 | # CDVCamera에 대 한 iOS 테스트
21 |
22 | `Node.js` `코르도바` ios에서를 설치 해야.
23 |
24 | 코르도바-ios를 설치 하는 첫번째는:
25 |
26 | npm install
27 |
28 |
29 | 현재 폴더에....
30 |
31 | # Xcode에서 테스트
32 |
33 | 1. `CDVCameraTest.xcworkspace` 파일을 시작 합니다.
34 | 2. 구성표 드롭 다운 메뉴에서 "CDVCameraLibTests"를 선택
35 | 3. 클릭 하 고 `재생` 버튼에는 테스트를 실행 하려면 `공구 모양` 아이콘을 선택
36 |
37 | # 명령줄에서 테스트
38 |
39 | npm test
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/zh/README.md:
--------------------------------------------------------------------------------
1 |
19 |
20 | # CDVCamera 的 iOS 測試
21 |
22 | 您需要安裝`node.js`拉`科爾多瓦 ios`中.
23 |
24 | 第一次安裝科爾多瓦 ios:
25 |
26 | npm install
27 |
28 |
29 | 在當前資料夾中。
30 |
31 | # 從 Xcode 測試
32 |
33 | 1. 啟動`CDVCameraTest.xcworkspace`檔。
34 | 2. 從方案下拉式功能表中選擇"CDVCameraLibTests"
35 | 3. 按一下並堅持`播放`按鈕,然後選擇要運行的測試的`扳手`圖示
36 |
37 | # 從命令列測試
38 |
39 | npm test
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/ios/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-camera-test-ios",
3 | "version": "1.0.0",
4 | "description": "iOS Unit Tests for Camera Plugin",
5 | "author": "Apache Software Foundation",
6 | "license": "Apache Version 2.0",
7 | "dependencies": {
8 | "cordova-ios": "*"
9 | },
10 | "scripts": {
11 | "test": "xcodebuild -scheme CordovaLib && xcodebuild test -scheme CDVCameraLibTests -destination 'platform=iOS Simulator,name=iPhone 5'"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/tests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-camera-tests",
3 | "version": "2.4.1-dev",
4 | "description": "",
5 | "cordova": {
6 | "id": "cordova-plugin-camera-tests",
7 | "platforms": []
8 | },
9 | "keywords": [
10 | "ecosystem:cordova"
11 | ],
12 | "author": "",
13 | "license": "Apache 2.0"
14 | }
15 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Licensed to the Apache Software Foundation (ASF) under one
4 | * or more contributor license agreements. See the NOTICE file
5 | * distributed with this work for additional information
6 | * regarding copyright ownership. The ASF licenses this file
7 | * to you under the Apache License, Version 2.0 (the
8 | * "License"); you may not use this file except in compliance
9 | * with the License. You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing,
14 | * software distributed under the License is distributed on an
15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | * KIND, either express or implied. See the License for the
17 | * specific language governing permissions and limitations
18 | * under the License.
19 | *
20 | */
21 |
22 | /**
23 | * @ignore in favour of iOS' one
24 | * A handle to an image picker popover.
25 | */
26 | var CameraPopoverHandle = function() {
27 | this.setPosition = function(popoverOptions) {
28 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.');
29 | };
30 | };
31 |
32 | module.exports = CameraPopoverHandle;
33 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/tests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-dialogs-tests",
3 | "version": "1.3.3-dev",
4 | "description": "",
5 | "cordova": {
6 | "id": "cordova-plugin-dialogs-tests",
7 | "platforms": []
8 | },
9 | "keywords": [
10 | "ecosystem:cordova"
11 | ],
12 | "author": "",
13 | "license": "Apache 2.0"
14 | }
15 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/tests/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
24 | Cordova Notification Plugin Tests
25 | Apache 2.0
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/default.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-flashlight/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Eddy Verbruggen
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-flashlight/src/ios/Flashlight.h:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | @interface Flashlight : CDVPlugin
4 |
5 | - (void)available:(CDVInvokedUrlCommand*)command;
6 | - (void)switchOn:(CDVInvokedUrlCommand*)command;
7 | - (void)switchOff:(CDVInvokedUrlCommand*)command;
8 |
9 | @end
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-geolocation/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-geolocation/src/wp/GeoLocation.cs:
--------------------------------------------------------------------------------
1 | /*
2 | Licensed under the Apache License, Version 2.0 (the "License");
3 | you may not use this file except in compliance with the License.
4 | You may obtain a copy of the License at
5 |
6 | http://www.apache.org/licenses/LICENSE-2.0
7 |
8 | Unless required by applicable law or agreed to in writing, software
9 | distributed under the License is distributed on an "AS IS" BASIS,
10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 | See the License for the specific language governing permissions and
12 | limitations under the License.
13 | */
14 |
15 | using System;
16 | using System.Collections.Generic;
17 | using System.Runtime.Serialization;
18 | using System.Threading;
19 | using System.Device.Location;
20 |
21 | namespace WPCordovaClassLib.Cordova.Commands
22 | {
23 | ///
24 | /// This is a command stub, the browser provides the correct implementation. We use this to trigger the static analyzer that we require this permission
25 | ///
26 | public class Geolocation
27 | {
28 | /* Unreachable code, by design -jm */
29 | private void triggerGeoInclusion()
30 | {
31 | new GeoCoordinateWatcher();
32 | }
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-geolocation/tests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-geolocation-tests",
3 | "version": "2.4.3-dev",
4 | "description": "",
5 | "cordova": {
6 | "id": "cordova-plugin-geolocation-tests",
7 | "platforms": []
8 | },
9 | "keywords": [
10 | "ecosystem:cordova"
11 | ],
12 | "author": "",
13 | "license": "Apache 2.0"
14 | }
15 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-headercolor/README.MD:
--------------------------------------------------------------------------------
1 | # cordova-plugin-headercolor
2 |
3 | **HeaderColor** is a cordova plugin to change color of header in multitask view. Android devices.
4 |
5 |
6 |
7 | ## Supported Platforms
8 |
9 | - Android
10 |
11 | ## Installation
12 |
13 | Cordova:
14 |
15 | cordova plugin add https://github.com/tomloprod/cordova-plugin-headercolor
16 |
17 | ## Usage
18 |
19 | This plugin exports an object with one method called "tint":
20 |
21 | ```javascript
22 | window.plugins.headerColor.tint("#becb29");
23 | ```
24 |
25 | You can also specify the header color in your `config.xml`:
26 |
27 | ```xml
28 |
29 | ```
30 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-headercolor/headercolor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-headercolor/headercolor.png
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-headercolor/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | HeaderColor
6 | HeaderColor is a cordova plugin to change color of header in multitask view. Android devices.
7 | MIT
8 | cordova, ionic, header color, android
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-headercolor/www/HeaderColor.js:
--------------------------------------------------------------------------------
1 | var headerColor = {
2 | tint: function (color, successCallback, errorCallback) {
3 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]);
4 | }
5 | }
6 |
7 | if (!window.plugins) { window.plugins = {}; }
8 |
9 | window.plugins.headerColor = headerColor;
10 | return window.plugins.headerColor;
11 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-statusbar/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-statusbar/RELEASENOTES.md:
--------------------------------------------------------------------------------
1 | ### 2.4.1 (Dec 27, 2017)
2 | * [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix overlaysWebView reset on rotation (#92)
3 |
4 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-statusbar/tests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-statusbar-tests",
3 | "version": "2.2.3-dev",
4 | "description": "",
5 | "cordova": {
6 | "id": "cordova-plugin-statusbar-tests",
7 | "platforms": []
8 | },
9 | "keywords": [
10 | "ecosystem:cordova"
11 | ],
12 | "author": "",
13 | "license": "Apache 2.0"
14 | }
15 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-statusbar/tests/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
26 | Cordova StatusBar Plugin Tests
27 | Apache 2.0
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
7 | This product includes software developed by Joerg Wiedenmann under the zlib license (http://www.gzip.org/zlib/zlib_license.html)
8 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/browser/Vibration.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Licensed to the Apache Software Foundation (ASF) under one
4 | * or more contributor license agreements. See the NOTICE file
5 | * distributed with this work for additional information
6 | * regarding copyright ownership. The ASF licenses this file
7 | * to you under the Apache License, Version 2.0 (the
8 | * "License"); you may not use this file except in compliance
9 | * with the License. You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing,
14 | * software distributed under the License is distributed on an
15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | * KIND, either express or implied. See the License for the
17 | * specific language governing permissions and limitations
18 | * under the License.
19 | *
20 | */
21 |
22 | module.exports = {
23 | vibrate: function (success, fail, milliseconds) {
24 | console.log('Vibration is not supported');
25 | return false;
26 | }
27 | };
28 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/firefoxos/VibrationProxy.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Licensed to the Apache Software Foundation (ASF) under one
4 | * or more contributor license agreements. See the NOTICE file
5 | * distributed with this work for additional information
6 | * regarding copyright ownership. The ASF licenses this file
7 | * to you under the Apache License, Version 2.0 (the
8 | * "License"); you may not use this file except in compliance
9 | * with the License. You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing,
14 | * software distributed under the License is distributed on an
15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | * KIND, either express or implied. See the License for the
17 | * specific language governing permissions and limitations
18 | * under the License.
19 | *
20 | */
21 |
22 | module.exports = {
23 |
24 | vibrate: function (success, fail, milliseconds) {
25 | if (navigator.notification.vibrate) {
26 | navigator.vibrate(milliseconds);
27 | } else {
28 | console.log('cordova/plugin/firefoxos/vibration, vibrate API does not exist');
29 | }
30 | }
31 | };
32 |
33 | require('cordova/exec/proxy').add('Vibration', module.exports);
34 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/ios/CDVVibration.h:
--------------------------------------------------------------------------------
1 | /*
2 | Licensed to the Apache Software Foundation (ASF) under one
3 | or more contributor license agreements. See the NOTICE file
4 | distributed with this work for additional information
5 | regarding copyright ownership. The ASF licenses this file
6 | to you under the Apache License, Version 2.0 (the
7 | "License"); you may not use this file except in compliance
8 | with the License. You may obtain a copy of the License at
9 |
10 | http://www.apache.org/licenses/LICENSE-2.0
11 |
12 | Unless required by applicable law or agreed to in writing,
13 | software distributed under the License is distributed on an
14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 | KIND, either express or implied. See the License for the
16 | specific language governing permissions and limitations
17 | under the License.
18 | */
19 |
20 | #import
21 | #import
22 | #import
23 | #import
24 |
25 | @interface CDVVibration : CDVPlugin {}
26 |
27 | - (void)vibrate:(CDVInvokedUrlCommand*)command;
28 |
29 | @end
30 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/ios/CDVVibration.m:
--------------------------------------------------------------------------------
1 | /*
2 | Licensed to the Apache Software Foundation (ASF) under one
3 | or more contributor license agreements. See the NOTICE file
4 | distributed with this work for additional information
5 | regarding copyright ownership. The ASF licenses this file
6 | to you under the Apache License, Version 2.0 (the
7 | "License"); you may not use this file except in compliance
8 | with the License. You may obtain a copy of the License at
9 |
10 | http://www.apache.org/licenses/LICENSE-2.0
11 |
12 | Unless required by applicable law or agreed to in writing,
13 | software distributed under the License is distributed on an
14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 | KIND, either express or implied. See the License for the
16 | specific language governing permissions and limitations
17 | under the License.
18 | */
19 |
20 | #import "CDVVibration.h"
21 |
22 | @implementation CDVVibration
23 |
24 | - (void)vibrate:(CDVInvokedUrlCommand*)command
25 | {
26 | AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
27 | }
28 |
29 | @end
30 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/tizen/VibrationProxy.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Licensed to the Apache Software Foundation (ASF) under one
4 | * or more contributor license agreements. See the NOTICE file
5 | * distributed with this work for additional information
6 | * regarding copyright ownership. The ASF licenses this file
7 | * to you under the Apache License, Version 2.0 (the
8 | * "License"); you may not use this file except in compliance
9 | * with the License. You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing,
14 | * software distributed under the License is distributed on an
15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | * KIND, either express or implied. See the License for the
17 | * specific language governing permissions and limitations
18 | * under the License.
19 | *
20 | */
21 |
22 | module.exports = {
23 | vibrate: function (milliseconds) {
24 | if (navigator.vibrate) {
25 | navigator.vibrate(milliseconds);
26 | }
27 | }
28 | };
29 |
30 | require('cordova/tizen/commandProxy').add('Vibration', module.exports);
31 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/src/windows/Vibration/.npmignore:
--------------------------------------------------------------------------------
1 | /bin/
2 | /obj/
3 | *.suo
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/tests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-vibration-tests",
3 | "version": "2.1.5-dev",
4 | "description": "",
5 | "cordova": {
6 | "id": "cordova-plugin-vibration-tests",
7 | "platforms": []
8 | },
9 | "keywords": [
10 | "ecosystem:cordova"
11 | ],
12 | "author": "",
13 | "license": "Apache 2.0"
14 | }
15 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/tests/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
26 | Cordova Vibration Plugin Tests
27 | Apache 2.0
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-vibration/www/blackberry10/vibrate.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Licensed to the Apache Software Foundation (ASF) under one
4 | * or more contributor license agreements. See the NOTICE file
5 | * distributed with this work for additional information
6 | * regarding copyright ownership. The ASF licenses this file
7 | * to you under the Apache License, Version 2.0 (the
8 | * "License"); you may not use this file except in compliance
9 | * with the License. You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing,
14 | * software distributed under the License is distributed on an
15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | * KIND, either express or implied. See the License for the
17 | * specific language governing permissions and limitations
18 | * under the License.
19 | *
20 | */
21 |
22 | var vibrate = function (duration) {
23 | navigator.vibrate(duration);
24 | };
25 |
26 | module.exports = vibrate;
27 |
--------------------------------------------------------------------------------
/cordova_app/plugins/cordova-plugin-whitelist/NOTICE:
--------------------------------------------------------------------------------
1 | Apache Cordova
2 | Copyright 2012 The Apache Software Foundation
3 |
4 | This product includes software developed at
5 | The Apache Software Foundation (http://www.apache.org/).
6 |
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/LICENSE.txt:
--------------------------------------------------------------------------------
1 | The MIT License
2 |
3 | Copyright (c) 2011-2015 Chariot Solutions
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/doc/read_tag_1_basic_app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_1_basic_app.png
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/doc/read_tag_2_dump_tag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_2_dump_tag.png
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/doc/read_tag_3_payload_as_string.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_3_payload_as_string.png
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/src/webworks/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | Built phonegap-nfc-${platform} for distribution
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/cordova_app/plugins/phonegap-nfc/tests/plugin.xml:
--------------------------------------------------------------------------------
1 |
6 | PhoneGap NFC Plugin Tests
7 | Apache 2.0
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/cordova_app/res/README.md:
--------------------------------------------------------------------------------
1 |
21 |
22 | Note that these image resources are not copied into a project when a project
23 | is created with the CLI. Although there are default image resources in a
24 | newly-created project, those come from the platform-specific project template,
25 | which can generally be found in the platform's `template` directory. Until
26 | icon and splashscreen support is added to the CLI, these image resources
27 | aren't used directly.
28 |
29 | See https://issues.apache.org/jira/browse/CB-5145
30 |
--------------------------------------------------------------------------------
/cordova_app/res/icon/android/icon-36-ldpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-36-ldpi.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/android/icon-48-mdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-48-mdpi.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/android/icon-72-hdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-72-hdpi.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/android/icon-96-xhdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-96-xhdpi.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/bada-wac/icon-48-type5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-48-type5.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/bada-wac/icon-50-type3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-50-type3.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/bada-wac/icon-80-type4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-80-type4.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/bada/icon-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada/icon-128.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/blackberry/icon-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/blackberry/icon-80.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/blackberry10/icon-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/blackberry10/icon-80.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/ios/icon-57-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-57-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/ios/icon-57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-57.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/ios/icon-72-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-72-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/ios/icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-72.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/tizen/icon-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/tizen/icon-128.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/webos/icon-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/webos/icon-64.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/windows-phone/icon-173-tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-173-tile.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/windows-phone/icon-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-48.png
--------------------------------------------------------------------------------
/cordova_app/res/icon/windows-phone/icon-62-tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-62-tile.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-hdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-hdpi-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-hdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-hdpi-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-ldpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-ldpi-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-ldpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-ldpi-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-mdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-mdpi-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-mdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-mdpi-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-xhdpi-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-xhdpi-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/android/screen-xhdpi-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-xhdpi-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/bada-wac/screen-type3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type3.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/bada-wac/screen-type4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type4.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/bada-wac/screen-type5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type5.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/bada/screen-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada/screen-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/blackberry/screen-225.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry/screen-225.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/blackberry10/splash-1280x768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-1280x768.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/blackberry10/splash-720x720.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-720x720.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/blackberry10/splash-768x1280.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-768x1280.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-ipad-landscape-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-landscape-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-ipad-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-ipad-portrait-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-portrait-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-ipad-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-iphone-landscape-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-landscape-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-iphone-landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-landscape.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-iphone-portrait-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-iphone-portrait-568h-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait-568h-2x.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/ios/screen-iphone-portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/tizen/README.md:
--------------------------------------------------------------------------------
1 |
21 |
22 | # Tizen Splash Screen
23 |
24 | Splash screens are unsupported on the Tizen platform.
25 |
--------------------------------------------------------------------------------
/cordova_app/res/screen/webos/screen-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/webos/screen-64.png
--------------------------------------------------------------------------------
/cordova_app/res/screen/windows-phone/screen-portrait.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/windows-phone/screen-portrait.jpg
--------------------------------------------------------------------------------
/cordova_app/www/cordova_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/cordova_256.png
--------------------------------------------------------------------------------
/cordova_app/www/css/app.387bb61b.css:
--------------------------------------------------------------------------------
1 | img.logo[data-v-f50462c0]{display:inline-block;width:90px;padding:20px}img[data-v-4ca4d085]{width:50%;display:block;margin:auto}.container[data-v-3c312abe]{padding:0}#map[data-v-3c312abe]{height:calc(100vh - 50px);width:100%;z-index:1}.loading[data-v-3c312abe]{position:absolute;width:150px;height:150px;bottom:50vh;top:50vh;z-index:200;margin:auto;background-color:#fff;border-radius:5px;left:calc(50% - 50px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;padding:10px}
--------------------------------------------------------------------------------
/cordova_app/www/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/favicon.ico
--------------------------------------------------------------------------------
/cordova_app/www/fonts/MaterialIcons-Regular.0509ab09.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.0509ab09.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/MaterialIcons-Regular.29b882f0.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.29b882f0.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/MaterialIcons-Regular.96c47680.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.96c47680.eot
--------------------------------------------------------------------------------
/cordova_app/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Black.313a6563.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Black.313a6563.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Black.59eb3601.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Black.59eb3601.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-BlackItalic.cc2fadc3.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BlackItalic.cc2fadc3.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-BlackItalic.f75569f8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BlackItalic.f75569f8.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Bold.50d75e48.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Bold.50d75e48.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Bold.b52fac2b.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Bold.b52fac2b.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-BoldItalic.4fe0f73c.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BoldItalic.4fe0f73c.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-BoldItalic.94008e69.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BoldItalic.94008e69.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Light.c73eb1ce.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Light.c73eb1ce.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Light.d26871e8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Light.d26871e8.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-LightItalic.13efe6cb.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-LightItalic.13efe6cb.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-LightItalic.e8eaae90.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-LightItalic.e8eaae90.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Medium.1d659482.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Medium.1d659482.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Medium.90d16760.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Medium.90d16760.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-MediumItalic.83e114c3.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-MediumItalic.83e114c3.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Regular.35b07eb2.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Regular.35b07eb2.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Regular.73f0a88b.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Regular.73f0a88b.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-RegularItalic.4357beb8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-RegularItalic.4357beb8.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-RegularItalic.f5902d5e.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-RegularItalic.f5902d5e.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Thin.ad538a69.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Thin.ad538a69.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-Thin.d3b47375.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Thin.d3b47375.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2
--------------------------------------------------------------------------------
/cordova_app/www/fonts/Roboto-ThinItalic.8a96edbb.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-ThinItalic.8a96edbb.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/materialdesignicons-webfont.443b30cd.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.443b30cd.eot
--------------------------------------------------------------------------------
/cordova_app/www/fonts/materialdesignicons-webfont.53dc8616.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.53dc8616.ttf
--------------------------------------------------------------------------------
/cordova_app/www/fonts/materialdesignicons-webfont.b60a2303.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.b60a2303.woff
--------------------------------------------------------------------------------
/cordova_app/www/fonts/materialdesignicons-webfont.d89054b1.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.d89054b1.woff2
--------------------------------------------------------------------------------
/cordova_app/www/index.html:
--------------------------------------------------------------------------------
1 | vuejs-cordova-sample
--------------------------------------------------------------------------------
/cordova_app/www/vuejs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/vuejs.png
--------------------------------------------------------------------------------
/public/cordova_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/cordova_256.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | vuejs-cordova-sample
9 |
10 |
11 |
12 |
13 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/public/vuejs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/vuejs.png
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/src/assets/logo.png
--------------------------------------------------------------------------------
/src/components/Drawer.vue:
--------------------------------------------------------------------------------
1 |
2 |