You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2018/08/14 01:41:52 UTC

[GitHub] erisu commented on issue #52: resolve config path fix needed in patch release

erisu commented on issue #52: resolve config path fix needed in patch release
URL: https://github.com/apache/cordova-osx/issues/52#issuecomment-412724683
 
 
   @janpio if you mean the issue I fixed in my PR, basically if you install a plugin and build the app on the second or more times, the "Device is Ready" does not get triggered.
   
   Without my fix, as a temporary workaround, the user will need to re-add the platform every-time before build so the issue does not happen.
   
   *Sample use case displaying issue*
   These steps I also outlined in the ticket before.
   ```
   $ cordova create myapp org.apache.myapp myapp
   $ cd myapp
   $ cordova platform add osx
   $ cordova plugin add cordova-plugin-file
   $ cordova run osx
   $ cordova run osx  // (broken, the device is ready is not triggered)
   $ cordova run osx  // (broken, the device is ready is not triggered)
   ...
   ```
   Same applies to the build step since it goes through the same process.
   
   If we know that this issue still exists, maybe we can mention the `temporary workaround` solution in the release notes? Always remove and re-add the platform back?
   
   ```
   $ cordova create myapp org.apache.myapp myapp
   $ cd myapp
   $ cordova platform add osx
   $ cordova plugin add cordova-plugin-file
   $ cordova run osx
   $ cordova platform rm osx
   $ cordova platform add osx
   $ cordova run osx
   $ cordova platform rm osx
   $ cordova platform add osx
   $ cordova run osx
   ...
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org