Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context="com.example.sagarsuri.scrolltesting.MainActivity">
- <LinearLayout
- android:id="@+id/customLayout"
- android:layout_width="match_parent"
- android:layout_height="200dp"
- android:orientation="vertical"
- android:background="#000"/>
- <ScrollView
- android:id="@+id/recyclerView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="true">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:textSize="20sp"
- 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.
- In a previous step, you should have updated your Facebook Developer Settings with the key hashes for your development environments.
- 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.
- 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:
- Make sure to use the password that you set when you first created the release key.
- This command should generate a 28 characher string. Copy and paste this Release Key Hash into your Facebook App ID's Android settings."/>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
Add Comment
Please, Sign In to add comment