-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solving version conflicts with project.ext no longer working in 3.3 #878
Comments
@hettiger confirming this as a bug with the latest Android runtime (3.3.0). Steps to reproduce:
|
Hey @hettiger, the user configurations which provides the We'll let you know when the problem has been addressed. |
Thank you for the update @Pip3r4o I can imagine it breaks a lot of apps that people try to update and it's really hard for non native devs to figure out what's going on thought. Maybe there should be a notice on https://docs.nativescript.org/releases/breaking-changes until this has been fixed? |
@hettiger the issue has been addressed. Please give the fix a try by executing Expect a patch release (3.3.1) of the android runtime later today |
@Pip3r4o Thank you for the hotfix. I've successfully built with 3.3.1 removing the following part from my def settingsGradlePath = "$projectDir/../../app/App_Resources/Android/settings.gradle";
def settingsGradleFile = new File(settingsGradlePath);
if(settingsGradleFile.exists())
{
apply from: settingsGradleFile;
} NativeScript Sidekick adds these lines automatically to my app.gradle file. Conclusion
|
@hettiger I've not tried the changes with Sidekick, I'll test further with Sidekick before pushing the patch release to ensure there are no incompatibilities. |
@Pip3r4o That's great news, thank you. If you want me to test it again let me know once another RC is available. |
@hettiger we reverted the |
@Pip3r4o awesome, I can now confirm that it is working with or without the additions from Sidekick. Thank you, looking forward to be installing the patch 👍 |
Problem addressed in the 3.3.1 release of NativeScript. |
Hi @Pip3r4o , thanks for the great work on this. Although I received a new error when using android@rc, any ideas?
|
Ah found my own solution just then, looks like the window path was too long. Here is a link for anyone else: #803 |
From @hettiger on November 8, 2017 17:10
Issue
In {NS} 3.2 I did something like this in my
app.gradle
file to have nativescript-plugin-firebase work well together with nativescript-cardview, nativescript-geolocation and nativescript-google-maps-sdk plugins:Unfortunately this no longer works with {NS} 3.3 because the following part no longer gets respected:
Proof
If you put something like this into the node_modules/..../nativescript-geolocation/.../include.gradle
You get an error like this:
Copied from original issue: NativeScript/NativeScript#5049
The text was updated successfully, but these errors were encountered: