Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
L
LuckFarm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lmj
LuckFarm
Commits
6b2f4d0c
Commit
6b2f4d0c
authored
Nov 11, 2020
by
zhangshuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
125d6ba8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
111 additions
and
85 deletions
+111
-85
project.pbxproj
GYDemo/GYDemo.xcodeproj/project.pbxproj
+4
-4
GYPrefixHeader.pch
GYDemo/GYDemo/GYPrefixHeader.pch
+6
-6
IOSADManager.m
GYDemo/GYDemo/SCAds/IOSADManager.m
+20
-2
Info.plist
UnityiOSFarm/Info.plist
+70
-70
project.pbxproj
UnityiOSFarm/Unity-iPhone.xcodeproj/project.pbxproj
+11
-3
No files found.
GYDemo/GYDemo.xcodeproj/project.pbxproj
View file @
6b2f4d0c
...
...
@@ -977,7 +977,7 @@
CODE_SIGN_ENTITLEMENTS
=
GYDemo/GYDemo.entitlements
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
CODE_SIGN_STYLE
=
Manual
;
CURRENT_PROJECT_VERSION
=
10
2
;
CURRENT_PROJECT_VERSION
=
10
3
;
DEVELOPMENT_TEAM
=
XWMRLLSSFL
;
ENABLE_BITCODE
=
NO
;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING
=
NO
;
...
...
@@ -992,7 +992,7 @@
"$(inherited)"
,
"$(PROJECT_DIR)/GYDemo/SCAds/GDTLib"
,
);
MARKETING_VERSION
=
1.0.
1
;
MARKETING_VERSION
=
1.0.
2
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.xy.nongchang
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PROVISIONING_PROFILE_SPECIFIER
=
"Lucky farm"
;
...
...
@@ -1009,7 +1009,7 @@
CODE_SIGN_ENTITLEMENTS
=
GYDemo/GYDemo.entitlements
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
CODE_SIGN_STYLE
=
Manual
;
CURRENT_PROJECT_VERSION
=
10
2
;
CURRENT_PROJECT_VERSION
=
10
3
;
DEVELOPMENT_TEAM
=
XWMRLLSSFL
;
ENABLE_BITCODE
=
NO
;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING
=
NO
;
...
...
@@ -1024,7 +1024,7 @@
"$(inherited)"
,
"$(PROJECT_DIR)/GYDemo/SCAds/GDTLib"
,
);
MARKETING_VERSION
=
1.0.
1
;
MARKETING_VERSION
=
1.0.
2
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.xy.nongchang
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PROVISIONING_PROFILE_SPECIFIER
=
"Lucky farm"
;
...
...
GYDemo/GYDemo/GYPrefixHeader.pch
View file @
6b2f4d0c
...
...
@@ -14,13 +14,13 @@
#ifndef GYPrefixHeader_pch
#define GYPrefixHeader_pch
//
#define ServerReport @"http://reporttest.zhangxinhulian.com"
//
#define ServerHost @"https://feedapitest.zhangxinhulian.com" // 服务端接口地址
//
#define ServerAds @"http://bstest.zhangxinhulian.com/v4/ads"
#define ServerReport @"http://reporttest.zhangxinhulian.com"
#define ServerHost @"https://feedapitest.zhangxinhulian.com" // 服务端接口地址
#define ServerAds @"http://bstest.zhangxinhulian.com/v4/ads"
#define ServerReport @"http://report.clouddistribute.net"
#define ServerHost @"https://feedapi.clouddistribute.net" // 服务端接口地址
#define ServerAds @"http://bs.clouddistribute.net/v4/ads"
//
#define ServerReport @"http://report.clouddistribute.net"
//
#define ServerHost @"https://feedapi.clouddistribute.net" // 服务端接口地址
//
#define ServerAds @"http://bs.clouddistribute.net/v4/ads"
#define WXAppId @"wxe7a03eb52cce1b51"
#define WXAppSecret @"6fa72a89ea188c4dff5729cff328b587"
...
...
GYDemo/GYDemo/SCAds/IOSADManager.m
View file @
6b2f4d0c
...
...
@@ -77,7 +77,14 @@ static IOSADManager * manager = nil;
return
_cacheBigImg
;
}
#pragma mark -
#pragma mark - 正在加载的广告数组
-
(
NSMutableArray
*
)
loadADDataArray
{
if
(
_loadADDataArray
==
nil
)
{
_loadADDataArray
=
[[
NSMutableArray
alloc
]
init
];
}
return
_loadADDataArray
;
}
-
(
UIViewController
*
)
currentVC
{
UIViewController
*
vc
=
[
UIApplication
sharedApplication
].
keyWindow
.
rootViewController
;
...
...
@@ -162,6 +169,9 @@ static IOSADManager * manager = nil;
-
(
void
)
loadAdWithData
:
(
GYAdsTrackModel
*
)
loadADModel
withADType
:
(
eADType
)
AdType
;{
self
.
haveLodeAD
=
YES
;
loadADModel
.
loadADType
=
AdType
;
WEAKSELF
;
if
([
loadADModel
.
adPlatform
isEqualToString
:
@"chuanshanjia"
])
{
// 穿山甲
...
...
@@ -172,6 +182,7 @@ static IOSADManager * manager = nil;
self
.
csjAd
=
nil
;
AddCSJADManager
*
csjAd
=
[[
AddCSJADManager
alloc
]
init
];
self
.
csjAd
=
csjAd
;
[
self
.
loadADDataArray
addObject
:
csjAd
];
[
csjAd
loadAdWithData
:
loadADModel
withADType
:
AdType
];
...
...
@@ -190,6 +201,8 @@ static IOSADManager * manager = nil;
self
.
gdtAd
=
nil
;
AddGDTADManager
*
csjAd
=
[[
AddGDTADManager
alloc
]
init
];
self
.
gdtAd
=
csjAd
;
[
self
.
loadADDataArray
addObject
:
csjAd
];
[
csjAd
loadAdWithData
:
loadADModel
withADType
:
AdType
];
csjAd
.
loadSuccessCallbackBlock
=
^
(
GYAdsTrackModel
*
_Nonnull
model
,
BOOL
success
)
{
...
...
@@ -209,6 +222,8 @@ static IOSADManager * manager = nil;
self
.
sigmobAd
=
nil
;
AddSigmobADManager
*
csjAd
=
[[
AddSigmobADManager
alloc
]
init
];
self
.
sigmobAd
=
csjAd
;
[
self
.
loadADDataArray
addObject
:
csjAd
];
[
csjAd
loadAdWithData
:
loadADModel
withADType
:
AdType
];
csjAd
.
loadSuccessCallbackBlock
=
^
(
GYAdsTrackModel
*
_Nonnull
model
,
BOOL
success
)
{
...
...
@@ -227,6 +242,8 @@ static IOSADManager * manager = nil;
self
.
ruishiAd
=
nil
;
AddRuiShiADManager
*
csjAd
=
[[
AddRuiShiADManager
alloc
]
init
];
self
.
ruishiAd
=
csjAd
;
[
self
.
loadADDataArray
addObject
:
csjAd
];
[
csjAd
loadAdWithData
:
loadADModel
withADType
:
AdType
];
csjAd
.
loadSuccessCallbackBlock
=
^
(
GYAdsTrackModel
*
_Nonnull
model
,
BOOL
success
)
{
...
...
@@ -235,6 +252,7 @@ static IOSADManager * manager = nil;
csjAd
.
showSuccessCallbackBlock
=
^
(
GYAdsTrackModel
*
_Nonnull
model
,
BOOL
success
)
{
[
weakSelf
blockResultShowWithData
:
model
andSuccess
:
YES
];
};
}
}
else
{
...
...
@@ -419,7 +437,7 @@ static IOSADManager * manager = nil;
}
//MARK: 处理
加载
的回调
//MARK: 处理
缓存
的回调
-
(
void
)
blockResultLoadWithData
:
(
GYAdsTrackModel
*
)
model
andSuccess
:
(
BOOL
)
success
{
WEAKSELF
;
...
...
UnityiOSFarm/Info.plist
View file @
6b2f4d0c
<
?xml
v
e
rsion="
1
.
0
"
e
n
c
o
d
ing="
ut
f
-
8
"?
>
<
?xml
v
e
rsion="
1
.
0
"
e
n
c
o
d
ing="
UT
F
-
8
"?
>
<
!
D
O
C
TYP
E
plist
PU
B
LI
C
"-//
A
ppl
e
//
D
T
D
PLIST
1
.
0
//
E
N"
"http://www.
a
ppl
e
.
c
om/
D
T
D
s/Prop
e
rtyList-
1
.
0
.
d
t
d
"
>
<
plist
v
e
rsion="
1
.
0
"
>
<
d
i
c
t
>
<
k
e
y
>
CADisableMinimumFrameDuration
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
CFBundleAllowMixedLocalizations
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
CFBundleDevelopmentRegion
<
/k
e
y
>
<
string
>
en
<
/string
>
<
k
e
y
>
CFBundleDisplayName
<
/k
e
y
>
<
string
>
LuckFarm-V2
<
/string
>
<
k
e
y
>
CFBundleExecutable
<
/k
e
y
>
<
string
>
$
{
EXECUTABLE_NAME
}<
/string
>
<
k
e
y
>
CFBundleIdentifier
<
/k
e
y
>
<
string
>
$
{
PRODUCT_BUNDLE_IDENTIFIER
}<
/string
>
<
k
e
y
>
CFBundleInfoDictionaryVersion
<
/k
e
y
>
<
string
>
6.0
<
/string
>
<
k
e
y
>
CFBundleName
<
/k
e
y
>
<
string
>
$
{
PRODUCT_NAME
}<
/string
>
<
k
e
y
>
CFBundlePackageType
<
/k
e
y
>
<
string
>
APPL
<
/string
>
<
k
e
y
>
CFBundleShortVersionString
<
/k
e
y
>
<
string
>
1.0.0
<
/string
>
<
k
e
y
>
CFBundleVersion
<
/k
e
y
>
<
string
>
100
<
/string
>
<
k
e
y
>
LSRequiresIPhoneOS
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
NSAppTransportSecurity
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
NSAllowsArbitraryLoads
<
/k
e
y
>
<
tru
e
/
>
<
/
d
i
c
t
>
<
k
e
y
>
UILaunchStoryboardName
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
ipad
<
/k
e
y
>
<
string
>
LaunchScreen-iPad
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
iphone
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
ipod
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UIPrerenderedIcon
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
UIRequiredDeviceCapabilities
<
/k
e
y
>
<
a
rr
a
y
>
<
string
>
arm64
<
/string
>
<
string
>
metal
<
/string
>
<
/
a
rr
a
y
>
<
k
e
y
>
UIRequiresFullScreen
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
UIRequiresPersistentWiFi
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
UIStatusBarHidden
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
UIStatusBarStyle
<
/k
e
y
>
<
string
>
UIStatusBarStyleDefault
<
/string
>
<
k
e
y
>
UISupportedInterfaceOrientations
<
/k
e
y
>
<
a
rr
a
y
>
<
string
>
UIInterfaceOrientationPortrait
<
/string
>
<
string
>
UIInterfaceOrientationPortraitUpsideDown
<
/string
>
<
string
>
UIInterfaceOrientationLandscapeRight
<
/string
>
<
string
>
UIInterfaceOrientationLandscapeLeft
<
/string
>
<
/
a
rr
a
y
>
<
k
e
y
>
Unity_LoadingActivityIndicatorStyle
<
/k
e
y
>
<
int
e
g
e
r
>
-1
<
/int
e
g
e
r
>
<
k
e
y
>
UnityBuilder
<
/k
e
y
>
<
string
>
12369893060913
<
/string
>
<
k
e
y
>
UnityCloudProjectID
<
/k
e
y
>
<
string
/
>
<
k
e
y
>
UnityCrashSubmissionURL
<
/k
e
y
>
<
string
/
>
<
/
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
CADisableMinimumFrameDuration
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
CFBundleAllowMixedLocalizations
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
CFBundleDevelopmentRegion
<
/k
e
y
>
<
string
>
en
<
/string
>
<
k
e
y
>
CFBundleDisplayName
<
/k
e
y
>
<
string
>
LuckFarm-V2
<
/string
>
<
k
e
y
>
CFBundleExecutable
<
/k
e
y
>
<
string
>
$
{
EXECUTABLE_NAME
}<
/string
>
<
k
e
y
>
CFBundleIdentifier
<
/k
e
y
>
<
string
>
$
{
PRODUCT_BUNDLE_IDENTIFIER
}<
/string
>
<
k
e
y
>
CFBundleInfoDictionaryVersion
<
/k
e
y
>
<
string
>
6.0
<
/string
>
<
k
e
y
>
CFBundleName
<
/k
e
y
>
<
string
>
$
{
PRODUCT_NAME
}<
/string
>
<
k
e
y
>
CFBundlePackageType
<
/k
e
y
>
<
string
>
APPL
<
/string
>
<
k
e
y
>
CFBundleShortVersionString
<
/k
e
y
>
<
string
>
$
(
MARKETING_VERSION
)
<
/string
>
<
k
e
y
>
CFBundleVersion
<
/k
e
y
>
<
string
>
$
(
CURRENT_PROJECT_VERSION
)
<
/string
>
<
k
e
y
>
LSRequiresIPhoneOS
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
NSAppTransportSecurity
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
NSAllowsArbitraryLoads
<
/k
e
y
>
<
tru
e
/
>
<
/
d
i
c
t
>
<
k
e
y
>
UILaunchStoryboardName
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
ipad
<
/k
e
y
>
<
string
>
LaunchScreen-iPad
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
iphone
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UILaunchStoryboardName
~
ipod
<
/k
e
y
>
<
string
>
LaunchScreen-iPhone
<
/string
>
<
k
e
y
>
UIPrerenderedIcon
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
UIRequiredDeviceCapabilities
<
/k
e
y
>
<
a
rr
a
y
>
<
string
>
arm64
<
/string
>
<
string
>
metal
<
/string
>
<
/
a
rr
a
y
>
<
k
e
y
>
UIRequiresFullScreen
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
UIRequiresPersistentWiFi
<
/k
e
y
>
<
fa
ls
e
/
>
<
k
e
y
>
UIStatusBarHidden
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
UIStatusBarStyle
<
/k
e
y
>
<
string
>
UIStatusBarStyleDefault
<
/string
>
<
k
e
y
>
UISupportedInterfaceOrientations
<
/k
e
y
>
<
a
rr
a
y
>
<
string
>
UIInterfaceOrientationPortrait
<
/string
>
<
string
>
UIInterfaceOrientationPortraitUpsideDown
<
/string
>
<
string
>
UIInterfaceOrientationLandscapeRight
<
/string
>
<
string
>
UIInterfaceOrientationLandscapeLeft
<
/string
>
<
/
a
rr
a
y
>
<
k
e
y
>
UnityBuilder
<
/k
e
y
>
<
string
>
12369893060913
<
/string
>
<
k
e
y
>
UnityCloudProjectID
<
/k
e
y
>
<
string
>
<
/string
>
<
k
e
y
>
UnityCrashSubmissionURL
<
/k
e
y
>
<
string
><
/string
>
<
k
e
y
>
Unity_LoadingActivityIndicatorStyle
<
/k
e
y
>
<
int
e
g
e
r
>
-1
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/plist
>
UnityiOSFarm/Unity-iPhone.xcodeproj/project.pbxproj
View file @
6b2f4d0c
...
...
@@ -305,7 +305,7 @@
1B1A4CCCB1084E548EEFC2D4
/* Generics1.cpp */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
name
=
Generics1.cpp
;
path
=
Classes/Native/Generics1.cpp
;
sourceTree
=
SOURCE_ROOT
;
};
1B8E44109DD6ADA987946565
/* UnityEngine.AnimationModule_CodeGen.c */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.c.c
;
name
=
UnityEngine.AnimationModule_CodeGen.c
;
path
=
Classes/Native/UnityEngine.AnimationModule_CodeGen.c
;
sourceTree
=
SOURCE_ROOT
;
};
1D30AB110D05D00D00671497
/* Foundation.framework */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
wrapper.framework
;
name
=
Foundation.framework
;
path
=
System/Library/Frameworks/Foundation.framework
;
sourceTree
=
SDKROOT
;
};
1D6058910D05DD3D006BFB54
/*
Unity-Target-New.app */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.application
;
includeInIndex
=
0
;
name
=
"Unity-Target-New.app"
;
path
=
nongchang.app
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
1D6058910D05DD3D006BFB54
/*
nongchang.app */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.application
;
includeInIndex
=
0
;
path
=
nongchang.app
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
1DB749B1B2C5FD8AD3CAE982
/* mscorlib5.cpp */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
name
=
mscorlib5.cpp
;
path
=
Classes/Native/mscorlib5.cpp
;
sourceTree
=
SOURCE_ROOT
;
};
1E7D4AEB83A8232649847B2B
/* UnityEngine.ImageConversionModule.cpp */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
name
=
UnityEngine.ImageConversionModule.cpp
;
path
=
Classes/Native/UnityEngine.ImageConversionModule.cpp
;
sourceTree
=
SOURCE_ROOT
;
};
2131424DADC29BD6D3764D17
/* GenericMethods2.cpp */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
sourcecode.cpp.cpp
;
name
=
GenericMethods2.cpp
;
path
=
Classes/Native/GenericMethods2.cpp
;
sourceTree
=
SOURCE_ROOT
;
};
...
...
@@ -762,7 +762,7 @@
19C28FACFE9D520D11CA2CBB
/* Products */
=
{
isa
=
PBXGroup
;
children
=
(
1D6058910D05DD3D006BFB54
/*
Unity-Target-New
.app */
,
1D6058910D05DD3D006BFB54
/*
nongchang
.app */
,
5623C57317FDCB0800090B9E
/* Unity-iPhone Tests.xctest */
,
9D25AB9D213FB47800354C27
/* UnityFramework.framework */
,
);
...
...
@@ -1044,7 +1044,7 @@
);
name
=
"Unity-iPhone"
;
productName
=
"iPhone-target"
;
productReference
=
1D6058910D05DD3D006BFB54
/*
Unity-Target-New
.app */
;
productReference
=
1D6058910D05DD3D006BFB54
/*
nongchang
.app */
;
productType
=
"com.apple.product-type.application"
;
};
5623C57217FDCB0800090B9E
/* Unity-iPhone Tests */
=
{
...
...
@@ -1431,6 +1431,7 @@
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Distribution"
;
COPY_PHASE_STRIP
=
NO
;
CURRENT_PROJECT_VERSION
=
103
;
DEVELOPMENT_TEAM
=
""
;
GCC_DYNAMIC_NO_PIC
=
NO
;
GCC_ENABLE_CPP_EXCEPTIONS
=
NO
;
...
...
@@ -1440,6 +1441,7 @@
IPHONEOS_DEPLOYMENT_TARGET
=
11.0
;
LD_GENERATE_MAP_FILE
=
YES
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
1.0.2
;
ONLY_ACTIVE_ARCH
=
YES
;
OTHER_CFLAGS
=
(
"$(inherited)"
,
...
...
@@ -1476,12 +1478,14 @@
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Distribution"
;
COPY_PHASE_STRIP
=
YES
;
CURRENT_PROJECT_VERSION
=
103
;
DEVELOPMENT_TEAM
=
""
;
GCC_ENABLE_CPP_EXCEPTIONS
=
NO
;
INFOPLIST_FILE
=
Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
11.0
;
LD_GENERATE_MAP_FILE
=
YES
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
1.0.2
;
ONLY_ACTIVE_ARCH
=
NO
;
OTHER_CFLAGS
=
(
"$(inherited)"
,
...
...
@@ -1636,6 +1640,7 @@
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Distribution"
;
COPY_PHASE_STRIP
=
YES
;
CURRENT_PROJECT_VERSION
=
103
;
DEBUG_INFORMATION_FORMAT
=
dwarf
;
DEVELOPMENT_TEAM
=
""
;
GCC_ENABLE_CPP_EXCEPTIONS
=
NO
;
...
...
@@ -1643,6 +1648,7 @@
IPHONEOS_DEPLOYMENT_TARGET
=
11.0
;
LD_GENERATE_MAP_FILE
=
YES
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
1.0.2
;
ONLY_ACTIVE_ARCH
=
YES
;
OTHER_CFLAGS
=
(
"$(inherited)"
,
...
...
@@ -1745,12 +1751,14 @@
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"
=
"iPhone Distribution"
;
COPY_PHASE_STRIP
=
YES
;
CURRENT_PROJECT_VERSION
=
103
;
DEVELOPMENT_TEAM
=
""
;
GCC_ENABLE_CPP_EXCEPTIONS
=
NO
;
INFOPLIST_FILE
=
Info.plist
;
IPHONEOS_DEPLOYMENT_TARGET
=
11.0
;
LD_GENERATE_MAP_FILE
=
YES
;
LD_RUNPATH_SEARCH_PATHS
=
"$(inherited) @executable_path/Frameworks"
;
MARKETING_VERSION
=
1.0.2
;
ONLY_ACTIVE_ARCH
=
YES
;
OTHER_CFLAGS
=
(
"$(inherited)"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment