Files
OSGKeyboard/OSGKeyboardShared/Services/Tip/TipProduct.swift
T
Rocky 166019b384 feat: tip IAP, commercial GitHub Pages, and App Store screenshots
Add optional StoreKit support tip (features stay free), redesign the
landing page with zh/en + light/dark and product shots, and ship
iPhone/iPad/Mac App Store screenshot sets.
2026-07-12 11:00:57 +08:00

18 lines
588 B
Swift

// TipProduct.swift
// OSGKeyboard · Shared
//
// StoreKit product identifiers for optional voluntary tips.
// Tips are consumable IAP — they do not unlock features.
import Foundation
public enum TipProduct {
/// ¥28 voluntary support tip (Consumable). Must match App Store Connect Product ID.
public static let supportID = "ByRockyACoffee"
public static var allProductIDs: [String] { [supportID] }
/// UserDefaults key for optional UX: how many times the user tipped (not entitlements).
public static let supportCountDefaultsKey = "tipSupportPurchaseCount"
}