Conditional compilation for Actionscript
Is there a way to benefit from conditional compilation in IDEA, like below?
CONFIG::IS_GOOGLE_PLAY_STORE {
// debug-pecific code here
}
COFING::AMAZON_APPSTORE {
// release-specific code here
}
CONFIG::APPLE_APPSTORE {
// release-specific code here
}
Thanks.
请先登录再写评论。