Skip to content

Commit

Permalink
online tic tac toy
Browse files Browse the repository at this point in the history
  • Loading branch information
hussienalrubaye committed May 6, 2017
1 parent 6316a8d commit 8f2abf0
Show file tree
Hide file tree
Showing 8 changed files with 202 additions and 246 deletions.
3 changes: 1 addition & 2 deletions TicTacToyGame/TicTacToyOnline/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.hussein.tictactoyonline"
applicationId "com.alrubaye.tictactoyonline"
minSdkVersion 14
targetSdkVersion 25
versionCode 1
Expand Down Expand Up @@ -35,5 +35,4 @@ dependencies {




apply plugin: 'com.google.gms.google-services'
66 changes: 11 additions & 55 deletions TicTacToyGame/TicTacToyOnline/app/google-services.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"project_info": {
"project_number": "369846450842",
"firebase_url": "https://androiddemotest-e347b.firebaseio.com",
"project_id": "androiddemotest-e347b",
"storage_bucket": "androiddemotest-e347b.appspot.com"
"project_number": "630884553037",
"firebase_url": "https://tictactoyonline.firebaseio.com",
"project_id": "tictactoyonline",
"storage_bucket": "tictactoyonline.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:369846450842:android:875abf9254040a6a",
"mobilesdk_app_id": "1:630884553037:android:e7003e3e0ddd0f81",
"android_client_info": {
"package_name": "com.example.hussienalrubaye.androiddemotest"
"package_name": "com.alrubaye.tictactoyonline"
}
},
"oauth_client": [
{
"client_id": "369846450842-g6ufjar7n3u4ujv1u4ptrgbbg0ocvgnt.apps.googleusercontent.com",
"client_id": "630884553037-ut5eq38480915ob89v1scls26lpk4d6e.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.example.hussienalrubaye.androiddemotest",
"package_name": "com.alrubaye.tictactoyonline",
"certificate_hash": "76a07b52241638f10fb6d3cf8f6b855f929169dc"
}
},
{
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
"client_id": "630884553037-ie1rin8q242h9h26le92nqv7h6mf1brd.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyAwxZOuKGCy_IPtIchuIgAzukaOAxAZ7_U"
"current_key": "AIzaSyDeGp50LT5V1lGPQkOP4nEadC0gCA4y27A"
}
],
"services": {
Expand All @@ -40,51 +40,7 @@
"status": 2,
"other_platform_oauth_client": [
{
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
"client_type": 3
}
]
},
"ads_service": {
"status": 2
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:369846450842:android:663c8b9a16cb6183",
"android_client_info": {
"package_name": "com.hussein.tictactoyonline"
}
},
"oauth_client": [
{
"client_id": "369846450842-tbd32qs3nfn7bju4r9bhp2lor0vfihkv.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.hussein.tictactoyonline",
"certificate_hash": "76a07b52241638f10fb6d3cf8f6b855f929169dc"
}
},
{
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyAwxZOuKGCy_IPtIchuIgAzukaOAxAZ7_U"
}
],
"services": {
"analytics_service": {
"status": 1
},
"appinvite_service": {
"status": 2,
"other_platform_oauth_client": [
{
"client_id": "369846450842-f0t69e4c4ocso788qh4sujnqofuv0pr2.apps.googleusercontent.com",
"client_id": "630884553037-ie1rin8q242h9h26le92nqv7h6mf1brd.apps.googleusercontent.com",
"client_type": 3
}
]
Expand Down
12 changes: 3 additions & 9 deletions TicTacToyGame/TicTacToyOnline/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hussein.tictactoyonline">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Loading

0 comments on commit 8f2abf0

Please sign in to comment.