Skip to content

Commit daecc66

Browse files
committed
Use v4.2.7
1 parent 121f62b commit daecc66

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
Version 4.2.7 *(2017-08-06)*
5+
----------------------------
6+
* Introduce `setVideoRecordingFloatingButtonCorner` to change the position of the screen recording floating button
7+
* Fix mic remains muted after screen recording
8+
* Remove `No known package when getting name for resource number 0xffffffff` warning while collecting view hierarchy
9+
* Fix user attributes issue with crash reporting
10+
11+
412
Version 4.2.6 *(2017-07-21)*
513
----------------------------
614
* Increase the length of InstabugLog to 10K

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
6161
// compile 'io.reactivex:rxjava:1.0.13'
6262
// compile 'io.reactivex:rxandroid:1.0.1'
63-
compile('com.instabug.library:instabug:4.2.6') {
63+
compile('com.instabug.library:instabug:4.2.7') {
6464
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
6565
// exclude group: 'io.reactivex'
6666

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@
5959
</receiver>
6060

6161
<service
62-
android:name=".gcm.InstabugGCMListenerService"
62+
android:name="com.example.instabug.gcm.InstabugGCMListenerService"
6363
android:exported="false">
6464
<intent-filter>
6565
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
6666
</intent-filter>
6767
</service>
6868
<service
69-
android:name="gcm.InstabugGCMListenerService"
69+
android:name="com.example.instabug.gcm.InstabugInstanceIDListenerService"
7070
android:exported="false">
7171
<intent-filter>
7272
<action android:name="com.google.android.gms.iid.InstanceID" />
7373
</intent-filter>
7474
</service>
75-
<service android:name=".gcm.RegistrationIntentService"/>
75+
<service android:name="com.example.instabug.gcm.RegistrationIntentService"/>
7676
</application>
7777
</manifest>

app/src/main/java/com/example/instabug/SampleApplication.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,22 @@ public void onCreate() {
2727

2828
//adding some customizations
2929
Instabug.setEmailFieldRequired(false);
30-
Instabug.setFloatingButtonOffsetFromTop(400);
30+
//Choosing instabug theme
3131
Instabug.setTheme(InstabugColorTheme.InstabugColorThemeLight);
32+
//Choosing type of attachments allowed
33+
//1. initial screenshot, 2. extra screenshot, 3. image from gallery, 4. voice note
34+
//5. screen record
3235
Instabug.setAttachmentTypesEnabled(true, true, true, true, true);
36+
//For setting instabug bug intro message enabled or disabled
3337
Instabug.setIntroMessageEnabled(false);
3438

35-
// TODO the following are 3 acceptable ways to force Locale in Instabug (last one
36-
Instabug.setLocale(new Locale(InstabugLocale.SIMPLIFIED_CHINESE.getCode(), InstabugLocale
37-
.SIMPLIFIED_CHINESE.getCountry()));
39+
// TODO the following are 3 acceptable ways to force Locale in Instabug (last one is the only 1 applied)
40+
Instabug.setLocale(new Locale(InstabugLocale.SIMPLIFIED_CHINESE.getCode(),
41+
InstabugLocale.SIMPLIFIED_CHINESE.getCountry()));
3842
Instabug.setLocale(new Locale(InstabugLocale.FRENCH.getCode()));
3943
Instabug.setLocale(Locale.GERMAN);
44+
45+
//To show instabug debug logs if necessary
4046
Instabug.setDebugEnabled(true);
4147

4248
//Settings custom strings to replace instabug's strings

0 commit comments

Comments
 (0)