From c3f547030a49062b5bdce07f577bb45e25b4660b Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Tue, 1 Sep 2015 14:48:25 -0700 Subject: [PATCH] Add stub for notifyApplicationReady --- CodePush.ios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CodePush.ios.js b/CodePush.ios.js index fc78ba8..d8cfd25 100644 --- a/CodePush.ios.js +++ b/CodePush.ios.js @@ -84,12 +84,17 @@ function getCurrentPackage() { return NativeCodePush.getCurrentPackage(); } +functino notifyApplicationReady() { + return NativeCodePush.notifyApplicationReady(); +} + var CodePush = { getConfiguration: getConfiguration, checkForUpdate: checkForUpdate, download: download, apply: apply, getCurrentPackage: getCurrentPackage, + notifyApplicationReady: notifyApplicationReady, setUpTestDependencies: setUpTestDependencies };