Skip to content

Commit 0ec32c1

Browse files
committed
chore: fix ci
1 parent af6865b commit 0ec32c1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/SampleApp/fastlane/Fastfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ output_ipa_name = "reactnativesampleapp.ipa"
1515

1616
# Android Platform Configuration
1717
package_name = 'io.getstream.reactnative.sampleapp'
18-
firebase_app_id = "1:674907137625:android:cba499ae72f6ee4bd7f348"
19-
firebase_credentials_file = "./credentials/firebase-credentials.json"
2018
output_apk_name = "reactnativesampleapp.apk"
2119
apk_path = "#{build_output_directory}/#{output_apk_name}"
2220

@@ -135,8 +133,8 @@ platform :android do
135133
if deploy
136134
# Upload to Firebase App Distribution
137135
firebase_app_distribution(
138-
app: firebase_app_id,
139-
service_credentials_file: firebase_credentials_file,
136+
app: ENV.fetch('ANDROID_FIREBASE_APP_ID', nil),
137+
service_credentials_json: ENV.fetch('FIREBASE_CREDENTIALS_JSON', nil),
140138
android_artifact_path: apk_path,
141139
android_artifact_type: "APK",
142140
groups: "stream-testers"

0 commit comments

Comments
 (0)