Skip to content

Commit 8e7b5cb

Browse files
committed
Update decrypt_project_info.py
1 parent d1a00e0 commit 8e7b5cb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/decrypt_project_info.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,22 @@
1818
import plistlib
1919
import json
2020

21+
print("file is called")
22+
23+
2124
# Check if the PLIST file path was provided as a command-line argument
2225
if len(sys.argv) != 2:
2326
print("Usage: python read_plist.py <path_to_googleService-info.plist>")
2427
sys.exit(1)
2528

2629
plist_file_path = sys.argv[1]
30+
print("plist_file_path"+plist_file_path)
2731

2832
# Read the PLIST file
2933
try:
3034
with open(plist_file_path, 'rb') as plist_file:
3135
plist_data = plistlib.load(plist_file)
36+
print("opened!")
3237

3338
# Extract the 'project_id' field only for confidentiality
3439
project_id = plist_data.get('PROJECT_ID')

0 commit comments

Comments
 (0)