Skip to content

Commit cf4e30a

Browse files
committed
firebase
1 parent f5a3b29 commit cf4e30a

File tree

4 files changed

+53
-0
lines changed

4 files changed

+53
-0
lines changed

.idea/vcs.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'com.android.application'
33
id 'kotlin-android'
4+
id 'com.google.gms.google-services'
45
}
56

67
android {
@@ -42,4 +43,7 @@ dependencies {
4243
testImplementation 'junit:junit:4.+'
4344
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4445
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
46+
47+
implementation platform('com.google.firebase:firebase-bom:26.2.0')
48+
implementation 'com.google.firebase:firebase-analytics-ktx'
4549
}

app/google-services.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"project_info": {
3+
"project_number": "1005066125699",
4+
"project_id": "workshop1-3ebbf",
5+
"storage_bucket": "workshop1-3ebbf.appspot.com"
6+
},
7+
"client": [
8+
{
9+
"client_info": {
10+
"mobilesdk_app_id": "1:1005066125699:android:23cc083f283be702a7f6b6",
11+
"android_client_info": {
12+
"package_name": "me.ebraheem.workshop"
13+
}
14+
},
15+
"oauth_client": [
16+
{
17+
"client_id": "1005066125699-vejhe4mb2avos206a2ns93sk4ivlq0lb.apps.googleusercontent.com",
18+
"client_type": 1,
19+
"android_info": {
20+
"package_name": "me.ebraheem.workshop",
21+
"certificate_hash": "6e7f2e9c47068d0d47b0f588a261d848f4801426"
22+
}
23+
},
24+
{
25+
"client_id": "1005066125699-t860o1p81dpc87td4ls4ip5c7581vtqb.apps.googleusercontent.com",
26+
"client_type": 3
27+
}
28+
],
29+
"api_key": [
30+
{
31+
"current_key": "AIzaSyBoEt0dS_SJevS8-MR11wFXwDTkjlKxUqI"
32+
}
33+
],
34+
"services": {
35+
"appinvite_service": {
36+
"other_platform_oauth_client": [
37+
{
38+
"client_id": "1005066125699-t860o1p81dpc87td4ls4ip5c7581vtqb.apps.googleusercontent.com",
39+
"client_type": 3
40+
}
41+
]
42+
}
43+
}
44+
}
45+
],
46+
"configuration_version": "1"
47+
}

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ buildscript {
1111

1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files
14+
classpath 'com.google.gms:google-services:4.3.4'
1415
}
1516
}
1617

0 commit comments

Comments
 (0)