Guest User

Untitled

a guest
Jan 10th, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.25 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:orientation="vertical"
  8.    tools:context="com.example.sagarsuri.scrolltesting.MainActivity">
  9.  
  10.     <LinearLayout
  11.        android:id="@+id/customLayout"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="200dp"
  14.        android:orientation="vertical"
  15.        android:background="#000"/>
  16.  
  17.     <ScrollView
  18.        android:id="@+id/recyclerView"
  19.        android:layout_width="match_parent"
  20.        android:layout_height="match_parent"
  21.        android:fillViewport="true">
  22.         <LinearLayout
  23.            android:layout_width="match_parent"
  24.            android:layout_height="wrap_content"
  25.            android:orientation="vertical">
  26.             <TextView
  27.                android:layout_width="match_parent"
  28.                android:layout_height="match_parent"
  29.                android:textSize="20sp"
  30.                android:text="To authenticate the exchange of information between your app and the Facebook, you need to generate a release key hash and add this to the Android settings within your Facebook App ID. Without this, your Facebook integration may not work properly when you release your app to the store.
  31. In a previous step, you should have updated your Facebook Developer Settings with the key hashes for your development environments.
  32. When publishing your app, it is typically signed with a different signature to your development environment. Therefore, you want to make sure you create a Release Key Hash and add this to the Android settings for Facebook App ID.
  33. To generate a hash of your release key, run the following command on Mac or Windows substituting your release key alias and the path to your keystore. On OS X, run:
  34. Make sure to use the password that you set when you first created the release key.
  35. This command should generate a 28 characher string. Copy and paste this Release Key Hash into your Facebook App ID's Android settings."/>
  36.         </LinearLayout>
  37.     </ScrollView>
  38.  
  39. </LinearLayout>
Add Comment
Please, Sign In to add comment