diff --git a/Habitica/res/layout/fragment_gem_purchase.xml b/Habitica/res/layout/fragment_gem_purchase.xml
index e1670402f..5c719c1c4 100644
--- a/Habitica/res/layout/fragment_gem_purchase.xml
+++ b/Habitica/res/layout/fragment_gem_purchase.xml
@@ -6,9 +6,9 @@
+ android:text="@string/gem.purchase.support"
+ android:layout_gravity="center_horizontal"
+ android:layout_margin="5dp">
diff --git a/Habitica/res/values/strings.xml b/Habitica/res/values/strings.xml
index 9aad1f93d..50d76269e 100644
--- a/Habitica/res/values/strings.xml
+++ b/Habitica/res/values/strings.xml
@@ -211,4 +211,6 @@ To start, which parts of your life do you want to improve?
Study a master of the craftWork on creative projectFinish creative project
+
+ Want to help us keep Habitica running? You can support the developers by buying gems!\n\nGems allow you to buy fun extras for your account, including: \n\n - Cool costumes for your avatar\n - Awesome backgrounds\n - Fun quests that reward you with pet eggs\n - The ability to change your class before level 100\n\nThank you so much for helping us make Habitica the best it can be. Your support means a lot to us!
\ No newline at end of file
diff --git a/Habitica/src/com/habitrpg/android/habitica/ui/fragments/GemsPurchaseFragment.java b/Habitica/src/com/habitrpg/android/habitica/ui/fragments/GemsPurchaseFragment.java
index f43550960..2f0ae2295 100644
--- a/Habitica/src/com/habitrpg/android/habitica/ui/fragments/GemsPurchaseFragment.java
+++ b/Habitica/src/com/habitrpg/android/habitica/ui/fragments/GemsPurchaseFragment.java
@@ -14,13 +14,7 @@ import com.habitrpg.android.habitica.events.BoughtGemsEvent;
import com.habitrpg.android.habitica.ui.helpers.ViewHelper;
import de.greenrobot.event.EventBus;
import io.fabric.sdk.android.Fabric;
-import org.solovyev.android.checkout.ActivityCheckout;
-import org.solovyev.android.checkout.BillingRequests;
-import org.solovyev.android.checkout.Checkout;
-import org.solovyev.android.checkout.ProductTypes;
-import org.solovyev.android.checkout.Purchase;
-import org.solovyev.android.checkout.Purchases;
-import org.solovyev.android.checkout.RequestListener;
+import org.solovyev.android.checkout.*;
import butterknife.Bind;
@@ -65,7 +59,7 @@ public class GemsPurchaseFragment extends BaseMainFragment {
checkout.createPurchaseFlow(new RequestListener() {
@Override
public void onSuccess(Purchase purchase) {
- if(purchase.sku.equals(HabiticaApplication.Purchase20Gems)){
+ if (purchase.sku.equals(HabiticaApplication.Purchase20Gems)) {
billingRequests.consume(purchase.token, new RequestListener