> Also, have you tested this with v3.0.0-beta.17 to confirm if this is not only because of v3.0.0-beta.18 release?
I didn't try the previous version but could do so.
I was thinking as this is such a breaking changing a little smoke test of the released files might be a good thing to add to the release process?
beta.17 makes no difference (I grabbed it from the releases on git hub).
No obvious global diffs for ```Kinvey`` [in diffs](https://github.com/Kinvey/html5-sdk/commit/7e11f4b287bb73b69f8140e3b0169e6835924f59)
I can't even begin to pretend to understand Webpack's module wrapping but it looks to me that the SDK might be a commons module exporting Kinvey and not a script to be imported via <script> as per your instructions
my appologies 3.0.0bet17 DOES work!!
I hit some strange caching in chrome when debugging.
However as there appear to be significant diffs between Beta17 and beta18 I wonder if I should even be trying beta17?
I just double checked beta18 to ensure it was not my mistake but it still fails.
Interestingly Kinvey is defined on line 1507
Please advise ASAP if I should use beta17 or use 1.6 instead
Steve,
This problem has now been resolved with the release of 3.0.0-beta.19.
But there is another issue that is causing push to not work and will need to be fixed. Right now I don't have a time estimate for that fix but it is something that is priority for us to fix mybkexperience.
Steve Lee
I've created a very simple setup following the Getting Started Guide
<pre>
<script src="https://da189i1jfloii.cloudfront.net/js/kinvey-html5-sdk-3.0.0-beta.18.min.js"></script>
and in an onLoad() handler
{
Kinvey.init({ appKey: '<appKey>', appSecret: '<appSecret>'});
}
</pre>
I find that Kinvey is not defined on the Window global object, though KinveyDevice and KinveyPopup are
I also tried the non min version on GitHub, but the same problem
Here is my test code
https://github.com/OpenDirective/spikes/tree/master/kinvey-tests
it breaks here as Kinvey is not defined
https://github.com/OpenDirective/spikes/blob/master/kinvey-tests/src/test.js#L10