12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //
- // KMLightMemberConfig.swift
- // PDF Reader Pro
- //
- // Created by lizhe on 2023/2/26.
- //
- import Cocoa
- class KMLightMemberConfig: NSObject {
- var isDebug: Bool = true
-
- // 会员
- var kServerURL: String {
- get {
- #if DEBUG
- if self.isDebug {
- // 测试服务器
- return "http://139.196.160.101:8081"
- } else {
- // 正式服务器
- return "https://pdfmaster.pdfreaderpro.com"
- }
- #else
- //正式服务器
- return "https://pdfmaster.pdfreaderpro.com"
- #endif
-
- }
- }
-
- // 网页跳转
- var kStoreServerURL: String {
- get {
- #if DEBUG
- if self.isDebug {
- // 测试服务器
- return "http://test-pdf-pro.kdan.cn:3021"
- } else {
- // 正式服务器
- return "https://www.pdfreaderpro.com"
- }
- #else
- // 正式服务器
- return "https://www.pdfreaderpro.com"
- #endif
-
- }
- }
-
- //苹果内购地址
- var kAppleServerURL: String {
- get {
- #if DEBUG
- if self.isDebug {
- // 测试服务器
- return "https://sandbox.itunes.apple.com/verifyReceipt"
- } else {
- // 正式服务器
- return "https://buy.itunes.apple.com/verifyReceipt"
- }
- #else
- return "https://buy.itunes.apple.com/verifyReceipt"
- #endif
-
- }
- }
-
- //分包下载地址
- var kResourceServerURL: String {
- get{
- #if DEBUG
- if self.isDebug {
- // 测试服务器
- return "http://test-pdf-pro.kdan.cn:3021/downloads/DocumentAI.xml"
- } else {
- // 正式服务器
- return "https://www.pdfreaderpro.com/downloads/DocumentAI.xml"
- }
- #else
- return "https://www.pdfreaderpro.com/downloads/DocumentAI.xml"
- #endif
- }
- }
- }
|