-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CLI can easily fail and blow project up on windows when you have multiple plugins. #369
Comments
From @NathanaelA on February 26, 2016 2:28 Ok; for anyone who runs into this -- this is a gradle issue, not a TNS specific issue. Who knows when they will be fixed; but their is a way to mitigate the primary issue I ran into. The include.gradle files internal names can be shortened. Inside the include.gradle files are a section that (example nativescript-cardview) looks like this
Edit and make it look like this:
Now the plugin only uses 4 characters rather than 20 characters. By doing this to all the existing include.gradle files the size was reduced to considerably under the 255 length. A couple notes, this could be done via the CLI automatically; We would make the CLI when it copies over the include.gradle files automatically shorten the name... When it generates a new default include.gradle it uses a shortened name. |
From @Daxito on February 26, 2016 3:30 Is there a way to know when we run into this issue? Any error message or something? |
From @NathanaelA on February 26, 2016 4:8 In my case it threw lots of error messages about aapt not being able to process some of the png files. At the end it just says gradlew failed. Here is one of the many errors sets (each error has these 5 lines)
And then finally tns reports:
|
The problem is we currently make every plugin into a flavor (which is not the brightest idea), and gradle includes every flavor name to the name of the package somewhere in the |
This comment was marked as abuse.
This comment was marked as abuse.
Hi, @NathanaelA |
This comment was marked as abuse.
This comment was marked as abuse.
Hi, @NathanaelA
The the cases I'm talking about include other scenarios which will be depricated soon. You can read more about them here, having in mind the linked documentation. @NathanaelA it would be great if you be more careful while trying to @mention somebody. |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA there will be no need for any naming at all.
This whole block, will no longer be necessary. It will be a breaking change for some plugins, and the scenarios I've described in the docs are what will be asked of developers to migrate to the new version of the plugins. I will take care of describing in detail how to migrate the current plugins! Keep in mind the change won't happen overnight and you will have proper time to prepare and migrate the plugins. |
This comment was marked as abuse.
This comment was marked as abuse.
We haven't talked about it yet but it will be no earlier than 1.8 |
Ping @tjvantoll , @EddyVerbruggen , @sitefinitysteve, @bradmartin, @AntonioCuevaUrraco, @hdeshev , @vakrilov , @PeterStaev, @alexziskind1, @emiloberg, @PanayotCankov , @TobiasHennig, @NathanaelA, @ginev This is concerning plugin migration. With the 1.7 release there will be a warning during build time, saying some plugins have soon to be deprecated files. This warning will be there for one release and this will be the appropriate time to migrate your plugins to the new structure. Because this will be a breaking change there is a blog post describing how exactly to migrate your current plugins to the state they need to be in. |
@Plamen5kov So if my plugin needs an |
@Plamen5kov I was going to mention the same thing as @PeterStaev. Consider this one fi.: https://github.com/EddyVerbruggen/nativescript-bluetooth/tree/master/platforms/android |
@PeterStaev
@EddyVerbruggen |
I see pro/con to having the user do this. The con being devs who have no On Mon, Mar 14, 2016, 7:51 AM Plamen Petkov notifications@github.com
|
@Plamen5kov I like my plugins to be plug & play so usually I go to great lengths to achieve that. For me it doesn't feel right if a developer needs to manually adjust his project after he added my plugin. Consider the case where a dev updates a plugin and in this new release a new permission is required. I can't expect devs to check the docs every time, which means I will have even more issues opened on my GitHub issue tracker. And it's not only permissions I'm concerned about. For instance AdMob requires you to define an activity: IMO, if we want to attract webdevs and former Cordova users then we should not make it harder for them to use plugins. |
@Plamen5kov I agree with @EddyVerbruggen on this one. Making plugins Plug & Play is there for cordova plugins, why complicate things here for developers asking them to read plugin documentation and manually add permissions? For people using the CLI it might be relatively OK as they most probably visited NPM/GitHub to find the plugin so they will see it in the readme. But imagine this for people using Telerik Platform that add plugins via Visual Studio extension UI for example. They will have absolutely no clue that they will have to add the permissions manually in order for the plugin to work. |
If it has to be this way, what if we had a spot in the package.json to define the required permissions and on build it checks to see if those are in the manifest and cancels the build with the proper message (although it really would just be nice to have the merge happen as is) |
@EddyVerbruggen, @PeterStaev I'm not disagreeing with you, quite the opposite, I would do exactly the same as you. I would want my plugins to be plug and play, and @EddyVerbruggen as you said |
@Plamen5kov Are there (or will there be) detailed docs on how to make the aar (I've never done this before) |
Was about to ask that also. No clue how to do an .aar On Mon, Mar 14, 2016, 8:23 AM Steve McNiven-Scott notifications@github.com
|
Thanks @Plamen5kov - If there is a(n easy) way to create an .aar from only an AndroidManifest.xml file then I will be on board. It looks like stuff like |
@PeterStaev Using shorten names doesn't scale. It is only a matter of how many plugins you use and the path length of your project folder. We will just postpone the problem. I guess it might seem tempting to stay on this way but we all know where it leads, don't we? 😉 I think we should focus on what we all have in common - the desire to improve {N} as a platform. Using Let's keep the discussion and hear other suggestions. EDIT: Here is how we could be creating
I guess we can integrate something similar in |
You know this sounds really awkward when seen on a repo for cross platform framework... |
Let's stick to constructive comments 😄 |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA I guess it will work as long as it uses API level 22 or lower. I have to test it to confirm though. |
This comment was marked as abuse.
This comment was marked as abuse.
The team gave a lot of thought on this discussion and one of the main problems we saw was the case when you would need to create an We tried out testing the scenario where we build In conclusion, plugins made at build-time take a lot of time. A future solution that we can suggest is using CLI to help build your plugins. Nativescript CLI already has this as a story: NativeScript/nativescript-cli#586 |
Hey guys, @Plamen5kov , @mslavchev , I'm wondering how we'll support plugin variables in case this suggestion is implemented. Currently you can define plugin variables in plugin's package.json and use them later in your AndroidManifest.xml (with 1.7.1 of CLI, which is just around the corner, you can use them in strings.xml as well). This is really important when you want to use the value of the variable in your plugin's native code. What will be the expected workflow in case we decide to drop separate files and require .aar file from plugin. How we'll replace the plugin variables values from project to plugin's .aar file? |
I'd like to do a summary on this issue and how we are going to proceed in the short term. Let me begin with the engineering reasons behind the proposed breaking change with the ReasoningThe PhilosophyMe and the team believe this is the most sustainable engineering-wise solution in the long run. Our thinking is that we should stick with the underlying native platform tools instead of making our own fork (implementation) on top of it for the sake of hiding some of the native paradigms behind an assumingly easier to digest abstraction. So far our practical experience proved that fighting with Gradle is a battle already lost. Instead, we decided to embrace Gradle and walk our path together. With that said, and because Problems SolvedBesides the concrete bug with the long paths on Windows, the suggested change would have also fixed several issues related with merging resources through flavors. It would also make the Gradle build script less complicated and more straightforward. ObjectionsWe heard some valid concerns against the change:
WorkaroundsAfter we gathered this feedback we tried to extend the solution to mitigate the concerns. What we did was:
SummaryNone of the workarounds worked for us. While we continue to believe that the originally suggested solution with |
This comment was marked as abuse.
This comment was marked as abuse.
All of this is getting beyond what I know so when is all of this going into effect? What are the exact steps I need to take for all of my plugins to continue working properly? If this is going to cause version issues, is there a grace period? I have several plugins and if it involves a lot of work that is going to just suck. Sooner I know what I need to actually do I can start preparing/learning about .aar files and everything else. Just wanting to get ahead of whatever is going to be established. I might not fully understand the entire process, just don't want my plugins to stop working when the changes happen 😄 |
@bradmartin Plugin authors shouldn't change anything (probably that didn't become clear from my comment). We will do some dynamic name minification which should solve the issue with the long paths for now. @NathanaelA @blagoev has found a solution (https://github.com/NativeScript/android-runtime/pull/419/files). We are still to run it through our CI infrastructure and plugin verification mechanism but it does seem working. |
This comment was marked as abuse.
This comment was marked as abuse.
…dows fixes #369 long paths on window
@Plamen5kov Please push out that automatic .aar builder, even if we have to add a The extra 4 seconds is not a showstopper for everyone. It would be excellent if it just took the manifest and any |
Hi @vbresults, |
From @NathanaelA on February 25, 2016 23:55
Windows only supports 255 character length paths... This is VERY IMPORTANT to this issue!
For some reason the CLI is creating a really long path for merging stuff using the names of each installed plugin. So for example when using 8 plugins if each of them are an average of 22 characters (nativescript = 12 by itself, almost every plugin is prefixed with those 12 characters). = 176 characters.
So If I have D:\projects\nativescript\projname = 35
Then you add in \platforms\android\build\intermediates\res\merged = 59
(176 in Plugin name characters) = 172
Then you add the image part of the path \debug\drawable-xxhdpi\someimage.png = 49
= 315 Characters. Guess what happens. No Worky 😀 and now your platform folder is totally screwed up.
THIS IS A BAD ISSUE! It leaves the project effectively dead.
Plugins I was using:
"nativescript-barcodescanner": "^1.2.0",
"nativescript-cardview": "^0.1.1",
"nativescript-dom": "^1.0.0",
"nativescript-drop-down": "^1.2.1",
"nativescript-grid-view": "^1.3.0",
"nativescript-liveedit": "file:..\repos\nativescript-liveedit",
"nativescript-sqlite": "file:..\repos\nativescript-sqlite",
"nativescript-telerik-ui": "file:..\nativescript-ui-debug-dev.tgz",
"tns-core-modules": "^1.6.2"
Then I attempted to add: nativescript-floatingactionbutton
This is a BLOCKING issue for most people when they hit this. I have some ways I think I can work around this.
Copied from original issue: NativeScript/nativescript-cli#1546
The text was updated successfully, but these errors were encountered: