diff --git a/CodePush.m b/CodePush.m index 121b052..db086f1 100644 --- a/CodePush.m +++ b/CodePush.m @@ -15,10 +15,6 @@ RCT_EXPORT_MODULE() #pragma mark - Private constants -static BOOL needToReportRollback = NO; -static BOOL isRunningBinaryVersion = NO; -static BOOL testConfigurationFlag = NO; - // These constants represent valid deployment statuses static NSString *const DeploymentFailed = @"DeploymentFailed"; static NSString *const DeploymentSucceeded = @"DeploymentSucceeded"; @@ -38,6 +34,12 @@ static NSString *const BinaryBundleDateKey = @"binaryDate"; static NSString *const PackageHashKey = @"packageHash"; static NSString *const PackageIsPendingKey = @"isPending"; +#pragma mark - Static variables + +static BOOL needToReportRollback = NO; +static BOOL isRunningBinaryVersion = NO; +static BOOL testConfigurationFlag = NO; + // These values are used to save the bundleURL and extension for the JS bundle // in the binary. static NSString *bundleResourceExtension = @"jsbundle";