Skip to content

Commit 374e15a

Browse files
Fix InstabugNetworkReceiver crash
1 parent 66fcde5 commit 374e15a

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

plugin.xml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
44
xmlns:android="http://schemas.android.com/apk/res/android"
55
id="com.instabug.cordova.plugin"
6-
version="0.0.1">
6+
version="1.0.0">
77

88
<name>instabug-cordova</name>
99

@@ -47,17 +47,19 @@
4747
android:configChanges="keyboardHidden|orientation|screenSize" />
4848
<activity android:name="com.instabug.library.InstabugFeedbackActivity" />
4949

50-
<service android:name="com.instabug.library.InstabugSessionUploaderService"/>
51-
<service android:name="com.instabug.library.InstabugIssueUploaderService"/>
52-
<service android:name="com.instabug.library.InstabugMessageUploaderService"/>
53-
<service android:name="com.instabug.library.InstabugFeaturesFetcherService"/>
54-
<service android:name="com.instabug.library.gcm.InstabugGcmRegistrationIntentService"/>
50+
<service android:name="com.instabug.library.network.worker.uploader.InstabugSessionUploaderService" />
51+
<service android:name="com.instabug.library.network.worker.uploader.InstabugBugsUploaderService" />
52+
<service android:name="com.instabug.library.network.worker.uploader.InstabugCrashesUploaderService" />
53+
<service android:name="com.instabug.library.network.worker.uploader.InstabugMessageUploaderService" />
54+
<service android:name="com.instabug.library.network.worker.fetcher.InstabugFeaturesFetcherService" />
55+
<service android:name="com.instabug.library.network.worker.register.InstabugGcmRegistrationIntentService"/>
56+
<service android:name="com.instabug.library.internal.video.VideoProcessingService"/>
5557

56-
<receiver android:name="com.instabug.library.InstabugNetworkReceiver">
57-
<intent-filter>
58-
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
59-
</intent-filter>
60-
</receiver>
58+
<receiver android:name="com.instabug.library.network.InstabugNetworkReceiver">
59+
<intent-filter>
60+
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
61+
</intent-filter>
62+
</receiver>
6163

6264
</config-file>
6365

0 commit comments

Comments
 (0)