File tree Expand file tree Collapse file tree 3 files changed +7
-26
lines changed
src/main/java/com/example/instabug/ui Expand file tree Collapse file tree 3 files changed +7
-26
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,11 @@ dependencies {
32
32
compile ' com.jakewharton:butterknife:7.0.1'
33
33
compile ' com.android.support:design:23.1.1'
34
34
compile ' com.android.support:appcompat-v7:23.1.1'
35
- compile ' com.google.android.gms:play-services:8.3.0'
36
- compile(' com.instabug.library:instabugcompat:2.0-SNAPSHOT' ) {
35
+ // TODO if you use a lower version than 8.4.0 you should uncomment the exclude line to avoid errors
36
+ compile ' com.google.android.gms:play-services:8.4.0'
37
+ compile(' com.instabug.library:instabugcompat:2.0.1' ) {
37
38
exclude module : ' appcompat-v7'
38
- // if you're facing compilation issue in build.gradle about gms different versions
39
- exclude group : ' com.google.android.gms'
39
+ // TODO uncomment next line if you're facing compilation issue in build.gradle about gms different versions
40
+ // exclude group: 'com.google.android.gms'
40
41
}
41
42
}
Original file line number Diff line number Diff line change 9
9
import android .support .v4 .view .GravityCompat ;
10
10
import android .support .v4 .widget .DrawerLayout ;
11
11
import android .support .v7 .app .ActionBarDrawerToggle ;
12
+ import android .support .v7 .app .AppCompatActivity ;
12
13
import android .support .v7 .widget .Toolbar ;
13
14
import android .view .Menu ;
14
15
import android .view .MenuItem ;
18
19
19
20
import com .example .instabug .R ;
20
21
import com .instabug .library .Instabug ;
21
- import com .instabug .library .compat .InstabugActionBarActivity ;
22
22
23
23
import butterknife .Bind ;
24
24
import butterknife .ButterKnife ;
25
25
import butterknife .OnClick ;
26
26
27
- public class MainActivity extends InstabugActionBarActivity
27
+ public class MainActivity extends AppCompatActivity
28
28
implements NavigationView .OnNavigationItemSelectedListener {
29
29
30
30
@ Bind (R .id .drawer_layout )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments