2

我想将 Google Pay 集成到我的 android 应用程序中。我已经尝试过这个repo。收到以下错误。

此商家未启用 google pay

这是我的一些导致错误的代码。

public static final HashMap<String, String> PAYMENT_GATEWAY_TOKENIZATION_PARAMETERS = new HashMap<String, String>() {

   put("gateway", "example"); // WHAT SHOULD I WIRTE INSTED OF EXAMPLE?
          put("gatewayMerchantId", "MerchantIdexample"); //found from https://merchants.google.com 
          // Your processor may require additional parameters.
        }
};
4

3 回答 3

1

您需要将此添加到您的清单(应用程序内部)::

<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true"/>
于 2019-03-06T10:19:15.740 回答
-2

交易可能有风险。为了您的安全,目前无法完成我在使用此代码时也收到此错误

      </a>
于 2021-02-21T06:11:02.820 回答
-2
out_marginLeft="50dp"
            android:layout_marginTop="50dp"
            android:layout_marginRight="50dp"
            android:gravity="center"
            android:orientation="vertical">

            <ProgressBar
                android:id="@+id/progressBar"
                style="?android:attr/progressBarStyleHorizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_above="@+id/txtProgress"
                android:layout_centerHorizontal="true"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:progress="50"
                android:progressTint="@android:color/black" />

            <TextView
                android:id="@+id/txtProgress"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"
                android:text="Progress"
                android:textColor="@android:color/black" />
        </LinearLayout>  

Java
于 2019-05-04T13:39:50.030 回答