// Token: 0x0601562A RID: 87594 RVA: 0x0056CCD8 File Offset: 0x0056AED8 public static void InitWithAppId(string appId) { if (BuglyAgent.IsInitialized) { BuglyAgent.DebugLog(null, "BuglyAgent has already been initialized.", new object[0]); return; } if (string.IsNullOrEmpty(appId)) { return; } BuglyAgent.InitBuglyAgent(appId); BuglyAgent.DebugLog(null, "Initialized with app id: {0}", new object[] { appId }); BuglyAgent._RegisterExceptionHandler(); }