Standing Ovation

Results 2 comments of Standing Ovation

Same happened to me. `ns doctor` shows no error. ``` $ ns doctor ✔ Getting environment information No issues were detected. ✔ Your ANDROID_HOME environment variable is set and points...

@twopelu Here is my workaround. ### Remove `~` or `^` from version expressions in the package.json before (NOT WORKED) ``` "@nativescript/android": "~8.0.0", "@nativescript/ios": "~8.0.0", ``` after (WORKED) ``` "@nativescript/android": "8.0.0",...