mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-22 00:32:55 +08:00
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cordova-android into CordovaWebView
This commit is contained in:
commit
9dfa503bad
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ example
|
||||
./test
|
||||
tmp
|
||||
*.tmp
|
||||
test/libs/*.jar
|
||||
|
19
bin/BOOM
19
bin/BOOM
@ -1,4 +1,21 @@
|
||||
#! /bin/sh
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
./bin/create
|
||||
cd ./example && ./cordova/debug && ./cordova/log
|
||||
|
18
bin/bench
18
bin/bench
@ -1,4 +1,22 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
#
|
||||
# Creates an app in `./bench` that posts results to http://cordova-bench.heroku.com with current cordova/Android sha.
|
||||
#
|
||||
|
16
bin/create
16
bin/create
@ -1,4 +1,20 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
# create a cordova/android project
|
||||
#
|
||||
|
@ -1,3 +1,22 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
/*
|
||||
* create a cordova/android project
|
||||
*
|
||||
|
@ -1,4 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
<project name="cordova" default="create" basedir="../">
|
||||
|
||||
<property name="project.path" value="${basedir}/example"/>
|
||||
|
@ -1,4 +1,21 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
# create a cordova/android project
|
||||
#
|
||||
|
@ -1,4 +1,22 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
|
||||
. ./.cordova/config
|
||||
|
||||
|
@ -1,4 +1,23 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
#Available Android Virtual Devices:
|
||||
# Name: default
|
||||
|
@ -1,3 +1,21 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
|
||||
adb logcat
|
||||
|
@ -1,3 +1,22 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
package __ID__;
|
||||
|
||||
import android.app.Activity;
|
||||
|
@ -1,4 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
|
||||
package="__PACKAGE__" android:versionName="1.1" android:versionCode="5">
|
||||
<supports-screens
|
||||
|
18
bin/test
18
bin/test
@ -1,4 +1,22 @@
|
||||
#! /bin/sh
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
#
|
||||
#
|
||||
set -e
|
||||
|
||||
VERSION=$(cat ./VERSION)
|
||||
|
@ -1,3 +1,22 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
package org.apache.cordova;
|
||||
|
||||
import org.apache.cordova.api.Plugin;
|
||||
|
@ -1,4 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
|
||||
package="org.apache.cordova.test" android:versionName="1.1" android:versionCode="5">
|
||||
<supports-screens
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<head>
|
||||
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<head>
|
||||
|
23
test/assets/www/cordova.js
vendored
23
test/assets/www/cordova.js
vendored
@ -1,2 +1,21 @@
|
||||
document.write('<script type="text/javascript" charset="utf-8" src="../cordova-1.6.0.js"></script>');
|
||||
document.write('<script type="text/javascript" charset="utf-8" src="cordova-1.6.0.js"></script>');
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
document.write('<script type="text/javascript" charset="utf-8" src="../cordova-1.7.0.js"></script>');
|
||||
document.write('<script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>');
|
||||
|
@ -1 +1,19 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
This is an error page.
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=320; user-scalable=no" />
|
||||
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=320; user-scalable=no" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,22 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
var deviceInfo = function() {
|
||||
document.getElementById("platform").innerHTML = device.platform;
|
||||
document.getElementById("version").innerHTML = device.version;
|
||||
|
@ -1,3 +1,22 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
body {
|
||||
background:#222 none repeat scroll 0 0;
|
||||
color:#666;
|
||||
|
@ -1,4 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=320; user-scalable=no" />
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,3 +1,21 @@
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one$
|
||||
or more contributor license agreements. See the NOTICE file$
|
||||
distributed with this work for additional information$
|
||||
regarding copyright ownership. The ASF licenses this file$
|
||||
to you under the Apache License, Version 2.0 (the$
|
||||
"License"); you may not use this file except in compliance$
|
||||
with the License. You may obtain a copy of the License at$
|
||||
$
|
||||
http://www.apache.org/licenses/LICENSE-2.0$
|
||||
$
|
||||
Unless required by applicable law or agreed to in writing,$
|
||||
software distributed under the License is distributed on an$
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY$
|
||||
KIND, either express or implied. See the License for the$
|
||||
specific language governing permissions and limitations$
|
||||
under the License.$
|
||||
-->
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -1,4 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<project name="tests" default="help">
|
||||
|
||||
<!-- The local.properties file is created and updated by the 'android' tool.
|
||||
|
@ -1,4 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
|
@ -1,4 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<cordova>
|
||||
<access origin="http://127.0.0.1*"/>
|
||||
<log level="DEBUG"/>
|
||||
|
Loading…
Reference in New Issue
Block a user