-
-
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
[metadata] not rebuilding on json api usage change #1589
Comments
Hey @farfromrefug , tns create myApp --js
cd myApp
touch app/App_Resources/Android/native-api-usage.json
echo '{ "whitelist":["java.util:List"] }' > app/App_Resources/Android/native-api-usage.json
tns run android --justlaunch # app will fail at runtime
echo '{ }' > app/App_Resources/Android/native-api-usage.json
tns run android --justlaunch # app should work, but it still fails at runtime
rm -rf platforms
tns run android --justlaunch # app will work NOTE: The issue will be reproduced even if you use |
@rosen-vladimirov exactly what i am seeing! |
I made a simple change in the |
i am starting to include
native-api-usage.json
in my app.Right now i need to run to see what s being used, update the file, run again.
My issue is that the rebuild of metadata is not triggered on
native-api-usage.json
, so i need to remove theplatforms
folder and start again which is slow.Could you add that feature?
Thanks
The text was updated successfully, but these errors were encountered: