From 68277aa8e121b4fc25d16eb4a1810e146b39a05b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 13 Mar 2017 15:41:17 +0100 Subject: [PATCH] Removed google-services.json from repository --- app/.gitignore | 3 ++- app/google-services.json | 20 +++++++++---------- .../tusky/ConversationLineItemDecoration.java | 2 -- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/app/.gitignore b/app/.gitignore index e493cfc4f..7c176a4ea 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1,2 +1,3 @@ /build -app-release.apk \ No newline at end of file +app-release.apk +google-services.json diff --git a/app/google-services.json b/app/google-services.json index 9eea9a547..7c08109cb 100644 --- a/app/google-services.json +++ b/app/google-services.json @@ -1,35 +1,35 @@ { "project_info": { - "project_number": "268851337880", - "firebase_url": "https://tusky-62772.firebaseio.com", - "project_id": "tusky-62772", - "storage_bucket": "tusky-62772.appspot.com" + "project_number": "1050186150447", + "firebase_url": "https://tusky-fc880.firebaseio.com", + "project_id": "tusky-fc880", + "storage_bucket": "tusky-fc880.appspot.com" }, "client": [ { "client_info": { - "mobilesdk_app_id": "1:268851337880:android:fc4111b1d145a00e", + "mobilesdk_app_id": "1:1050186150447:android:fc4111b1d145a00e", "android_client_info": { "package_name": "com.keylesspalace.tusky" } }, "oauth_client": [ { - "client_id": "268851337880-eie2ssto2d21bfihn9d1qupcrke8oebf.apps.googleusercontent.com", + "client_id": "1050186150447-fg4nj4vlekpa9bcl8q8290hqln1s048e.apps.googleusercontent.com", "client_type": 1, "android_info": { "package_name": "com.keylesspalace.tusky", - "certificate_hash": "18d196307d6e928e99c2e0bb9818c01c38aff2f9" + "certificate_hash": "a3bb387437e149dd7763107e8da83ad6b421264f" } }, { - "client_id": "268851337880-n19d05m282nirs1fc9kdd5n4of6je4fk.apps.googleusercontent.com", + "client_id": "1050186150447-4u9m96ub04cuppmnkfdk7ua51o9r7pf3.apps.googleusercontent.com", "client_type": 3 } ], "api_key": [ { - "current_key": "AIzaSyD6erhkj_KOB7WrhdunV1uN29QOoLJHTaQ" + "current_key": "AIzaSyBTWsu3Z5EjCnm3nUoWamuMLmGvM0nGq7o" } ], "services": { @@ -40,7 +40,7 @@ "status": 2, "other_platform_oauth_client": [ { - "client_id": "268851337880-n19d05m282nirs1fc9kdd5n4of6je4fk.apps.googleusercontent.com", + "client_id": "1050186150447-4u9m96ub04cuppmnkfdk7ua51o9r7pf3.apps.googleusercontent.com", "client_type": 3 } ] diff --git a/app/src/main/java/com/keylesspalace/tusky/ConversationLineItemDecoration.java b/app/src/main/java/com/keylesspalace/tusky/ConversationLineItemDecoration.java index 9dbce756b..6c1565419 100644 --- a/app/src/main/java/com/keylesspalace/tusky/ConversationLineItemDecoration.java +++ b/app/src/main/java/com/keylesspalace/tusky/ConversationLineItemDecoration.java @@ -21,8 +21,6 @@ class ConversationLineItemDecoration extends RecyclerView.ItemDecoration { @Override public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) { - // Fun fact: this method draws in pixels, but all layouts are in DP, so I'm using the divider's - // own 2dp width to calculate what I want int dividerLeft = parent.getPaddingLeft() + mContext.getResources().getDimensionPixelSize(R.dimen.status_left_line_margin); int dividerRight = dividerLeft + mDivider.getIntrinsicWidth();