Skip to content

Commit 8f2abf0

Browse files
author
hussienalrubaye
committed
online tic tac toy
1 parent 6316a8d commit 8f2abf0

File tree

8 files changed

+202
-246
lines changed

8 files changed

+202
-246
lines changed

TicTacToyGame/TicTacToyOnline/app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
compileSdkVersion 25
55
buildToolsVersion "25.0.3"
66
defaultConfig {
7-
applicationId "com.hussein.tictactoyonline"
7+
applicationId "com.alrubaye.tictactoyonline"
88
minSdkVersion 14
99
targetSdkVersion 25
1010
versionCode 1
@@ -35,5 +35,4 @@ dependencies {
3535

3636

3737

38-
3938
apply plugin: 'com.google.gms.google-services'

TicTacToyGame/TicTacToyOnline/app/google-services.json

Lines changed: 11 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
{
22
"project_info": {
3-
"project_number": "369846450842",
4-
"firebase_url": "https://androiddemotest-e347b.firebaseio.com",
5-
"project_id": "androiddemotest-e347b",
6-
"storage_bucket": "androiddemotest-e347b.appspot.com"
3+
"project_number": "630884553037",
4+
"firebase_url": "https://tictactoyonline.firebaseio.com",
5+
"project_id": "tictactoyonline",
6+
"storage_bucket": "tictactoyonline.appspot.com"
77
},
88
"client": [
99
{
1010
"client_info": {
11-
"mobilesdk_app_id": "1:369846450842:android:875abf9254040a6a",
11+
"mobilesdk_app_id": "1:630884553037:android:e7003e3e0ddd0f81",
1212
"android_client_info": {
13-
"package_name": "com.example.hussienalrubaye.androiddemotest"
13+
"package_name": "com.alrubaye.tictactoyonline"
1414
}
1515
},
1616
"oauth_client": [
1717
{
18-
"client_id": "369846450842-g6ufjar7n3u4ujv1u4ptrgbbg0ocvgnt.apps.googleusercontent.com",
18+
"client_id": "630884553037-ut5eq38480915ob89v1scls26lpk4d6e.apps.googleusercontent.com",
1919
"client_type": 1,
2020
"android_info": {
21-
"package_name": "com.example.hussienalrubaye.androiddemotest",
21+
"package_name": "com.alrubaye.tictactoyonline",
2222
"certificate_hash": "76a07b52241638f10fb6d3cf8f6b855f929169dc"
2323
}
2424
},
2525
{
26-
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
26+
"client_id": "630884553037-ie1rin8q242h9h26le92nqv7h6mf1brd.apps.googleusercontent.com",
2727
"client_type": 3
2828
}
2929
],
3030
"api_key": [
3131
{
32-
"current_key": "AIzaSyAwxZOuKGCy_IPtIchuIgAzukaOAxAZ7_U"
32+
"current_key": "AIzaSyDeGp50LT5V1lGPQkOP4nEadC0gCA4y27A"
3333
}
3434
],
3535
"services": {
@@ -40,51 +40,7 @@
4040
"status": 2,
4141
"other_platform_oauth_client": [
4242
{
43-
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
44-
"client_type": 3
45-
}
46-
]
47-
},
48-
"ads_service": {
49-
"status": 2
50-
}
51-
}
52-
},
53-
{
54-
"client_info": {
55-
"mobilesdk_app_id": "1:369846450842:android:663c8b9a16cb6183",
56-
"android_client_info": {
57-
"package_name": "com.hussein.tictactoyonline"
58-
}
59-
},
60-
"oauth_client": [
61-
{
62-
"client_id": "369846450842-tbd32qs3nfn7bju4r9bhp2lor0vfihkv.apps.googleusercontent.com",
63-
"client_type": 1,
64-
"android_info": {
65-
"package_name": "com.hussein.tictactoyonline",
66-
"certificate_hash": "76a07b52241638f10fb6d3cf8f6b855f929169dc"
67-
}
68-
},
69-
{
70-
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
71-
"client_type": 3
72-
}
73-
],
74-
"api_key": [
75-
{
76-
"current_key": "AIzaSyAwxZOuKGCy_IPtIchuIgAzukaOAxAZ7_U"
77-
}
78-
],
79-
"services": {
80-
"analytics_service": {
81-
"status": 1
82-
},
83-
"appinvite_service": {
84-
"status": 2,
85-
"other_platform_oauth_client": [
86-
{
87-
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
43+
"client_id": "630884553037-ie1rin8q242h9h26le92nqv7h6mf1brd.apps.googleusercontent.com",
8844
"client_type": 3
8945
}
9046
]

TicTacToyGame/TicTacToyOnline/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,9 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.hussein.tictactoyonline">
44

5-
<uses-permission android:name="android.permission.INTERNET" />
6-
7-
<application
8-
android:allowBackup="true"
9-
android:icon="@mipmap/ic_launcher"
10-
android:label="@string/app_name"
11-
android:roundIcon="@mipmap/ic_launcher_round"
12-
android:supportsRtl="true"
13-
android:theme="@style/AppTheme">
5+
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher"
6+
android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round"
7+
android:supportsRtl="true" android:theme="@style/AppTheme">
148
<activity android:name=".MainActivity">
159
<intent-filter>
1610
<action android:name="android.intent.action.MAIN" />

0 commit comments

Comments
 (0)