-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
57 lines (41 loc) · 1.65 KB
/
.env.example
File metadata and controls
57 lines (41 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# The bundle identifier of your app
FASTLANE_APP_IDENTIFIER=club.ntut.tattoo
# Shared credentials repository (iOS match + Android signing + Firebase configs)
# See tool/credentials.dart for details
MATCH_GIT_URL=
MATCH_GIT_BRANCH=main
# Basic Authorization header value for accessing the credentials Git repository
# Generate with: echo -n your_github_username:your_personal_access_token | base64
MATCH_GIT_BASIC_AUTHORIZATION=
# Password for encrypting/decrypting signing credentials (shared by both platforms)
MATCH_PASSWORD=
# Should upload to public tester groups (TestFlight and Firebase App Distribution)
PUBLIC_TESTERS=false
# iOS Configuration
# -----------------
# Apple Developer account email
FASTLANE_APPLE_ID=
# Apple Developer Team ID (e.g., G582M7KCHL)
FASTLANE_TEAM_ID=
# App Store Connect API Key (for TestFlight uploads)
# Create at: https://appstoreconnect.apple.com/access/integrations/api
# Key ID from App Store Connect (e.g., ABC123XYZ)
APP_STORE_CONNECT_API_KEY_KEY_ID=
# Issuer ID from App Store Connect Keys page (UUID format)
APP_STORE_CONNECT_API_KEY_ISSUER_ID=
# Base64 encoded content of the .p8 file
# Generate with: base64 -i AuthKey_${APP_STORE_CONNECT_API_KEY_KEY_ID}.p8
APP_STORE_CONNECT_API_KEY_KEY=
# Android Configuration
# ---------------------
# Path to Android SDK
ANDROID_HOME=/path/to/android/sdk
# Firebase App ID for Android (from Firebase Console > Project Settings)
# Format: 1:1234567890:android:abc123def456
FIREBASEAPPDISTRO_APP=
# Build customization (Optional)
# -----------------------------
# Custom suffix for version name (e.g., "alpha", "beta")
VERSION_SUFFIX=debug
# Custom build number (integer)
BUILD_NUMBER=1