We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c9a33 commit 5d88fa5Copy full SHA for 5d88fa5
AndroidSDK/src/com/leanplum/internal/LeanplumManifestHelper.java
@@ -78,7 +78,10 @@ public class LeanplumManifestHelper {
78
/**
79
* Gets application components from AndroidManifest.xml file.
80
*/
81
- private static void parseManifestNodeChildren() {
+ private static synchronized void parseManifestNodeChildren() {
82
+ if (manifestData != null) {
83
+ return;
84
+ }
85
manifestData = new ManifestData();
86
byte[] manifestXml = getByteArrayOfManifest();
87
Document manifestDocument = getManifestDocument(manifestXml);
0 commit comments