From 4dc32e194b04480cca5fa118a6fe346e54ff23fa Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Wed, 3 Sep 2014 15:23:41 -0700 Subject: [PATCH 1/9] CB-7460: Fixing bug with KitKat where the background colour would override the CSS colours on the application --- framework/src/org/apache/cordova/CordovaActivity.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java index 190309ec..bf1fd6a4 100755 --- a/framework/src/org/apache/cordova/CordovaActivity.java +++ b/framework/src/org/apache/cordova/CordovaActivity.java @@ -248,10 +248,8 @@ public class CordovaActivity extends Activity implements CordovaInterface { root.addView((View) appView); setContentView(root); - // TODO: Setting this on the appView causes it to show when . int backgroundColor = preferences.getInteger("BackgroundColor", Color.BLACK); root.setBackgroundColor(backgroundColor); - appView.setBackgroundColor(backgroundColor); } /** From 81cc3c260f6df93eefcfba99e19e9ac984478bde Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Thu, 4 Sep 2014 10:32:29 -0700 Subject: [PATCH 2/9] CB-7463: Adding licences. I don't know what the gradle syntax is for comments, that still needs to be done. --- .../cordova/test/SabotagedActivity.java | 19 +++++++++++++++++++ .../test/junit/IntentUriOverrideTest.java | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/test/src/org/apache/cordova/test/SabotagedActivity.java b/test/src/org/apache/cordova/test/SabotagedActivity.java index e1170ba3..7f3edc57 100644 --- a/test/src/org/apache/cordova/test/SabotagedActivity.java +++ b/test/src/org/apache/cordova/test/SabotagedActivity.java @@ -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.test; import java.io.IOException; diff --git a/test/src/org/apache/cordova/test/junit/IntentUriOverrideTest.java b/test/src/org/apache/cordova/test/junit/IntentUriOverrideTest.java index 381e0edd..559bcc78 100644 --- a/test/src/org/apache/cordova/test/junit/IntentUriOverrideTest.java +++ b/test/src/org/apache/cordova/test/junit/IntentUriOverrideTest.java @@ -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.test.junit; import org.apache.cordova.CordovaWebView; From 8354651059af864d92e7be63fa334a71ee9fc402 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Thu, 4 Sep 2014 10:49:43 -0700 Subject: [PATCH 3/9] CB-7463: Looked at the Apache BigTop git, gradle uses C-style comments --- framework/build.gradle | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/framework/build.gradle b/framework/build.gradle index 82c1ac29..47341b34 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -1,3 +1,24 @@ +/* + 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. +*/ + + + buildscript { repositories { mavenCentral() From 8237c41143abf594ff0bcc717a7847a7aa38654c Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Wed, 10 Sep 2014 10:14:38 -0400 Subject: [PATCH 4/9] CB-7511 Auto-detect Android SDK when Android Studio is installed --- bin/lib/check_reqs.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js index 40f3ade3..d2b3dcf5 100644 --- a/bin/lib/check_reqs.js +++ b/bin/lib/check_reqs.js @@ -141,6 +141,20 @@ module.exports.check_android = function() { var androidCmdPath = forgivingWhichSync('android'); var adbInPath = !!forgivingWhichSync('adb'); var hasAndroidHome = !!process.env['ANDROID_HOME'] && fs.existsSync(process.env['ANDROID_HOME']); + function maybeSetAndroidHome(value) { + if (fs.existsSync(value)) { + hasAndroidHome = true; + process.env['ANDROID_HOME'] = value; + } + } + if (!hasAndroidHome && !androidCmdPath) { + if (isWindows) { + maybeSetAndroidHome(path.join(process.env['LOCALAPPDATA'], 'Android', 'android-studio', 'sdk')); + maybeSetAndroidHome(path.join(process.env['ProgramFiles'], 'Android', 'android-studio', 'sdk')); + } else if (process.platform == 'darwin') { + maybeSetAndroidHome('/Applications/Android Studio.app/sdk'); + } + } if (hasAndroidHome && !androidCmdPath) { process.env['PATH'] += path.delimiter + path.join(process.env['ANDROID_HOME'], 'tools'); } @@ -171,7 +185,8 @@ module.exports.check_android_target = function(valid_target) { .then(function(output) { if (!output.match(valid_target)) { throw new Error('Please install Android target "' + valid_target + '".\n' + - 'Hint: Run "android" from your command-line to open the SDK manager.'); + output + '\n\n' + + 'Hint: Install it using the SDK manager by running: ' + forgivingWhichSync('android')); } }); }; From 7ee8117186f71b6f83f6b701c17e6daefe95752c Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Wed, 10 Sep 2014 10:54:21 -0400 Subject: [PATCH 5/9] CB-7463: Adding licence to project template gradle file --- bin/templates/project/build.gradle | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle index 9d1d45ae..f56784e7 100644 --- a/bin/templates/project/build.gradle +++ b/bin/templates/project/build.gradle @@ -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. +*/ + import java.util.regex.Pattern apply plugin: 'android' From c8bbdb23defb4a2fc1227b7f624934df29695937 Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Wed, 10 Sep 2014 10:57:43 -0400 Subject: [PATCH 6/9] CB-7512: Determine SDK and build tools version dynamcally at build time --- bin/templates/project/build.gradle | 6 +- bin/templates/project/cordova.gradle | 147 +++++++++++++++++++++++++++ framework/build.gradle | 4 +- 3 files changed, 153 insertions(+), 4 deletions(-) create mode 100644 bin/templates/project/cordova.gradle diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle index f56784e7..e3468d85 100644 --- a/bin/templates/project/build.gradle +++ b/bin/templates/project/build.gradle @@ -19,6 +19,8 @@ import java.util.regex.Pattern +ext.cordova = {} +apply from: 'cordova.gradle', to: ext.cordova apply plugin: 'android' buildscript { @@ -57,8 +59,8 @@ android { versionCode Integer.parseInt("" + getVersionCodeFromManifest() + "0") } - compileSdkVersion 19 - buildToolsVersion "19.0.0" + compileSdkVersion cordova.cordovaSdkVersion + buildToolsVersion cordova.cordovaBuildToolsVersion if (multiarch || System.env.BUILD_MULTIPLE_APKS) { productFlavors { diff --git a/bin/templates/project/cordova.gradle b/bin/templates/project/cordova.gradle new file mode 100644 index 00000000..40529d3f --- /dev/null +++ b/bin/templates/project/cordova.gradle @@ -0,0 +1,147 @@ +/* + 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. +*/ + +int[] getAvailableSdks() { + def availableSdks = new ByteArrayOutputStream() + exec { + commandLine 'android', 'list', 'target', '--compact' + standardOutput = availableSdks + } + availableSdks + .toString() + .tokenize('\n') + .findAll { it ==~ /android-(\d+).*/ } + .collect { (it =~ /android-(\d+).*/)[0][1].toInteger() } + .sort( { a, b -> b <=> a } ) +} + +int highestSdkAvailable(int minSdkVersion) { + def availableSdks + try { + availableSdks = getAvailableSdks() + } catch (e) { + println "An exception occurred while trying to find the Android SDK." + throw e + } + if (availableSdks.length > 0) { + def highestSdk = availableSdks[0] + if (highestSdk < minSdkVersion) { + throw new RuntimeException( + "No usable Android SDK found. Highest installed version is " + + highestSdk + "; minimum version required is " + minSdkVersion + ".") + } + highestSdk + } else { + throw new RuntimeException( + "No installed SDKs found. Please install the Android SDK version " + + minSdkVersion + " or higher.") + } +} + +String[] getAvailableBuildTools() { + def buildToolsDir = new File(getAndroidSdkDir(), "build-tools") + buildToolsDir.list() + .findAll { it ==~ /[0-9.]+/ } + .sort { a, b -> compareVersions(b, a) } +} + +String latestBuildToolsAvailable(String minBuildToolsVersion) { + def availableBuildToolsVersions + try { + availableBuildToolsVersions = getAvailableBuildTools() + } catch (e) { + println "An exception occurred while trying to find the Android build tools." + throw e + } + if (availableBuildToolsVersions.length > 0) { + def highestBuildToolsVersion = availableBuildToolsVersions[0] + if (compareVersions(highestBuildToolsVersion, minBuildToolsVersion) < 0) { + throw new RuntimeException( + "No usable Android build tools found. Highest installed version is " + + highestBuildToolsVersion + "; minimum version required is " + + minBuildToolsVersion + ".") + } + highestBuildToolsVersion + } else { + throw new RuntimeException( + "No installed build tools found. Please install the Android build tools version " + + minBuildToolsVersion + " or higher.") + } +} + +// Return the first non-zero result of subtracting version list elements +// pairwise. If they are all identical, return the difference in length of +// the two lists. +int compareVersionList(Collection aParts, Collection bParts) { + def pairs = ([aParts, bParts]).transpose() + pairs.findResult(aParts.size()-bParts.size()) {it[0] - it[1] != 0 ? it[0] - it[1] : null} +} + +// Compare two version strings, such as "19.0.0" and "18.1.1.0". If all matched +// elements are identical, the longer version is the largest by this method. +// Examples: +// "19.0.0" > "19" +// "19.0.1" > "19.0.0" +// "19.1.0" > "19.0.1" +// "19" > "18.999.999" +int compareVersions(String a, String b) { + def aParts = a.tokenize('.').collect {it.toInteger()} + def bParts = b.tokenize('.').collect {it.toInteger()} + compareVersionList(aParts, bParts) +} + +String getAndroidSdkDir() { + def rootDir = project.rootDir + def localProperties = new File(rootDir, 'local.properties') + def androidSdkDir = "" + if (localProperties.exists()) { + Properties properties = new Properties() + localProperties.withInputStream { instr -> + properties.load(instr) + } + def sdkDirProp = properties.getProperty('sdk.dir') + if (sdkDirProp != null) { + androidSdkDir = sdkDirProp + } else { + sdkDirProp = properties.getProperty('android.dir') + if (sdkDirProp != null) { + androidSdkDir = (new File(rootDir, sdkDirProp)).getAbsolutePath() + } else { + throw new RuntimeException( + "No sdk.dir property defined in local.properties file.") + } + } + } else { + String envVar = System.getenv("ANDROID_HOME") + if (envVar != null) { + androidSdkDir = envVar + } else { + String property = System.getProperty("android.home") + if (property != null) { + androidSdkDir = property + } + } + } + println androidSdkDir + androidSdkDir +} + +cordovaSdkVersion = highestSdkAvailable(19) +cordovaBuildToolsVersion = latestBuildToolsAvailable("19.0.0") + diff --git a/framework/build.gradle b/framework/build.gradle index 47341b34..59e1ae75 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -32,8 +32,8 @@ buildscript { apply plugin: 'android-library' android { - compileSdkVersion 19 - buildToolsVersion "19.0.0" + compileSdkVersion cordova.cordovaSdkVersion + buildToolsVersion cordova.cordovaBuildToolsVersion compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 From 0e78dc35d8aaec855aca9228bf5dca1b0795cac6 Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Wed, 10 Sep 2014 11:39:29 -0400 Subject: [PATCH 7/9] CB-7512: Read android target from project.properties if possible --- bin/templates/project/cordova.gradle | 42 ++++++---------------------- 1 file changed, 9 insertions(+), 33 deletions(-) diff --git a/bin/templates/project/cordova.gradle b/bin/templates/project/cordova.gradle index 40529d3f..f552a470 100644 --- a/bin/templates/project/cordova.gradle +++ b/bin/templates/project/cordova.gradle @@ -17,40 +17,16 @@ under the License. */ -int[] getAvailableSdks() { - def availableSdks = new ByteArrayOutputStream() - exec { - commandLine 'android', 'list', 'target', '--compact' - standardOutput = availableSdks - } - availableSdks - .toString() - .tokenize('\n') - .findAll { it ==~ /android-(\d+).*/ } - .collect { (it =~ /android-(\d+).*/)[0][1].toInteger() } - .sort( { a, b -> b <=> a } ) -} +import java.util.regex.Pattern -int highestSdkAvailable(int minSdkVersion) { - def availableSdks - try { - availableSdks = getAvailableSdks() - } catch (e) { - println "An exception occurred while trying to find the Android SDK." - throw e - } - if (availableSdks.length > 0) { - def highestSdk = availableSdks[0] - if (highestSdk < minSdkVersion) { - throw new RuntimeException( - "No usable Android SDK found. Highest installed version is " + - highestSdk + "; minimum version required is " + minSdkVersion + ".") - } - highestSdk +String getProjectTarget(String defaultTarget) { + def manifestFile = file("project.properties") + def pattern = Pattern.compile("target\\s*=\\s*(.*)") + def matcher = pattern.matcher(manifestFile.getText()) + if (matcher.find()) { + matcher.group(1) } else { - throw new RuntimeException( - "No installed SDKs found. Please install the Android SDK version " + - minSdkVersion + " or higher.") + defaultTarget } } @@ -142,6 +118,6 @@ String getAndroidSdkDir() { androidSdkDir } -cordovaSdkVersion = highestSdkAvailable(19) +cordovaSdkVersion = getProjectTarget("android-19") cordovaBuildToolsVersion = latestBuildToolsAvailable("19.0.0") From 3b99760a4250bfd8b357584d2657f6b25a1ce152 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Wed, 10 Sep 2014 12:42:37 -0400 Subject: [PATCH 8/9] CB-7330 Don't run check_reqs for bin/create. The create / update script doesn't require any dependencies, so we shouldn't fail without them. --- bin/lib/create.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bin/lib/create.js b/bin/lib/create.js index c4c6f1b8..0b79533d 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -226,10 +226,6 @@ exports.createProject = function(project_path, package_name, project_name, proje return validatePackageName(package_name) .then(function() { validateProjectName(project_name); - }) - // Check that requirements are met and proper targets are installed - .then(function() { - return check_reqs.run(); }).then(function() { // Log the given values for the project console.log('Creating Cordova project for the Android platform:'); @@ -305,8 +301,7 @@ function extractProjectNameFromManifest(projectPath) { // Returns a promise. exports.updateProject = function(projectPath, shared) { var newVersion = fs.readFileSync(path.join(ROOT, 'VERSION'), 'utf-8').trim(); - // Check that requirements are met and proper targets are installed - return check_reqs.run() + return Q() .then(function() { var projectName = extractProjectNameFromManifest(projectPath); var target_api = check_reqs.get_target(); From bf13fd48ceb23a671a03ddfe4400003b70b72a9d Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Wed, 10 Sep 2014 12:43:40 -0400 Subject: [PATCH 9/9] Use add --compact flag in check_reqs when listing targets. No functional change. --- bin/lib/check_reqs.js | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js index d2b3dcf5..00137ff0 100644 --- a/bin/lib/check_reqs.js +++ b/bin/lib/check_reqs.js @@ -48,20 +48,21 @@ function tryCommand(cmd, errMsg) { // Get valid target from framework/project.properties module.exports.get_target = function() { - if(fs.existsSync(path.join(ROOT, 'framework', 'project.properties'))) { - var target = shelljs.grep(/target=android-[\d+]/, path.join(ROOT, 'framework', 'project.properties')); - return target.split('=')[1].replace('\n', '').replace('\r', '').replace(' ', ''); - } else if (fs.existsSync(path.join(ROOT, 'project.properties'))) { - // if no target found, we're probably in a project and project.properties is in ROOT. - // this is called on the project itself, and can support Google APIs AND Vanilla Android - var target = shelljs.grep(/target=android-[\d+]/, path.join(ROOT, 'project.properties')) || - shelljs.grep(/target=Google Inc.:Google APIs:[\d+]/, path.join(ROOT, 'project.properties')); - if(target == "" || !target) { - // Try Google Glass APIs - target = shelljs.grep(/target=Google Inc.:Glass Development Kit Preview:[\d+]/, path.join(ROOT, 'project.properties')); + function extractFromFile(filePath) { + var target = shelljs.grep(/\btarget=/, filePath); + if (!target) { + throw new Error('Could not find android target within: ' + filePath); } - return target.split('=')[1].replace('\n', '').replace('\r', ''); + return target.split('=')[1].trim(); } + if (fs.existsSync(path.join(ROOT, 'framework', 'project.properties'))) { + return extractFromFile(path.join(ROOT, 'framework', 'project.properties')); + } + if (fs.existsSync(path.join(ROOT, 'project.properties'))) { + // if no target found, we're probably in a project and project.properties is in ROOT. + return extractFromFile(path.join(ROOT, 'project.properties')); + } + throw new Error('Could not find android target. File missing: ' + path.join(ROOT, 'project.properties')); } // Returns a promise. Called only by build and clean commands. @@ -180,13 +181,17 @@ module.exports.check_android = function() { }; module.exports.check_android_target = function(valid_target) { + // valid_target can look like: + // android-19 + // android-L + // Google Inc.:Google APIs:20 + // Google Inc.:Glass Development Kit Preview:20 var msg = 'Failed to run "android". Make sure you have the latest Android SDK installed, and that the "android" command (inside the tools/ folder) is added to your PATH.'; - return tryCommand('android list targets', msg) + return tryCommand('android list targets --compact', msg) .then(function(output) { - if (!output.match(valid_target)) { - throw new Error('Please install Android target "' + valid_target + '".\n' + - output + '\n\n' + - 'Hint: Install it using the SDK manager by running: ' + forgivingWhichSync('android')); + if (output.split('\n').indexOf(valid_target) == -1) { + throw new Error('Please install Android target: "' + valid_target + '".\n' + + 'Hint: Open the SDK manager by running: ' + forgivingWhichSync('android')); } }); };