Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AC9E617D76 for ; Thu, 3 Mar 2016 06:36:23 +0000 (UTC) Received: (qmail 87160 invoked by uid 500); 3 Mar 2016 06:36:18 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 87136 invoked by uid 500); 3 Mar 2016 06:36:18 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 87026 invoked by uid 99); 3 Mar 2016 06:36:18 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Mar 2016 06:36:18 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 3DEA62C1F68 for ; Thu, 3 Mar 2016 06:36:18 +0000 (UTC) Date: Thu, 3 Mar 2016 06:36:18 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-10673) overlapped target-dir from two different plugins causes a failure. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-10673?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15177335#comment-15177335 ] ASF GitHub Bot commented on CB-10673: ------------------------------------- GitHub user bso-intel opened a pull request: https://github.com/apache/cordova-lib/pull/404 CB-10673 added --force-copying-src option This option is need to rescue some Cordova users who has trouble installing two conflicting plugins that use the same source-file target. You can merge this pull request into a Git repository by running: $ git pull https://github.com/bso-intel/cordova-lib CB-10673 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/cordova-lib/pull/404.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #404 ---- commit 3d8281865ffa2d0c54e7c0886e3c926df515e923 Author: Byoungro So Date: 2016-03-02T07:23:19Z CB-10673 added --force-copying-src option ---- > overlapped target-dir from two different plugins causes a failure. > -------------------------------------------------------------------------------- > > Key: CB-10673 > URL: https://issues.apache.org/jira/browse/CB-10673 > Project: Apache Cordova > Issue Type: Bug > Components: Android, iOS, Windows > Reporter: Byoungro So > Assignee: Byoungro So > Labels: pendingPR, triaged > > Cordova-android forces the target-dir of the tag to be unique for no reason. > However, this causes an issue. > It is always possible that two different plugins could have overlapped target-dir path. > It is impossible for a plugin to know that the target-dir is overlapped with other plugins's target dir. > So, we should relax this requirement. > For example, cordova-sqlite-storage has the following in its plugin.xml. > {code} > > {code} > com.intel.security has the following in its plugin.xml. > {code} > > {code} > When adding two plugins, cordova-android throws an exception. > {code} > [t6.0.1] cordova plugin add cordova-sqlite-storage@0.7.14 > Fetching plugin "cordova-sqlite-storage@0.7.14" via npm > Installing "cordova-sqlite-storage" for android > Installing "cordova-sqlite-storage" for ios > [t6.0.1] cordova plugin add https://github.com/01org/AppSecurityApi.git#v1.4.1 > Fetching plugin "https://github.com/01org/AppSecurityApi.git" via git clone > Repository "https://github.com/01org/AppSecurityApi.git" checked out to git ref "v1.4.1". > Installing "com.intel.security" for android > Failed to install 'com.intel.security':CordovaError: Uh oh! > "/Users/bso/cordova/test/t6.0.1/platforms/android/libs/armeabi" already exists! > at copyNewFile (/Users/bso/cordova/test/t6.0.1/platforms/android/cordova/lib/pluginHandlers.js:212:15) > at handlers.source-file.install (/Users/bso/cordova/test/t6.0.1/platforms/android/cordova/lib/pluginHandlers.js:34:13) > at Object.ActionStack.process (/Users/bso/cordova/test/t6.0.1/platforms/android/cordova/node_modules/cordova-common/src/ActionStack.js:56:25) > at Api.addPlugin (/Users/bso/cordova/test/t6.0.1/platforms/android/cordova/Api.js:205:20) > at handleInstall (/Users/bso/cordova/bso-cordova-lib/cordova-lib/src/plugman/install.js:598:6) > at /Users/bso/cordova/bso-cordova-lib/cordova-lib/src/plugman/install.js:396:28 > at _fulfilled (/Users/bso/cordova/bso-cordova-lib/cordova-lib/node_modules/q/q.js:787:54) > at self.promiseDispatch.done (/Users/bso/cordova/bso-cordova-lib/cordova-lib/node_modules/q/q.js:816:30) > at Promise.promise.promiseDispatch (/Users/bso/cordova/bso-cordova-lib/cordova-lib/node_modules/q/q.js:749:13) > at /Users/bso/cordova/bso-cordova-lib/cordova-lib/node_modules/q/q.js:509:49 > Error: Uh oh! > "/Users/bso/cordova/test/t6.0.1/platforms/android/libs/armeabi" already exists! > {code} > I figured the same issue is present in cordova-ios and cordova-windows, too. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org