-
-
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
Support new gradle dependency configurations #993
Comments
@NickIliev Why can't we do that with
I reached this error: Unfortunately for us, gradle resolves it's implementation dependencies lazily and I couldn't find the API to find the A possible workaround would be to ask the users and plugin authors to continue using |
@Plamen5kov @NickIliev I'd like to add that after tinkering on my part, Another thing to note:
|
…with java interfaces in java code.
* Add tests for NativeScript/android#993. Also improve interface tests with java interfaces in java code. * Change java and javascirpt interfaces tests.
* Add tests for NativeScript/android#993. Also improve interface tests with java interfaces in java code. * Change java and javascirpt interfaces tests.
* Add tests for NativeScript/android#993. Also improve interface tests with java interfaces in java code. * Change java and javascirpt interfaces tests.
As explained in this article Gradle 3.4 introduced new Java Library plugin configurations.
The known
compile
is deprecated in favor of new techniques.Currently (with
tns-android: "4.0.0-rc-2018.4.2.1"
) dependencies in gradle are added viacompile
Feature request: to support
implementation
,api
, etc.Reported via t.1160649
Demo application here using this gradle configuration
The text was updated successfully, but these errors were encountered: