[jira] [Commented] (CB-9132) Bad copy using tag.

2016-01-19 Thread Michael Romanovsky (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-9132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15107292#comment-15107292
 ] 

Michael Romanovsky commented on CB-9132:


Ok. Part of the problem was that the new method requires a new copy of any 
library in a specific Android directory in the project file, instead of linking 
to a common library directory. I guess I will see if any of this has changed 
and open a more streamlined ticket if it hasn't. Thanks.

> Bad copy using  tag.
> ---
>
> Key: CB-9132
> URL: https://issues.apache.org/jira/browse/CB-9132
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.0.0
> Environment: Windows 7, git-scm.
>Reporter: Michael Romanovsky
>  Labels: triaged, wfc
>
> (I have been reading that Intel has a bug report ready, but I can't wait and 
> I don't know if they forgot about it or possibly died.)
> My plugin uses the Google downloader_library and play_licensing_library. The 
> project.properties file links to the downloader_library, which itself links 
> to the play_licensing library. So here's the deal -- Cordova 5 blew up my 
> plugin in some way: 
> https://github.com/agamemnus/cordova-plugin-xapkreader/issues/22
> The purported fix suggested by Intel was to use Gradle -- add a 
> build-extras.gradle file to one spot, and add two framework tags (for the two 
> libraries I am using) to plugin.xml:
>src="android-sdk/extras/google/play_apk_expansion/downloader_library" 
> custom="false"/>
>custom="false" />
> ... then in play_apk_expansion/downloader_library, I have a file like this:
> dependencies {
>  debugCompile project(path: '..:..:play_licensing:library',configuration: 
> "debug")
>  releaseCompile project(path: '..:..:play_licensing:library',configuration: 
> "release")
> }
> Okay, cool, but there are two problems, one of which is DEFINITELY a Cordova 
> bug:
> 1) Using custom="false" gives me lots of problems. I get errors that say that 
> the project isn't a gradle library and none of the linking works. How do I 
> fix this? I don't want to use custom="true".
> 2) Using custom="true" doesn't give me those problems, but the files are 
> incorrectly copied to my /platforms/android directory.
> They are copied to:
> /platforms/android/com.flyingsoftgames.xapkreader/free-downloader_library
> /platforms/android/com.flyingsoftgames.xapkreader/free-library
> There seem to be two bugs here:
> A) Only the last directory is added. ("downloader_library" and "library").
> B) The last part of my PROJECTNAME is prefixed. This is NON-IDEAL (to put it 
> lightly) for a plugin!!! (my project name has spaces, so the code decided to 
> use the last word following a space... otherwise it uses the whole project 
> name).
> Finally, I'm unable to do relative pathing. I had to do this in 
> build-extras.gradle:
> ':com.flyingsoftgames.xapkreader:play_licensing:library'
> ...instead of this:
> '..:..:play_licensing:library'



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-9132) Bad copy using tag.

2016-01-19 Thread Michael Romanovsky (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-9132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15107284#comment-15107284
 ] 

Michael Romanovsky commented on CB-9132:


@Nikhil Khandelwal: is there a way to use a common library directory in Cordova 
now, or...? Plz comment on that!

> Bad copy using  tag.
> ---
>
> Key: CB-9132
> URL: https://issues.apache.org/jira/browse/CB-9132
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.0.0
> Environment: Windows 7, git-scm.
>Reporter: Michael Romanovsky
>  Labels: triaged, wfc
>
> (I have been reading that Intel has a bug report ready, but I can't wait and 
> I don't know if they forgot about it or possibly died.)
> My plugin uses the Google downloader_library and play_licensing_library. The 
> project.properties file links to the downloader_library, which itself links 
> to the play_licensing library. So here's the deal -- Cordova 5 blew up my 
> plugin in some way: 
> https://github.com/agamemnus/cordova-plugin-xapkreader/issues/22
> The purported fix suggested by Intel was to use Gradle -- add a 
> build-extras.gradle file to one spot, and add two framework tags (for the two 
> libraries I am using) to plugin.xml:
>src="android-sdk/extras/google/play_apk_expansion/downloader_library" 
> custom="false"/>
>custom="false" />
> ... then in play_apk_expansion/downloader_library, I have a file like this:
> dependencies {
>  debugCompile project(path: '..:..:play_licensing:library',configuration: 
> "debug")
>  releaseCompile project(path: '..:..:play_licensing:library',configuration: 
> "release")
> }
> Okay, cool, but there are two problems, one of which is DEFINITELY a Cordova 
> bug:
> 1) Using custom="false" gives me lots of problems. I get errors that say that 
> the project isn't a gradle library and none of the linking works. How do I 
> fix this? I don't want to use custom="true".
> 2) Using custom="true" doesn't give me those problems, but the files are 
> incorrectly copied to my /platforms/android directory.
> They are copied to:
> /platforms/android/com.flyingsoftgames.xapkreader/free-downloader_library
> /platforms/android/com.flyingsoftgames.xapkreader/free-library
> There seem to be two bugs here:
> A) Only the last directory is added. ("downloader_library" and "library").
> B) The last part of my PROJECTNAME is prefixed. This is NON-IDEAL (to put it 
> lightly) for a plugin!!! (my project name has spaces, so the code decided to 
> use the last word following a space... otherwise it uses the whole project 
> name).
> Finally, I'm unable to do relative pathing. I had to do this in 
> build-extras.gradle:
> ':com.flyingsoftgames.xapkreader:play_licensing:library'
> ...instead of this:
> '..:..:play_licensing:library'



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-9132) Bad copy using tag.

2016-01-19 Thread Nikhil Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-9132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15107287#comment-15107287
 ] 

Nikhil Khandelwal commented on CB-9132:
---

I do not know the answer. This sounds like a great question for Stack overflow.

> Bad copy using  tag.
> ---
>
> Key: CB-9132
> URL: https://issues.apache.org/jira/browse/CB-9132
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.0.0
> Environment: Windows 7, git-scm.
>Reporter: Michael Romanovsky
>  Labels: triaged, wfc
>
> (I have been reading that Intel has a bug report ready, but I can't wait and 
> I don't know if they forgot about it or possibly died.)
> My plugin uses the Google downloader_library and play_licensing_library. The 
> project.properties file links to the downloader_library, which itself links 
> to the play_licensing library. So here's the deal -- Cordova 5 blew up my 
> plugin in some way: 
> https://github.com/agamemnus/cordova-plugin-xapkreader/issues/22
> The purported fix suggested by Intel was to use Gradle -- add a 
> build-extras.gradle file to one spot, and add two framework tags (for the two 
> libraries I am using) to plugin.xml:
>src="android-sdk/extras/google/play_apk_expansion/downloader_library" 
> custom="false"/>
>custom="false" />
> ... then in play_apk_expansion/downloader_library, I have a file like this:
> dependencies {
>  debugCompile project(path: '..:..:play_licensing:library',configuration: 
> "debug")
>  releaseCompile project(path: '..:..:play_licensing:library',configuration: 
> "release")
> }
> Okay, cool, but there are two problems, one of which is DEFINITELY a Cordova 
> bug:
> 1) Using custom="false" gives me lots of problems. I get errors that say that 
> the project isn't a gradle library and none of the linking works. How do I 
> fix this? I don't want to use custom="true".
> 2) Using custom="true" doesn't give me those problems, but the files are 
> incorrectly copied to my /platforms/android directory.
> They are copied to:
> /platforms/android/com.flyingsoftgames.xapkreader/free-downloader_library
> /platforms/android/com.flyingsoftgames.xapkreader/free-library
> There seem to be two bugs here:
> A) Only the last directory is added. ("downloader_library" and "library").
> B) The last part of my PROJECTNAME is prefixed. This is NON-IDEAL (to put it 
> lightly) for a plugin!!! (my project name has spaces, so the code decided to 
> use the last word following a space... otherwise it uses the whole project 
> name).
> Finally, I'm unable to do relative pathing. I had to do this in 
> build-extras.gradle:
> ':com.flyingsoftgames.xapkreader:play_licensing:library'
> ...instead of this:
> '..:..:play_licensing:library'



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-9132) Bad copy using tag.

2016-01-11 Thread Michael Romanovsky (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-9132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15092733#comment-15092733
 ] 

Michael Romanovsky commented on CB-9132:


Hi,

I have no more problems with the way it works right now (no errors, links up 
great!), but I still seemingly have no way to use a library from a common set 
in a common library directory (versus one copy for each OS build I have).

> Bad copy using  tag.
> ---
>
> Key: CB-9132
> URL: https://issues.apache.org/jira/browse/CB-9132
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.0.0
> Environment: Windows 7, git-scm.
>Reporter: Michael Romanovsky
>  Labels: triaged, wfc
>
> (I have been reading that Intel has a bug report ready, but I can't wait and 
> I don't know if they forgot about it or possibly died.)
> My plugin uses the Google downloader_library and play_licensing_library. The 
> project.properties file links to the downloader_library, which itself links 
> to the play_licensing library. So here's the deal -- Cordova 5 blew up my 
> plugin in some way: 
> https://github.com/agamemnus/cordova-plugin-xapkreader/issues/22
> The purported fix suggested by Intel was to use Gradle -- add a 
> build-extras.gradle file to one spot, and add two framework tags (for the two 
> libraries I am using) to plugin.xml:
>src="android-sdk/extras/google/play_apk_expansion/downloader_library" 
> custom="false"/>
>custom="false" />
> ... then in play_apk_expansion/downloader_library, I have a file like this:
> dependencies {
>  debugCompile project(path: '..:..:play_licensing:library',configuration: 
> "debug")
>  releaseCompile project(path: '..:..:play_licensing:library',configuration: 
> "release")
> }
> Okay, cool, but there are two problems, one of which is DEFINITELY a Cordova 
> bug:
> 1) Using custom="false" gives me lots of problems. I get errors that say that 
> the project isn't a gradle library and none of the linking works. How do I 
> fix this? I don't want to use custom="true".
> 2) Using custom="true" doesn't give me those problems, but the files are 
> incorrectly copied to my /platforms/android directory.
> They are copied to:
> /platforms/android/com.flyingsoftgames.xapkreader/free-downloader_library
> /platforms/android/com.flyingsoftgames.xapkreader/free-library
> There seem to be two bugs here:
> A) Only the last directory is added. ("downloader_library" and "library").
> B) The last part of my PROJECTNAME is prefixed. This is NON-IDEAL (to put it 
> lightly) for a plugin!!! (my project name has spaces, so the code decided to 
> use the last word following a space... otherwise it uses the whole project 
> name).
> Finally, I'm unable to do relative pathing. I had to do this in 
> build-extras.gradle:
> ':com.flyingsoftgames.xapkreader:play_licensing:library'
> ...instead of this:
> '..:..:play_licensing:library'



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-9132) Bad copy using tag.

2016-01-08 Thread Nikhil Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-9132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15090302#comment-15090302
 ] 

Nikhil Khandelwal commented on CB-9132:
---

Is this still an issue?

> Bad copy using  tag.
> ---
>
> Key: CB-9132
> URL: https://issues.apache.org/jira/browse/CB-9132
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.0.0
> Environment: Windows 7, git-scm.
>Reporter: Michael Romanovsky
>  Labels: triaged, wfc
>
> (I have been reading that Intel has a bug report ready, but I can't wait and 
> I don't know if they forgot about it or possibly died.)
> My plugin uses the Google downloader_library and play_licensing_library. The 
> project.properties file links to the downloader_library, which itself links 
> to the play_licensing library. So here's the deal -- Cordova 5 blew up my 
> plugin in some way: 
> https://github.com/agamemnus/cordova-plugin-xapkreader/issues/22
> The purported fix suggested by Intel was to use Gradle -- add a 
> build-extras.gradle file to one spot, and add two framework tags (for the two 
> libraries I am using) to plugin.xml:
>src="android-sdk/extras/google/play_apk_expansion/downloader_library" 
> custom="false"/>
>custom="false" />
> ... then in play_apk_expansion/downloader_library, I have a file like this:
> dependencies {
>  debugCompile project(path: '..:..:play_licensing:library',configuration: 
> "debug")
>  releaseCompile project(path: '..:..:play_licensing:library',configuration: 
> "release")
> }
> Okay, cool, but there are two problems, one of which is DEFINITELY a Cordova 
> bug:
> 1) Using custom="false" gives me lots of problems. I get errors that say that 
> the project isn't a gradle library and none of the linking works. How do I 
> fix this? I don't want to use custom="true".
> 2) Using custom="true" doesn't give me those problems, but the files are 
> incorrectly copied to my /platforms/android directory.
> They are copied to:
> /platforms/android/com.flyingsoftgames.xapkreader/free-downloader_library
> /platforms/android/com.flyingsoftgames.xapkreader/free-library
> There seem to be two bugs here:
> A) Only the last directory is added. ("downloader_library" and "library").
> B) The last part of my PROJECTNAME is prefixed. This is NON-IDEAL (to put it 
> lightly) for a plugin!!! (my project name has spaces, so the code decided to 
> use the last word following a space... otherwise it uses the whole project 
> name).
> Finally, I'm unable to do relative pathing. I had to do this in 
> build-extras.gradle:
> ':com.flyingsoftgames.xapkreader:play_licensing:library'
> ...instead of this:
> '..:..:play_licensing:library'



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org