forked from github/cordova-android
Tagging to 1.9.0
This commit is contained in:
parent
ae7a550a09
commit
2a8b9ab75e
@ -23,7 +23,7 @@
|
|||||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
||||||
<title>PhoneGap</title>
|
<title>PhoneGap</title>
|
||||||
<link rel="stylesheet" href="master.css" type="text/css" media="screen" title="no title">
|
<link rel="stylesheet" href="master.css" type="text/css" media="screen" title="no title">
|
||||||
<script type="text/javascript" charset="utf-8" src="cordova-1.9.0rc1.js"></script>
|
<script type="text/javascript" charset="utf-8" src="cordova-1.9.0.js"></script>
|
||||||
<script type="text/javascript" charset="utf-8" src="main.js"></script>
|
<script type="text/javascript" charset="utf-8" src="main.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// commit 25033fceac7c800623f1f16881b784d19eba69cc
|
// commit 5647225e12e18e15aefc33b151430d9a3804d9ea
|
||||||
|
|
||||||
// File generated at :: Thu Jun 21 2012 10:45:32 GMT-0700 (PDT)
|
// File generated at :: Fri Jun 29 2012 12:32:24 GMT-0400 (EDT)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Licensed to the Apache Software Foundation (ASF) under one
|
Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title></title>
|
<title></title>
|
||||||
<script src="cordova-1.9.0rc1.js"></script>
|
<script src="cordova-1.9.0.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
@ -625,6 +625,7 @@ public class CordovaWebView extends WebView {
|
|||||||
String value = xml.getAttributeValue(null, "value");
|
String value = xml.getAttributeValue(null, "value");
|
||||||
|
|
||||||
LOG.i("CordovaLog", "Found preference for %s=%s", name, value);
|
LOG.i("CordovaLog", "Found preference for %s=%s", name, value);
|
||||||
|
Log.d("CordovaLog", "Found preference for " + name + "=" + value);
|
||||||
|
|
||||||
// Save preferences in Intent
|
// Save preferences in Intent
|
||||||
this.cordova.getActivity().getIntent().putExtra(name, value);
|
this.cordova.getActivity().getIntent().putExtra(name, value);
|
||||||
@ -640,7 +641,7 @@ public class CordovaWebView extends WebView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Init preferences
|
// Init preferences
|
||||||
if ("true".equals(this.getProperty("useBrowserHistory", "true"))) {
|
if ("true".equals(this.getProperty("useBrowserHistory", "false"))) {
|
||||||
this.useBrowserHistory = true;
|
this.useBrowserHistory = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -38,7 +38,7 @@ import android.telephony.TelephonyManager;
|
|||||||
public class Device extends Plugin {
|
public class Device extends Plugin {
|
||||||
public static final String TAG = "Device";
|
public static final String TAG = "Device";
|
||||||
|
|
||||||
public static String cordovaVersion = "1.9.0rc1"; // Cordova version
|
public static String cordovaVersion = "1.9.0"; // Cordova version
|
||||||
public static String platform = "Android"; // Device OS
|
public static String platform = "Android"; // Device OS
|
||||||
public static String uuid; // Device UUID
|
public static String uuid; // Device UUID
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user