21 lines
581 B
Plaintext
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
|
|
}()
|
|
}
|