Update cordova build

Signed-off-by: Chris Cromer <chris@cromer.cl>
This commit is contained in:
2019-03-09 14:12:15 -03:00
parent 27c42a55c8
commit a090519a7a
32 changed files with 1104 additions and 436 deletions

View File

@@ -24,10 +24,10 @@ ext {
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
jcenter()
}
dependencies {
@@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
group = 'org.apache.cordova'
version = '7.1.1'
version = '7.1.4'
android {
compileSdkVersion cdvCompileSdkVersion
@@ -129,9 +129,9 @@ bintray {
licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap']
version {
name = '7.1.1'
name = '7.1.4'
released = new Date()
vcsTag = '7.1.1'
vcsTag = '7.1.4'
}
}
}

View File

@@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
* are not expected to implement it.
*/
public interface CordovaWebView {
public static final String CORDOVA_VERSION = "7.1.1";
public static final String CORDOVA_VERSION = "7.1.4";
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);