Skip to content

Commit b223ef5

Browse files
Media Lab - UFGMedia Lab - UFG
authored andcommitted
Atualiza o readme com detalhes de instalação no iOS.
1 parent 3b921c2 commit b223ef5

File tree

5,760 files changed

+905789
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,760 files changed

+905789
-96
lines changed

.DS_Store

8 KB
Binary file not shown.

.vscode/plugins.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"plugins":["cordova-plugin-console","cordova-plugin-device","cordova-plugin-splashscreen","cordova-plugin-statusbar","cordova-plugin-whitelist","ionic-plugin-keyboard"]}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Type definitions for Cordova Keyboard plugin
2+
// Project: https://github.com/driftyco/ionic-plugins-keyboard
3+
// Definitions by: Hendrik Maus <https://github.com/hendrikmaus>
4+
// Definitions: https://github.com/borisyankov/DefinitelyTyped
5+
6+
declare module Ionic {
7+
interface Keyboard {
8+
9+
/**
10+
* Hide the keyboard accessory bar with the next, previous and done buttons.
11+
*
12+
* @param hide
13+
*/
14+
hideKeyboardAccessoryBar(hide:boolean): void;
15+
16+
/**
17+
* Close the keyboard if it is open.
18+
*/
19+
close(): void;
20+
21+
/**
22+
* Force keyboard to be shown on Android.
23+
* This typically helps if autofocus on a text element does not pop up the keyboard automatically
24+
*
25+
* Supported Platforms: Android, Blackberry 10
26+
*/
27+
show(): void;
28+
29+
/**
30+
* Disable native scrolling, useful if you are using JavaScript to scroll
31+
*
32+
* @param disbale
33+
*/
34+
disableScroll(disbale:boolean): void;
35+
36+
/**
37+
* Whether or not the keyboard is currently visible.
38+
*/
39+
isVisible: boolean;
40+
}
41+
}

.vscode/typings/cordova/cordova.d.ts

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
// Type definitions for Apache Cordova
2+
// Project: http://cordova.apache.org
3+
// Definitions by: Microsoft Open Technologies Inc. <http://msopentech.com>
4+
// Definitions: https://github.com/borisyankov/DefinitelyTyped
5+
//
6+
// Copyright (c) Microsoft Open Technologies, Inc.
7+
// Licensed under the MIT license.
8+
9+
interface Cordova {
10+
/** Invokes native functionality by specifying corresponding service name, action and optional parameters.
11+
* @param success A success callback function.
12+
* @param fail An error callback function.
13+
* @param service The service name to call on the native side (corresponds to a native class).
14+
* @param action The action name to call on the native side (generally corresponds to the native class method).
15+
* @param args An array of arguments to pass into the native environment.
16+
*/
17+
exec(success: () => any, fail: () => any, service: string, action: string, args?: string[]): void;
18+
/** Gets the operating system name. */
19+
platformId: string;
20+
/** Gets Cordova framework version */
21+
version: string;
22+
/** Defines custom logic as a Cordova module. Other modules can later access it using module name provided. */
23+
define(moduleName: string, factory: (require: any, exports: any, module: any) => any): void;
24+
/** Access a Cordova module by name. */
25+
require(moduleName: string): any;
26+
/** Namespace for Cordova plugin functionality */
27+
plugins:CordovaPlugins;
28+
}
29+
30+
interface CordovaPlugins {}
31+
32+
interface Document {
33+
addEventListener(type: "deviceready", listener: (ev: Event) => any, useCapture?: boolean): void;
34+
addEventListener(type: "pause", listener: (ev: Event) => any, useCapture?: boolean): void;
35+
addEventListener(type: "resume", listener: (ev: Event) => any, useCapture?: boolean): void;
36+
addEventListener(type: "backbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
37+
addEventListener(type: "menubutton", listener: (ev: Event) => any, useCapture?: boolean): void;
38+
addEventListener(type: "searchbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
39+
addEventListener(type: "startcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
40+
addEventListener(type: "endcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
41+
addEventListener(type: "volumedownbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
42+
addEventListener(type: "volumeupbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
43+
44+
removeEventListener(type: "deviceready", listener: (ev: Event) => any, useCapture?: boolean): void;
45+
removeEventListener(type: "pause", listener: (ev: Event) => any, useCapture?: boolean): void;
46+
removeEventListener(type: "resume", listener: (ev: Event) => any, useCapture?: boolean): void;
47+
removeEventListener(type: "backbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
48+
removeEventListener(type: "menubutton", listener: (ev: Event) => any, useCapture?: boolean): void;
49+
removeEventListener(type: "searchbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
50+
removeEventListener(type: "startcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
51+
removeEventListener(type: "endcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
52+
removeEventListener(type: "volumedownbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
53+
removeEventListener(type: "volumeupbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
54+
55+
addEventListener(type: string, listener: (ev: Event) => any, useCapture?: boolean): void;
56+
removeEventListener(type: string, listener: (ev: Event) => any, useCapture?: boolean): void;
57+
}
58+
59+
interface Window {
60+
cordova:Cordova;
61+
}
62+
63+
// cordova/argscheck module
64+
interface ArgsCheck {
65+
checkArgs(argsSpec: string, functionName: string, args: any[], callee?: any): void;
66+
getValue(value?: any, defaultValue?: any): any;
67+
enableChecks: boolean;
68+
}
69+
70+
// cordova/urlutil module
71+
interface UrlUtil {
72+
makeAbsolute(url: string): string
73+
}
74+
75+
/** Apache Cordova instance */
76+
declare var cordova: Cordova;
77+
78+
declare module 'cordova' {
79+
export = cordova;
80+
}

0 commit comments

Comments
 (0)