SelfieCam/SelfieCam/Configuration/Secrets.swift.template
Matt Bruce c153b16593 using loal swift paywall
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2026-02-03 16:11:12 -06:00

21 lines
581 B
Plaintext

// Secrets.swift
// ⚠️ DO NOT COMMIT THE ACTUAL Secrets.swift FILE TO VERSION CONTROL
//
// Copy this file to Secrets.swift and fill in your actual values.
// Secrets.swift is gitignored.
import Foundation
enum Secrets {
/// RevenueCat API Key
/// - Debug: Use your test/sandbox API key (starts with "test_")
/// - Release: Use your production API key (starts with "appl_")
static let revenueCatAPIKey: String = {
#if DEBUG
return "test_YOUR_TEST_KEY_HERE"
#else
return "appl_YOUR_PRODUCTION_KEY_HERE"
#endif
}()
}