-
-
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
[Proposal] Use custom classes required at compile time (e.g. Activity, Application, etc.) #283
Comments
! + 1 |
IS the NativeScript companion app open source? |
Hi @gordonpro NativeScript companion app is not open-sourced as it is used with Telerik AppBuilder services which are part of Telerik paid offerings. Also, currently {N} runtime has some Telerik AppBuilder related logic in order to make the integration between the two products. This proposal will help us to remove all AppBuilder specific logic from {N} runtime. Essentially, it will make {N} much more easy to embed whether it is NativeScript companion app or something else. |
+1 need to implement an interface asap for a plugin |
Boosting the volume on this so we can get the Auth0 plugin working for Android. Pretty please. |
@slavchev |
@gordonpro It is hard to say because it is a cross-team effort. The work on the android runtime side is already done and the prototype works as expected. The only unclear thing is how we are going to distribute the Java stuff which our modules depend on. ping @teobugslayer @hshristov |
I have tried this proposal but i am facing error "com.example.MyActivity" class is not found. kindly provide steps to create custom activity class. |
I haven't been clear enough. Both |
Just a quick update: we won't manage to ship this feature with the upcoming 1.6 release. While the functionality is implemented we need more time for proper testing. |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA Most of the code is public (PRs and some branches, the changes for metadata generator are in the |
This comment was marked as abuse.
This comment was marked as abuse.
gradle packar -PwidgetsPath=./widgets.jar I am facing error when i was build android-runtime [x86] SharedLibrary : libNativeScript.so FAILURE: Build failed with an exception.
|
hi, @katturajam |
Great. Good News. Awesome. |
@slavchev any updates on this? |
#364 is already merged into |
:) |
related to: #250 |
Are we able to add another build step to maybe copy over the .java files...? So like have a custom folder (maybe under App_Resource/android) where we can put our custom files... modifying the NativeScriptApplication/Activity files in the platform folder is becoming tedious here... :/ |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA I kinda want this to be just a thing "that just works" though... I don't want my plugin install step to be "Go install another plugin, and add this to it". Like this PR opened up the ability for us to modify these files, but in the worst possible place. Would make more sense to modify them externally and have it copied over. So in that case the step would be simply, "Take the .java files from here https://github.com/sitefinitysteve/nativescript-auth0/tree/master/plugin/platforms/android and paste them into X folder). This would then let the dev modify them further to maybe do things for multiple plugins. ...I dunno, anything but /platforms/android |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA GOTCHA! :D ...so onboard with the original idea? |
Guys, let me shed some light on what the original idea is. Also it would be awesome if you provide feedback. Firstly, because of the time pressure for 1.7.0 we released only a half of what was initially intended. As I wrote in the proposal, we intended to ship a tool which parses Secondly, we wanted to keep the change as small as possible and right now the With that said, our assumption was that {N} developers prefer to write JavaScript/TypeScript and try to avoid platform specific code such as Java. Also, we assumed that {N} developers will hate to see |
@slavchev NONO, I very much hate running\writing .java! :) However for this auth0 plugin I need to do it, and even though it's my plugin I'm getting annoying with having to keep going back and "fixing" these files on a platform add\remove... |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA I very much like the idea for a
How should we know which one to include and use in the project. I'm thinking if there is a way to create one |
Overview
In Android development it is a standard practice to use inheritance to create custom activities, applications and other components. Currently NativeScript runtime for Android ({N}) has limited support for this scenario. This proposal aims to provide a solution for creating custom activities, applications and other components.
Current State
{N} provides built-in
NativeScriptApplication
andNativeScriptActivity
classes. While these classes helped the adoption of {N} they also provide limitations. Currently it is not possible to inherit from a third party activity or other types which are used inAndroidManifest.xml
file.Technical Details
Here is how a Java class is extended in {N}
However
MyActivity
class is generated at runtime by {N} bridge. This mean you cannot useMyActivity
inAndroidManifest.xml
the way we currently useNativeScriptActivity
for example.Proposal
The current
extend
implementation can accept two parameters as well. We can rewrite the previous example as followsWe can leverage the latter syntax of
extend
function and pass the fully qualified type name of the new class as followsDuring build time we can parse the JavaScript and generate Java file
com/example/MyActivity.java
. This proposal will not make the existing code ambiguous because currently there is a validation rule that says the class name cannot contain.
symbol. The generatedMyActivity.java
file will look as followsThis is how the currently runtime generated types look like. We can provide a tool that generates equivalent types at build time. The only difference is the use of
com.tns.JavaScriptImplementation
annotation. The need a way to find the JavaScript implementation forMyActivity
when an instance is created. Using annotation is just one possible approach. I find it clear and, more importantly, I find it aligned with the following proposition how to extend Java class in TypeScript.Using ES6/TypeScript decorators is a simple way to indicate that we have to generate Java class at build time. The main benefit of using decorators is that the change is less obtrusive than other alternatives.
Impact
This proposal will require {N} modules to change the way an application is initialized and activities are created. I expect that this would be small-to-medium change. The immediate benefits are better encapsulation and control. Also, it may require {N} modules to come with prebuilt
Activity
andApplication
classes. Another approach would be adding these classes to the project template.Summary
This proposal has some other benefits as well. Removing
NativeScriptActivity
andNativeScriptApplication
from {N} will allows us to support lower Android API levels. Currently we have to compile against API level 17 and there is no technical justification for that. Also it will allow embedding {N} in other applications much easier. One primary scenario is NativeScript companion app.Finally, you can find a prototype here
The text was updated successfully, but these errors were encountered: