Simulate full version through scheme arguments
This commit is contained in:
parent
c33e087f0c
commit
99da23de8e
|
@ -40,7 +40,12 @@ extension AppConstants {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static var isBetaFullVersion = false
|
static var isBetaFullVersion: Bool {
|
||||||
|
guard !ProcessInfo.processInfo.arguments.contains("FULL_VERSION") else {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
static var isMockVPN = false {
|
static var isMockVPN = false {
|
||||||
didSet {
|
didSet {
|
||||||
|
|
|
@ -93,6 +93,12 @@
|
||||||
ReferencedContainer = "container:Passepartout.xcodeproj">
|
ReferencedContainer = "container:Passepartout.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</BuildableProductRunnable>
|
</BuildableProductRunnable>
|
||||||
|
<CommandLineArguments>
|
||||||
|
<CommandLineArgument
|
||||||
|
argument = "FULL_VERSION"
|
||||||
|
isEnabled = "YES">
|
||||||
|
</CommandLineArgument>
|
||||||
|
</CommandLineArguments>
|
||||||
</LaunchAction>
|
</LaunchAction>
|
||||||
<ProfileAction
|
<ProfileAction
|
||||||
buildConfiguration = "Release"
|
buildConfiguration = "Release"
|
||||||
|
|
Loading…
Reference in New Issue