Skip to content

Commit e566bcc

Browse files
author
Stephen Cobbe
committed
A few small changes.
1 parent 5ec9560 commit e566bcc

File tree

407 files changed

+1326
-442
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

407 files changed

+1326
-442
lines changed

Examples/DBRoulette_Carthage/DBRoulette_Carthage.xcodeproj/project.pbxproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
F26075C41D7F5ECA00632951 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F26075C21D7F5ECA00632951 /* Main.storyboard */; };
1414
F26075C61D7F5ECA00632951 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F26075C51D7F5ECA00632951 /* Assets.xcassets */; };
1515
F26075C91D7F5ECA00632951 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F26075C71D7F5ECA00632951 /* LaunchScreen.storyboard */; };
16+
F2AA14B01D7FA3AF0028C194 /* ObjectiveDropboxOfficial.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2AA14AF1D7FA3AF0028C194 /* ObjectiveDropboxOfficial.framework */; };
1617
/* End PBXBuildFile section */
1718

1819
/* Begin PBXFileReference section */
@@ -26,22 +27,33 @@
2627
F26075C51D7F5ECA00632951 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
2728
F26075C81D7F5ECA00632951 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
2829
F26075CA1D7F5ECA00632951 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
30+
F2AA14AF1D7FA3AF0028C194 /* ObjectiveDropboxOfficial.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ObjectiveDropboxOfficial.framework; path = Carthage/Build/iOS/ObjectiveDropboxOfficial.framework; sourceTree = "<group>"; };
2931
/* End PBXFileReference section */
3032

3133
/* Begin PBXFrameworksBuildPhase section */
3234
F26075B31D7F5ECA00632951 /* Frameworks */ = {
3335
isa = PBXFrameworksBuildPhase;
3436
buildActionMask = 2147483647;
3537
files = (
38+
F2AA14B01D7FA3AF0028C194 /* ObjectiveDropboxOfficial.framework in Frameworks */,
3639
);
3740
runOnlyForDeploymentPostprocessing = 0;
3841
};
3942
/* End PBXFrameworksBuildPhase section */
4043

4144
/* Begin PBXGroup section */
45+
F2059CDF1D7FAAE4000E783D /* Frameworks */ = {
46+
isa = PBXGroup;
47+
children = (
48+
F2AA14AF1D7FA3AF0028C194 /* ObjectiveDropboxOfficial.framework */,
49+
);
50+
name = Frameworks;
51+
sourceTree = "<group>";
52+
};
4253
F26075AD1D7F5ECA00632951 = {
4354
isa = PBXGroup;
4455
children = (
56+
F2059CDF1D7FAAE4000E783D /* Frameworks */,
4557
F26075B81D7F5ECA00632951 /* DBRoulette_Carthage */,
4658
F26075B71D7F5ECA00632951 /* Products */,
4759
);

Examples/DBRoulette_Carthage/DBRoulette_Carthage/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@
5959
"idiom" : "ipad",
6060
"size" : "76x76",
6161
"scale" : "2x"
62+
},
63+
{
64+
"idiom" : "ipad",
65+
"size" : "83.5x83.5",
66+
"scale" : "2x"
6267
}
6368
],
6469
"info" : {

Examples/DBRoulette_Carthage/DBRoulette_Carthage/ViewController.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@
66
// Copyright © 2016 Dropbox. All rights reserved.
77
//
88

9+
#import <Foundation/Foundation.h>
10+
#import <UIKit/UIKit.h>
911
#import "ViewController.h"
1012

1113
#import <ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h>
14+
#import <ObjectiveDropboxOfficial/DropboxClient.h>
1215

1316
@interface ViewController ()
1417

@@ -18,6 +21,8 @@ @implementation ViewController
1821

1922
- (void)viewDidLoad {
2023
[super viewDidLoad];
24+
DropboxClient *client = [[DropboxClient alloc] initWithAccessToken:@"test"];
25+
NSLog(@"%@", client);
2126

2227
// Do any additional setup after loading the view, typically from a nib.
2328
}

Source/ObjectiveDropboxOfficial.xcodeproj/project.pbxproj

Lines changed: 862 additions & 0 deletions
Large diffs are not rendered by default.

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCLaunchEmptyResult.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCLaunchResultBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCPollArg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCPollEmptyResult.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCPollError.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

Source/ObjectiveDropboxOfficial/PlatformNeutral/ApiObjects/Async/DBASYNCPollResultBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
/// Auto-generated by Stone, do not modify.
55
///
66

7+
#import "DBSerializableProtocol.h"
78
#import <Foundation/Foundation.h>
8-
@protocol DBSerializable;
99

1010
#pragma mark - API Object
1111

0 commit comments

Comments
 (0)