We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21b7a78 commit 66814e3Copy full SHA for 66814e3
1 file changed
android/src/main/java/com/bugfender/react/RNBugfenderModule.java
@@ -22,11 +22,21 @@ public String getName() {
22
return "RNBugfender";
23
}
24
25
+ @ReactMethod
26
+ public void overrideDeviceName(String deviceName) {
27
+ Bugfender.overrideDeviceName(deviceName);
28
+ }
29
+
30
@ReactMethod
31
public void init(String apiKey, boolean debug) {
32
Bugfender.init(getReactApplicationContext(), apiKey, debug);
33
34
35
36
+ public void setBaseUrl(String baseUrl) {
37
+ Bugfender.setBaseUrl(apiUrl);
38
39
40
41
public void setApiUrl(String apiUrl) {
42
Bugfender.setApiUrl(apiUrl);
0 commit comments