From 09fa092beb9f1405a35bf9fa1886a8715924ee59 Mon Sep 17 00:00:00 2001 From: Adam Miskiewicz Date: Mon, 14 Nov 2016 10:10:42 -0800 Subject: [PATCH] [xdl] Add 'ios\.buildNumber' to ExpSchema --- dev/xdl/src/project/ExpSchema.js | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/xdl/src/project/ExpSchema.js b/dev/xdl/src/project/ExpSchema.js index 57f5c5f6ab..e10a7f26f6 100644 --- a/dev/xdl/src/project/ExpSchema.js +++ b/dev/xdl/src/project/ExpSchema.js @@ -101,6 +101,7 @@ module.exports = joi.object().keys({ bundleIdentifier: iosBundleIdentifier.description( "The bundle identifier for your iOS standalone app. You make it up, but it needs to be unique on the App Store. See `this StackOverflow question `_." ), + buildNumber: joi.string().regex(/^[0-9]+$/).description('Build number for your iOS standalone app'), config: joi.object().keys({ fabric: joi.object().keys({ apiKey: joi.string().alphanum().description('Your Fabric API key'),