15 lines
459 B
Plaintext
15 lines
459 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 = "YOUR_REVENUECAT_API_KEY_HERE"
|
|
}
|