Legality of Zipline on Android/IOS #947
-
Are you using Zipline in prod for both Android and IOS? If so have you had an friction? Looking at the Apple's T&Cs:
It sounds like its okay if you're not drastically changing the feature set between dynamic deployments? I guess as the code has to be embedded in the binary for offline usage you still do store submissions for feature changes? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes!
No!
That is the common interpretation by many. And actually nothing about a JS engine specifically grants your ability to do this since you can do it with normal static code in the binary. We have driven dynamic content and structure of screens in our app for about 6 years using protos from the server and logic which is baked into the binaries. The JS engine is just an opportunity for more powerful dynamic logic.
This isn't strictly required by Zipline, but it's a general best practice. If you release on a regular cadence and snapshot the latest code for offline as part of that then the review process will cover the functionality. |
Beta Was this translation helpful? Give feedback.
Yes!
No!
That is the common interpretation by many. And actually nothing about a JS engine specifically grants your ability to do this since you can do it with normal static code in the binary.
We have driven dynamic content and structure of screens in our app for about 6 years using protos from the server and logic which is baked into the binaries. The JS engine is just an opportunity for more powerful dynamic logic.