Vladimir Mutafov
Vladimir Mutafov
Currently, there is no information about why a given class is whitelisted or blacklisted by the metadata generator. It would be great if we provide such information when a Gradle...
Currently, the `buildMetadata` task in the `app/build.gradle` does not depend on changes in the application's `App_Resources/Android/libs` folder. The bug is reproduced with the following steps: 1) execute `tns build android`...
Currently, the way to use Kotlin features in a NativeScript app is by using them as used in a Java code e.g. https://kotlinlang.org/docs/reference/java-to-kotlin-interop.html There should be a more convenient way...
Currently, the JS parser in the SBG does not fully support parsing the ES6 syntax. We should research what changes need to be made and implement them. One of the...
Currently, there is no way to implement for example `java.util.List` and provide information what would be the type `T`. When extending such class/interface from TypeScript the following way: ```JS @Interfaces([java.util.List])...
It seems that Perfetto is the preferred way of collecting performance metrics and we should consider enabling its usage in NativeScript apps. https://docs.perfetto.dev/#/
Currently, the Runtime uses multiple classloaders, mostly for the runtime generated classes by the Runtime Binding Generator. This might break in cases where a user requests a class with: `Class.forName("com.test.SomeRuntimeGeneratedClass");`...
Currently, if in the `app.gradle` there is a custom dependency like: `implementation fileTree(dir: '/test/test', include: ['test.jar'])` and it is not on the file system, the build should fail instead of...
Currently there is a step in the SBG which parses all JAR dependencies and collects Java interfaces in them in order to be provided for the js parser. Another step...
After V8 7.3 is merged into master, ASAN should be configured to run against our codebase.