There was an error while loading. Please reload this page.
1 parent d1a00e0 commit 8e7b5cbCopy full SHA for 8e7b5cb
scripts/decrypt_project_info.py
@@ -18,17 +18,22 @@
18
import plistlib
19
import json
20
21
+print("file is called")
22
+
23
24
# Check if the PLIST file path was provided as a command-line argument
25
if len(sys.argv) != 2:
26
print("Usage: python read_plist.py <path_to_googleService-info.plist>")
27
sys.exit(1)
28
29
plist_file_path = sys.argv[1]
30
+print("plist_file_path"+plist_file_path)
31
32
# Read the PLIST file
33
try:
34
with open(plist_file_path, 'rb') as plist_file:
35
plist_data = plistlib.load(plist_file)
36
+ print("opened!")
37
38
# Extract the 'project_id' field only for confidentiality
39
project_id = plist_data.get('PROJECT_ID')
0 commit comments