Я работаю над платежом в родном скрипте angular и после того, как я добавил все, как в инструкциях, произошла ошибка:
com.braintreepayments.api.exceptions.BraintreeException: BraintreeBrowserSwitchActivity missing, incorrectly configured in AndroidManifest.xml or another app defines the same browser switch url as this app. See https://developers.braintreepayments.com/guides/client-sdk/android/v2#browser-switch for the correct configuration
Да, я искал решение, но переработка моего манифеста не работала для меня. Я понятия не имею, что делать, потому что каждый вопрос заканчивается манифестом модификации ... даже если я изменяю
<data android:scheme="com.tns.NativeScriptApplication${applicationId}.braintree"/>
на
<data android:scheme="${applicationId}.braintree"/>
Мой манифест:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.nativescript.MobileApplication"
android:versionCode="10000"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:usesCleartextTraffic="true"
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/nativescript_google_maps_api_key" />
<activity
android:name="com.tns.NativeScriptActivity"
android:label="@string/title_activity_kimera"
android: configChanges = "клавиатура | клавиатура скрытая | ориентация | screenSize | smalllestScreenSize | screenLayout | locale | uiMode" android: theme = "@ style / LaunchScreenTheme">
<meta-data
android:name="SET_THEME_ON_LAUNCH"
android:resource="@style/AppTheme" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity"/>
<activity android:name="com.braintreepayments.api.BraintreeBrowserSwitchActivity"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="com.tns.NativeScriptApplication${applicationId}.braintree"/>
</intent-filter>
</activity>
</application>
Что я могу сделать тогда? Если у вас есть идеи, помогите мне, пожалуйста, наилучшими пожеланиями.