mayo-firebase-config 1.2.12 → 1.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,12 +34,12 @@ public class FirebaseConfigExtractorModule extends ReactContextBaseJavaModule {
|
|
34
34
|
|
35
35
|
@ReactMethod
|
36
36
|
public void extractConfig(Promise promise) {
|
37
|
+
Log.d(NAME, "Starting to extract Firebase config.");
|
37
38
|
try {
|
38
39
|
// Use AssetManager to read the google-services.json file from the assets folder
|
39
40
|
AssetManager assetManager = getReactApplicationContext().getAssets();
|
41
|
+
Log.d(NAME, "Attempting to open google-services.json file.");
|
40
42
|
InputStream input = assetManager.open("google-services.json");
|
41
|
-
|
42
|
-
// Log file opened successfully
|
43
43
|
Log.d(NAME, "google-services.json file opened successfully.");
|
44
44
|
|
45
45
|
// Convert InputStream to String
|