'type': 'none',
'dependencies': [
'cordova/cordova.gyp:*',
- 'devicemotion/cordova_devicemotion.gyp:*',
'dialog/cordova_dialog.gyp:*',
'events/cordova_events.gyp:*',
'file/cordova_file.gyp:*',
+++ /dev/null
-{
- 'includes':[
- '/usr/include/webapi-plugins/src/common/common.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'tizen_cordova_devicemotion',
- 'type': 'loadable_module',
- 'sources': [
- 'cordova_devicemotion_api.js',
- 'cordova_devicemotion_extension.cc',
- 'cordova_devicemotion_extension.h',
- ],
- 'include_dirs': [
- '../',
- '<(SHARED_INTERMEDIATE_DIR)',
- ],
- 'variables': {
- 'packages': [
- 'webapi-plugins',
- ],
- },
- },
- ],
-}
+++ /dev/null
-/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-// TODO: remove when added to public cordova repository -> begin
-var plugin_name = 'cordova-plugin-device-motion.tizen.Accelerometer';
-
-cordova.define(plugin_name, function(require, exports, module) {
-// TODO: remove -> end
-
-var successCB = null;
-var count = 0;
-
-function listener(eventData) {
- var accel = {};
-
- accel.x = eventData.acceleration.x;
- accel.y = eventData.acceleration.y;
- accel.z = eventData.acceleration.z;
- accel.timestamp = new Date().getTime();
-
- if (accel.x === null || accel.y === null || accel.z === null) {
- // Ignore first event with nulls
- return;
- }
-
- if (count++ === 0) {
- return;
- }
-
- successCB && successCB(accel);
-}
-
-var Accelerometer = {
- start: function (success, error) {
- if (!successCB) {
- count = 0;
- successCB = success;
- window.addEventListener('devicemotion', listener, false);
- }
- }, stop: function () {
- window.removeEventListener('devicemotion', listener, false);
- successCB = null;
- }
-};
-
-module.exports = Accelerometer;
-require('cordova/exec/proxy').add('Accelerometer', Accelerometer);
-
-console.log('Loaded cordova.device-motion API');
-
-// TODO: remove when added to public cordova repository -> begin
-});
-
-exports = function(require) {
- require('cordova-tizen').addPlugin('cordova-plugin-device-motion.Accelerometer', plugin_name, 'runs');
-};
-// TODO: remove -> end
+++ /dev/null
-/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "devicemotion/cordova_devicemotion_extension.h"
-
-// This will be generated from cordova_devicemotion_api.js
-extern const char kSource_cordova_devicemotion_api[];
-
-common::Extension* CreateExtension() {
- return new extension::cordova::devicemotion::CordovaDevicemotionExtension();
-}
-
-namespace extension {
-namespace cordova {
-namespace devicemotion {
-
-CordovaDevicemotionExtension::CordovaDevicemotionExtension() {
- SetExtensionName("tizen.cordova.devicemotion");
- SetJavaScriptAPI(kSource_cordova_devicemotion_api);
-}
-
-CordovaDevicemotionExtension::~CordovaDevicemotionExtension() {}
-
-} // devicemotion
-} // cordova
-} // extension
+++ /dev/null
-/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef DEVICEMOTION_CORDOVA_DEVICEMOTION_EXTENSION_H_
-#define DEVICEMOTION_CORDOVA_DEVICEMOTION_EXTENSION_H_
-
-#include <common/extension.h>
-
-namespace extension {
-namespace cordova {
-namespace devicemotion {
-
-class CordovaDevicemotionExtension : public common::Extension {
- public:
- CordovaDevicemotionExtension();
- virtual ~CordovaDevicemotionExtension();
-};
-
-} // devicemotion
-} // cordova
-} // extension
-
-#endif // DEVICEMOTION_CORDOVA_DEVICEMOTION_EXTENSION_H_
"navigator.Acceleration"
]
},
+ {
+ "file": "plugins/cordova-plugin-device-motion/tizen/Accelerometer.js",
+ "id": "cordova-plugin-device-motion.tizen.Accelerometer",
+ "runs": true
+ },
{
"file": "plugins/cordova-plugin-dialogs/www/notification.js",
"id": "cordova-plugin-dialogs.notification",
--- /dev/null
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// TODO: remove when added to public cordova repository -> begin
+var plugin_name = 'cordova-plugin-device-motion.tizen.Accelerometer';
+
+cordova.define(plugin_name, function(require, exports, module) {
+// TODO: remove -> end
+
+var successCB = null;
+var count = 0;
+
+function listener(eventData) {
+ var accel = {};
+
+ accel.x = eventData.acceleration.x;
+ accel.y = eventData.acceleration.y;
+ accel.z = eventData.acceleration.z;
+ accel.timestamp = new Date().getTime();
+
+ if (accel.x === null || accel.y === null || accel.z === null) {
+ // Ignore first event with nulls
+ return;
+ }
+
+ if (count++ === 0) {
+ return;
+ }
+
+ successCB && successCB(accel);
+}
+
+var Accelerometer = {
+ start: function (success, error) {
+ if (!successCB) {
+ count = 0;
+ successCB = success;
+ window.addEventListener('devicemotion', listener, false);
+ }
+ }, stop: function () {
+ window.removeEventListener('devicemotion', listener, false);
+ successCB = null;
+ }
+};
+
+module.exports = Accelerometer;
+require('cordova/exec/proxy').add('Accelerometer', Accelerometer);
+
+console.log('Loaded cordova.device-motion API');
+
+// TODO: remove when added to public cordova repository -> begin
+});
+// TODO: remove -> end