mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Restructure project targets and binary distribution target
- Use one common static lib target - create embeddedFramework as binary distribution including docset in one zip - Add HockeySDK.xcconfig for easier build setting setup - Move everything into a single directory, too many problems making binary and subproject work without requing recursive header search paths - Documentation update pending
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,3 +20,4 @@ profile
|
||||
profile
|
||||
|
||||
documentation/
|
||||
Products/
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#import "../Helper/BITHockeyBaseManager.h"
|
||||
#import "BITHockeyBaseManager.h"
|
||||
|
||||
|
||||
// hockey crash manager status
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
#import "../Helper/BITHockeyBaseViewController.h"
|
||||
#import "BITHockeyBaseViewController.h"
|
||||
|
||||
|
||||
@interface BITFeedbackListViewController : BITHockeyBaseViewController <UITableViewDelegate, UITableViewDataSource> {
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#import "../Helper/BITHockeyBaseManager.h"
|
||||
#import "BITHockeyBaseManager.h"
|
||||
#import "BITFeedbackListViewController.h"
|
||||
#import "BITFeedbackComposeViewController.h"
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "../Helper/BITHockeyBaseManager.h"
|
||||
#import "BITHockeyBaseManager.h"
|
||||
|
||||
|
||||
typedef enum {
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
#import "../Helper/BITHockeyBaseViewController.h"
|
||||
#import "BITHockeyBaseViewController.h"
|
||||
|
||||
|
||||
@class PSStoreButton;
|
||||
@@ -33,16 +33,16 @@
|
||||
#import "BITHockeyManager.h"
|
||||
#import "BITHockeyManagerDelegate.h"
|
||||
|
||||
#import "CrashReports/BITCrashManager.h"
|
||||
#import "CrashReports/BITCrashManagerDelegate.h"
|
||||
#import "BITCrashManager.h"
|
||||
#import "BITCrashManagerDelegate.h"
|
||||
|
||||
#import "Update/BITUpdateManager.h"
|
||||
#import "Update/BITUpdateManagerDelegate.h"
|
||||
#import "Update/BITUpdateViewController.h"
|
||||
#import "BITUpdateManager.h"
|
||||
#import "BITUpdateManagerDelegate.h"
|
||||
#import "BITUpdateViewController.h"
|
||||
|
||||
#import "Feedback/BITFeedbackManager.h"
|
||||
#import "Feedback/BITFeedbackComposeViewController.h"
|
||||
#import "Feedback/BITFeedbackListViewController.h"
|
||||
#import "BITFeedbackManager.h"
|
||||
#import "BITFeedbackComposeViewController.h"
|
||||
#import "BITFeedbackListViewController.h"
|
||||
|
||||
|
||||
// Notification message which HockeyManager is listening to, to retry requesting updated from the server
|
||||
|
||||
2
Support/HockeySDK.xcconfig
Normal file
2
Support/HockeySDK.xcconfig
Normal file
@@ -0,0 +1,2 @@
|
||||
OTHER_LDFLAGS=$(inherited) -ObjC -framework CoreGraphics -framework Foundation -framework QuartzCore -framework SystemConfiguration -weak_framework AdSupport -weak_framework UIKit
|
||||
APPLEDOC_DOCSET_NAME=HockeySDK-iOS
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,5 @@
|
||||
#include "HockeySDK.xcconfig"
|
||||
|
||||
BUILD_NUMBER = 6
|
||||
VERSION_STRING = 2.5.4b1
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"2.5.4b1\""
|
||||
|
||||
Reference in New Issue
Block a user