Compare commits

...

3 Commits

Author SHA1 Message Date
Yuan Zhu fa5214c4bc Update ResearchKit.podspec
To 1.1.2
2015-06-09 18:35:52 -07:00
Yuan Zhu 84ad0d4072 Fix two warnings in release build. 2015-06-09 18:31:52 -07:00
Yuan Zhu 9ed835007f Update ResearchKit.podspec
To 1.1.1
2015-06-09 18:15:44 -07:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ResearchKit'
s.version = '1.0.0'
s.version = '1.1.2'
s.summary = 'ResearchKit is an open source software framework that makes it easy to create apps for medical research or for other research projects.'
s.homepage = 'https://www.github.com/ResearchKit/ResearchKit'
s.documentation_url = 'http://researchkit.github.io/docs/'
+2 -2
View File
@@ -149,14 +149,14 @@ OSStatus ORKAudioGeneratorRenderTone(void *inRefCon,
- (void)applicationDidBecomeActive:(NSNotification *)notification {
if (_toneUnit) {
OSErr err = AudioOutputUnitStart(_toneUnit);
__unused OSErr err = AudioOutputUnitStart(_toneUnit);
NSAssert1(err == noErr, @"Error starting unit: %hd", err);
}
}
- (void)applicationWillResignActive:(NSNotification *)notification {
if (_toneUnit) {
OSErr err = AudioOutputUnitStop(_toneUnit);
__unused OSErr err = AudioOutputUnitStop(_toneUnit);
NSAssert1(err == noErr, @"Error stopping unit: %hd", err);
}
}