Skip to content

Commit c98f05c

Browse files
author
Mohamed Sobhy
committed
Specify minimum version of google-play-services that can be used + Fix styles.xml compilation bug
1 parent 1115068 commit c98f05c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ dependencies {
3232
testCompile 'junit:junit:4.12'
3333
compile 'com.android.support:multidex:1.0.1'
3434
compile 'com.jakewharton:butterknife:7.0.1'
35-
compile 'com.android.support:design:23.1.1'
36-
compile 'com.android.support:appcompat-v7:23.1.1'
37-
// TODO if you use a lower version than 8.4.0 you should uncomment the exclude line to avoid errors
35+
compile 'com.android.support:design:23.2.0'
36+
compile 'com.android.support:appcompat-v7:23.2.0'
37+
// TODO if you use a lower version than 8.4.0 (min is 7.5.0) you should uncomment the exclude line to avoid errors
3838
compile 'com.google.android.gms:play-services:8.4.0'
3939
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
4040
// compile 'io.reactivex:rxjava:1.0.13'
@@ -43,7 +43,7 @@ dependencies {
4343
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
4444
// exclude group: 'io.reactivex'
4545

46-
exclude module: 'appcompat-v7'
46+
exclude group: 'com.android.support'
4747
// TODO uncomment next line if you're facing compilation issue in build.gradle about gms different versions
4848
// exclude group: 'com.google.android.gms'
4949
}

app/src/main/res/values-v21/styles.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<resources>>
2-
1+
<resources>
32
<style name="AppTheme.NoActionBar">
43
<item name="windowActionBar">false</item>
54
<item name="windowNoTitle">true</item>

0 commit comments

Comments
 (0)