Created
August 3, 2016 17:15
-
-
Save davetrux/ed648e69fb964c90d8ff71a63118a13f to your computer and use it in GitHub Desktop.
Gradle-Openbakery BundleId Switch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(buildType == "AppStore") { | |
infoplist { | |
bundleIdentifier = "com.hpe.appstore" | |
} | |
signing { | |
mobileProvisionURI = 'file://' + currentPath + appStoreProfile | |
certificateURI = "file://" + currentPath + appStoreCert | |
certificatePassword = certPassword | |
} | |
} else if(buildType == "Enterprise") { | |
infoplist { | |
bundleIdentifier = "com.hpe.enterprise" | |
} | |
signing { | |
mobileProvisionURI = 'file://' + currentPath + enterpriseProfile | |
certificateURI = "file://" + currentPath + enterpriseCert | |
certificatePassword = certPassword | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment