Application and Platform Dependency musst not be lower than any dependencies #978
ChrisBlankDe
started this conversation in
New Rule
Replies: 1 comment 4 replies
|
I think you could extend this to the "application", "platform" and "dependencies" versions must not be lower than those of any dependencies. I think the challenging part is that you would need the exact versions of the apps you're taking a dependency on as symbols. During development I often have downloaded the symbols of newer versions of the apps that I am taking a dependency on, as the versions is the development Sandbox might be ahead. I have already developed a rule for this, but have disabled the rule as I'm running into exactly this problem. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
App A v1 has Application 25.1
App A v2 has Application 25.2
App B has Application 25.2 and dependency to App A v1 -> warning occure
App B has Application 25.2 and dependency to App A v2 -> no warning occure
Theoretically, a newer version of App A can have a lower application dependency that the last version. However, most build systems and AppSource validation cannot handle this.
All reactions