Skip to content

Commit

Permalink
Update for SDL 4.6.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joeljfischer committed Jun 27, 2017
1 parent 1f4e5a8 commit c8a0327
Show file tree
Hide file tree
Showing 21 changed files with 751 additions and 695 deletions.
4 changes: 3 additions & 1 deletion Podfile
@@ -1,4 +1,6 @@
platform :ios, '6.0'
use_frameworks!

target "RPC Builder" do
pod 'SmartDeviceLink-iOS', '~> 4.2.3'
pod 'SmartDeviceLink', :git=> 'https://github.com/smartdevicelink/sdl_ios.git', :tag => '4.6.0-rc.2'
end
20 changes: 15 additions & 5 deletions Podfile.lock
@@ -1,12 +1,22 @@
PODS:
- SmartDeviceLink-iOS (4.2.3)
- SmartDeviceLink (4.6.0-rc.2)

DEPENDENCIES:
- SmartDeviceLink-iOS (~> 4.2.3)
- SmartDeviceLink (from `https://github.com/smartdevicelink/sdl_ios.git`, tag `4.6.0-rc.2`)

EXTERNAL SOURCES:
SmartDeviceLink:
:git: https://github.com/smartdevicelink/sdl_ios.git
:tag: 4.6.0-rc.2

CHECKOUT OPTIONS:
SmartDeviceLink:
:git: https://github.com/smartdevicelink/sdl_ios.git
:tag: 4.6.0-rc.2

SPEC CHECKSUMS:
SmartDeviceLink-iOS: 177b65b485475febbe59f8269a2eed3c37f28cc0
SmartDeviceLink: 8311051cf785019ded9a43ccf04dce28dea603c8

PODFILE CHECKSUM: 6ab100633d7a35be2dfa0c87a3c3089453b5c264
PODFILE CHECKSUM: d90c9fe8822e8a70c0423b8014f1383583f32234

COCOAPODS: 1.0.0
COCOAPODS: 1.3.0.beta.2
78 changes: 45 additions & 33 deletions RPC Builder.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions RPC Builder/AppDelegate.m
Expand Up @@ -4,7 +4,7 @@
//

#import "AppDelegate.h"
#import "SDLManager.h"
#import "RBSDLManager.h"

@interface AppDelegate ()

Expand All @@ -29,8 +29,8 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

[self.window makeKeyAndVisible];

if (![[SDLManager sharedManager] isConnected]) {
[[SDLManager sharedManager] presentSettingsViewController];
if (![[RBSDLManager sharedManager] isConnected]) {
[[RBSDLManager sharedManager] presentSettingsViewController];
}

return YES;
Expand Down

0 comments on commit c8a0327

Please sign in to comment.