Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cocoapods 1.7.0 multiproject support (b/128794527) #2751

Merged
merged 44 commits into from
Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
a1665e1
CocoapodsIntegrationTest project introduced
maksymmalyhin Apr 4, 2019
9619835
Header imports updated to module style for external modules imports
maksymmalyhin Apr 4, 2019
c6abfe2
CocoapodsIntegrationTest - import a Firebase header to make sure comp…
maksymmalyhin Apr 4, 2019
2bd1a39
Cocopoads test script [WIP]
maksymmalyhin Apr 4, 2019
8fff785
CocoapodsIntegrationTest - simple run script
maksymmalyhin Apr 5, 2019
1d3a30e
Run cocopoads tests on Travis
maksymmalyhin Apr 5, 2019
c115bbd
Travis cocoapods tests - temporary enable
maksymmalyhin Apr 5, 2019
0669f61
Travis cocoapods tests - no before_install
maksymmalyhin Apr 5, 2019
046253e
Travis - fix file paths
maksymmalyhin Apr 5, 2019
9097700
Cocoapods tests - `bundle install --no-deployment`
maksymmalyhin Apr 5, 2019
91e3aa3
Non-default gemfile name
maksymmalyhin Apr 5, 2019
5aadc0b
Print cocoapods version
maksymmalyhin Apr 5, 2019
82c70af
Commit Gemfile.lock
maksymmalyhin Apr 5, 2019
3d1193e
Experiments with bundler
maksymmalyhin Apr 5, 2019
1d9e5a2
Update bundler environment
maksymmalyhin Apr 5, 2019
0c9993f
Unset BUNDLE_GEMFILE
maksymmalyhin Apr 5, 2019
5f3368d
Run xcodebuild
maksymmalyhin Apr 5, 2019
50becb1
cleanup and comments
maksymmalyhin Apr 5, 2019
b70c227
Check all Cocoapods configurations
maksymmalyhin Apr 5, 2019
6371394
fix check all
maksymmalyhin Apr 5, 2019
1636d03
Comments and usage
maksymmalyhin Apr 8, 2019
d96e0d6
Travis - run only build_all_environments.sh
maksymmalyhin Apr 8, 2019
834b1fb
Merge remote-tracking branch 'refs/remotes/origin/master'
maksymmalyhin Apr 8, 2019
3c8449c
Travis - Remove underscores from Cocoapods stage
maksymmalyhin Apr 8, 2019
d031023
Scripts comments
maksymmalyhin Apr 8, 2019
5da51aa
style.sh generated changes
maksymmalyhin Apr 8, 2019
f3a4502
Formatting
maksymmalyhin Apr 8, 2019
7a2576b
Trailing whitespaces
maksymmalyhin Apr 8, 2019
ba7d83a
Trailing whitespace
maksymmalyhin Apr 8, 2019
4b209aa
Licenses
maksymmalyhin Apr 8, 2019
fb5f7ab
Remove unused code from test project
maksymmalyhin Apr 8, 2019
85b27a4
Copyright
maksymmalyhin Apr 8, 2019
84b2b2f
Merge remote-tracking branch 'refs/remotes/origin/master'
maksymmalyhin Apr 8, 2019
150010f
GoogleUtilities changelog
maksymmalyhin Apr 8, 2019
068bfd2
Firestore: Fix MacOS example App
maksymmalyhin Apr 8, 2019
18a3694
Merge branch 'master' into mm/cocoapods-1_7
maksymmalyhin Apr 8, 2019
d56ba86
Remove if_changed for testing purposes
maksymmalyhin Apr 8, 2019
78975ae
Merge remote-tracking branch 'refs/remotes/origin/master'
maksymmalyhin Apr 8, 2019
58bbe3c
Travis - add Cocoapod tests manually
maksymmalyhin Apr 9, 2019
c150998
Travis fsyntax fixes
maksymmalyhin Apr 9, 2019
3005c13
Travis - place stages declarations at the top
maksymmalyhin Apr 9, 2019
c2ee4d6
Travis - command formatting
maksymmalyhin Apr 9, 2019
53204f7
typos
maksymmalyhin Apr 9, 2019
a23cb5c
Travis - cocoapods_compatibility_check only for cron builds
maksymmalyhin Apr 9, 2019
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused code from test project
  • Loading branch information
maksymmalyhin committed Apr 8, 2019
commit fb5f7abe93932f0359fb9dc420d67a47d01e02da
36 changes: 0 additions & 36 deletions CocoapodsIntegrationTest/CocoapodsIntegrationTest/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,40 +23,4 @@ @interface AppDelegate ()

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application {
// Sent when the application is about to move from active to inactive state. This can occur for
// certain types of temporary interruptions (such as an incoming phone call or SMS message) or
// when the user quits the application and it begins the transition to the background state. Use
// this method to pause ongoing tasks, disable timers, and invalidate graphics rendering
// callbacks. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application {
// Use this method to release shared resources, save user data, invalidate timers, and store
// enough application state information to restore your application to its current state in case
// it is terminated later. If your application supports background execution, this method is
// called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the active state; here you can undo
// many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If
// the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application {
// Called when the application is about to terminate. Save data if appropriate. See also
// applicationDidEnterBackground:.
}

@end
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,4 @@ @interface ViewController ()

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}

@end