Commit 93b8b16 1 parent 4a55860 commit 93b8b16 Copy full SHA for 93b8b16
File tree 4 files changed +18
-7
lines changed
4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 56
56
57
57
# Keystore files
58
58
* .jks
59
- .signing /
59
+ .signing /
60
+ app /google-services.json
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ apply plugin: 'realm-android'
3
3
apply plugin : ' me.tatarka.retrolambda'
4
4
5
5
android {
6
- compileSdkVersion 24
6
+ compileSdkVersion 25
7
7
buildToolsVersion " 25.0"
8
8
defaultConfig {
9
9
applicationId " io.havoc.todo"
10
10
minSdkVersion 21
11
- targetSdkVersion 24
11
+ targetSdkVersion 25
12
12
versionCode 1
13
13
versionName " 1.0"
14
14
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -33,8 +33,9 @@ dependencies {
33
33
})
34
34
35
35
// Android Support Libraries
36
- compile ' com.android.support:appcompat-v7:24.2.1'
37
- compile ' com.android.support:design:24.2.1'
36
+ compile ' com.android.support:appcompat-v7:25.0.1'
37
+ compile ' com.android.support:design:25.0.1'
38
+ compile ' com.google.android.gms:play-services-auth:10.0.0'
38
39
// compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha9'
39
40
40
41
// Advanced RecyclerView
@@ -77,3 +78,6 @@ dependencies {
77
78
// Testing
78
79
testCompile ' junit:junit:4.12'
79
80
}
81
+
82
+ // Lord only knows why this has to be added at the bottom
83
+ apply plugin : ' com.google.gms.google-services'
Original file line number Diff line number Diff line change 10
10
android : paddingTop =" @dimen/activity_vertical_margin"
11
11
tools : context =" io.havoc.todo.view.activities.LoginActivity" >
12
12
13
+ <com .google.android.gms.common.SignInButton
14
+ android : id =" @+id/sign_in_button"
15
+ android : layout_width =" wrap_content"
16
+ android : layout_height =" wrap_content"
17
+ android : layout_centerHorizontal =" true"
18
+ android : layout_centerVertical =" true" />
19
+
13
20
</RelativeLayout >
Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ buildscript {
9
9
classpath ' com.android.tools.build:gradle:2.2.2'
10
10
classpath " io.realm:realm-gradle-plugin:2.0.2"
11
11
classpath ' me.tatarka:gradle-retrolambda:3.3.0'
12
- // NOTE: Do not place your application dependencies here; they belong
13
- // in the individual module build.gradle files
12
+ classpath ' com.google.gms:google-services:3.0.0'
14
13
}
15
14
}
16
15
You can’t perform that action at this time.
0 commit comments