Questions tagged [instabug]

In-App Feedback and Bug Reporting for both iOS and Android apps.

Instabug is platform for mobile developers to help them communicate with their users, collaborate with their team and build better apps. By integrating the SDK with 1 line of code, you'll allow your mobile users and beta testers to report bugs and send feedback directly from your app by just shaking their device.

Instabug captures a screenshot of the app and allows your users and testers to draw to highlight exactly where the bug is. Instabug also captures all the details you need; device, OS, connectivity, console logs and even tracks the user's steps. You can have this report forwarded to your favourite tracking tool; JIRA, Butbucket, Github or CRM; Zendesk, Desk.com, etc..

For more info: https://instabug.com

54 questions
1
vote
2 answers

DuplicateFileException When building ionic app for android

I'm trying to build my app for android, and ever since I updated my android-cordova to 6.2.3 I have not been able to build my app for android anymore. Rolling back to android-cordova 6.1.1 didn't help, I was unable to build again after the previous…
Nicholas Tsaoucis
  • 1,381
  • 2
  • 17
  • 39
1
vote
2 answers

Gradle build error: cannot find symbol for mInstabug.setUserName(username)

Having a background as web developer, I have recently started with app development in react-native, using android-studio and struck at this gradle build error, when I try to run command: react-native run-android it outputs this: cannot find…
Pavan Gangireddy
  • 417
  • 1
  • 3
  • 13
1
vote
1 answer

Initialize Instabug without showing hint prompt

I need to initialize Instabug in my Android application but do now want it to show the hint prompt saying "Shake your device etc." when user just opened the app. Instead I want to show that after user has already logged in. I initialize Instabug…
Andranik
  • 2,729
  • 1
  • 29
  • 45
1
vote
1 answer

Can I delay the instabug IntroDialog?

In my Application class I have this method, that I call on the onCreate of my Application: public void initInstabug() { try { instabug = new Instabug.Builder(this, "45c752889689ac2ae0840d11e2a5f628") …
rosu alin
  • 5,674
  • 11
  • 69
  • 150
1
vote
2 answers

Instabug map is not available in screenshot

This is the code where I add the map to instabug: Log.i("","entered here... map:" + mMap + "...." + mMapFragment.getView()); PSLocationCenter.getInstance().instabug.addMapView(mMapFragment.getView(), mMap); Where…
rosu alin
  • 5,674
  • 11
  • 69
  • 150
1
vote
1 answer

InstaBug, cannot resolve 'Builder'

Trying to implement InstaBug first time, however, when I initialize it, new Instabug.Builder(this, "XXXXXXXXXXXXXXXXXXXX") .setInvocationEvent(Instabug.IBGInvocationEvent.IBGInvocationEventShake) .build(); Android Studio…
OBX
  • 6,044
  • 7
  • 33
  • 77
1
vote
1 answer

java.lang.NoClassDefFoundError: com.instabug.library

I am getting crashes with this error 0-24 21:20:36.878 30082-30110/app.com.myapp E/AndroidRuntime: FATAL EXCEPTION: InstabugNetInit 10-24 21:20:36.878 30082-30110/app.com.myapp E/AndroidRuntime: Process: app.com.myapp, PID: 30082 10-24 21:20:36.878…
Romit M.
  • 898
  • 11
  • 28
1
vote
1 answer

instabug IBGInvocationEventTwoFingersSwipeLeft not work

Sorry for my english. I try use service instabug, they i try use IBGInvocationEventTwoFingersSwipeLeft but this is not successful. I try somthing like this: ParseAnalytics.trackAppOpenedInBackground(getIntent()); …
g8214435
  • 737
  • 2
  • 6
  • 19
1
vote
2 answers

Instabug, is it possible to deactivate the shake for feedback, if there is no internet access?

I have a networkStateReceiver, that checks if I have internet or not. If I do, I reinitiate instabug, if not, I want to deactivate. How can I do that? I tried just setting it as null, but it doesn't work. if(haveConnectedMobile ||…
rosu alin
  • 5,674
  • 11
  • 69
  • 150
0
votes
0 answers

How to build an Android sourcemap with React Native 0.69

I'm using Instabug for crash reports for my React Native project. I need to upload an Android sourcemap so the logs can be useful. I'm using React Native 0.69.1 and did my install via the react native docs. Instabug says to run this…
John Goodman
  • 1,058
  • 12
  • 14
0
votes
1 answer

Instabug: Disable user location tracking

My team uses the Instabug APK on Android (and iOS) and we'd like to disable user location tracking since we don't need it. I can't find anywhere how to do so. How does Instabug even track the user's location to begin with? Our app doesn't have any…
Stevie Kideckel
  • 1,928
  • 2
  • 17
  • 21
0
votes
1 answer

Problems integrating an SDK into flutter app

I'm trying to implement Instabug (crash analytics) into my android flutter app. I've tried installing from https://pub.dev/packages/instabug_flutter, and I'm not sure as to where I should be putting the new CustomFlutterApplication class. this is my…
jooliaju
  • 1
  • 1
0
votes
3 answers

How to integrate instabug SDK into flutter app

I'm trying to implement Instabug (crash analytics) into my android flutter app, and I'm confused as to where I should input this code into my project. Initialize Instabug in the onCreate() method of your Application subclass: Image of the step from…
jooliaju
  • 1
  • 1
0
votes
0 answers

Is there a way to disable React Native warnings in release mode?

I'm working on a React Native app that uses Instabug bug reporting. In the logs we capture React logs and warnings such as this. Instabug - REACT LOG: 2020-06-15 07:56:17.591 [info][tid:main][RCTBaseTextInputView.m:163] Native TextInput(some user…
Taylour
  • 43
  • 7
0
votes
1 answer

Instabug setStringToKey get default string values

I need to add some localization to the application I am working on, and since Instabug does not support the locale in question, I plan on writing my own translations. Instabug does provide the function setStringToKey, however I have not been able to…