Skip to content

Commit

Permalink
Release 2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenL committed Apr 15, 2018
1 parent 7a0ea3b commit e88fd39
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
Expand Down Expand Up @@ -69,6 +70,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
Expand All @@ -86,6 +88,16 @@
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
<AdditionalOption
key = "MallocStackLogging"
value = ""
isEnabled = "YES">
</AdditionalOption>
<AdditionalOption
key = "PrefersMallocStackLoggingLite"
value = ""
isEnabled = "YES">
</AdditionalOption>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "0"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "Simple Survey/ViewController.m"
timestampString = "541493232.771721"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "45"
endingLineNumber = "45"
landmarkName = "-respondentDidEndSurvey:error:"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>
11 changes: 0 additions & 11 deletions SimpleSurvey/Simple Survey/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,5 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>api.surveymonkey.net</key>
<dict>
<key>NSTemporaryExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>
</dict>
</plist>
1 change: 1 addition & 0 deletions SimpleSurvey/Simple Survey/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ - (void)respondentDidEndSurvey:(SMRespondent *)respondent error:(NSError *) erro
* Handle error returned when a response is not successfully collected
*/
}
self.feedbackController = nil;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/

#import <UIKit/UIKit.h>
#import <WebKit/WebKit.h>
#import "SMRespondent.h"
#define GIVE_FEEDBACK NSLocalizedString(@"Give Feedback", @"Title for primary action button for intercept UIAlertView")
#define NOT_NOW NSLocalizedString(@"Not Now", @"Title for negative action button for intercept UIAlertView")
Expand Down
Binary file modified SurveyMonkeyiOSSDK.framework/Versions/A/SurveyMonkeyiOSSDK
Binary file not shown.
4 changes: 2 additions & 2 deletions surveymonkey-ios-sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "surveymonkey-ios-sdk"
s.version = "1.0.8"
s.version = "2.0.0"
s.summary = "The SurveyMonkey Mobile Feedback SDK for iOS"
s.homepage = "https://github.com/SurveyMonkey/surveymonkey-ios-sdk"
s.license = 'MIT'
s.author = { "Ben Leiken" => "benl@surveymonkey.com" }
s.source = { :git => "https://github.com/SurveyMonkey/surveymonkey-ios-sdk.git", :tag => s.version.to_s }
s.platform = :ios, '7.1'
s.platform = :ios, '8.0'
s.requires_arc = true
s.vendored_frameworks = 'SurveyMonkeyiOSSDK.framework'
end

0 comments on commit e88fd39

Please sign in to comment.