友盟 SDK 改为隐私同意后再初始化;宣传页标签新增滑块位移动画,超过 5 个时选中项自动滚动居中。 Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
417 B
Swift
18 lines
417 B
Swift
//
|
||
// UMengConfig.swift
|
||
// suixinkan
|
||
//
|
||
// Created by Codex on 2026/7/2.
|
||
//
|
||
|
||
import Foundation
|
||
|
||
/// 友盟 SDK 配置,真实 AppKey 后续在此处替换。
|
||
enum UMengConfig {
|
||
/// 友盟 iOS AppKey。保持为空时不会初始化友盟 SDK。
|
||
static let appKey = "6a470b81cbfa6959516c34d0"
|
||
|
||
/// 友盟渠道标识;nil 时友盟按 App Store 渠道处理。
|
||
static let channel: String? = nil
|
||
}
|