When clicking the button from the email which has the below Branch URL
http://my.app.link/feed/response/MyUniQuEId
redirect me to my app but the url received is something like below:
myapp://open?link_click_id=123456789
How can we get the http://my.app.link/feed/response/MyUniQuEId from the link click id in react native.
When opening from messenger these links are not getting changed but when clicking from mail the branch URL is getting changed like above.
A Branchster here -
You can not read the referring link from the link click ID. It's a unique parameter that Branch appends for attribution.
Please reference the following documentation to read the deep link data and you can check for the referring link in the link payload given by the Branch SDK - https://help.branch.io/developers-hub/docs/react-native#read-deep-link
I encountered the same issue. Make sure to double check that the deep link is configured correctly in the manifest.
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="my.app.link" />
</intent-filter>
Related
i have a pyment gateway in my app and i'm using "react-native-inappbrowser-reborn" to go to payment website. how can i go to app dashboard on successful payment? I've been trying to implement it with deep linking but couldn't do it. On successful payment browser open URL like this :http://**8.*1.9./successpage:
This is my intent in manifest file
<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="stylon"/> <data android:scheme="https" android:host="**8.*1.**9.**/" /> <data android:scheme="http" android:host="**8.*1.**9.**/" />
</intent-filter>
this is my navigation container:
<NavigationContainer ref={RootNavigation.navigationRef} linking={prefixes: ['stylon://', 'http://**8.*1.**9.**/'],}>
There are two ways by which you can navigate by url
By Linking
By webView
The react-navigation's official documentation has an entry for this feature with deep-linking. Take a look here
I'm creating a plugin for Intellij IDEA. Following found tutorial now I have pretty simple working plugin. But my problem is the fact I don't know how to maintain localization for my actions.
Now I've got plugin.xml file with following actions tag:
<actions>
<group id="MyPlugin.TopMenu"
text="_MyPlugin"
description="My plugin toolbar menu">
<add-to-group group-id="MainMenu" anchor="last"/>
<action id="MyAction"
class="actions.MyAction"
text="_MyAction"
description="MyAction"/>
</group>
</actions>
This code means that my group and action will be shown as "_MyPlugin" and "_MyAction" regardless localization.
I found how to create resouces bundle and did it. Now I have strings.xml (as I used to for Android) with following content:
<properties>
<entry key="ActionName">_MyAction</entry>
</properties>
Another resource file called strings_ru.xml is combined with it into Resource Bundle, so I don't think I did something wrong with it.
I want to use resource reference to set text tag for my group and its actions. Is it even possible? If not should I create and register actions in runtime?
I created a react native app using react-native init. Did not change a single line of code. (Note: react-native version is 0.55.4)
I generated a singed release APK by following steps given in the official docs.
I tried to upload this APK to Google Play console.
I got the following error:
Your APK or Android App Bundle is using permissions that require a privacy policy: (android.permission.READ_PHONE_STATE)
This is an unexpected behaviour right? Why will a vanilla app require this permission? How can I solve this issue?
Edit 1
My Android manifest is the default one created by react-native init.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.praveenavtestproject">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application
android:name=".MainApplication"
android:label="#string/app_name"
android:icon="#mipmap/ic_launcher"
android:allowBackup="false"
android:theme="#style/AppTheme">
<activity
android:name=".MainActivity"
android:label="#string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
Edit 2
My app doesn't need any permission to work. It just displays 3 lines of text from a historical literature. It is just for information purpose. In Play Store Console, under Store listing tab, at the bottom, there is a Privacy Policy section. It says If you wish to provide a privacy policy URL for this application, please enter it below. Also, please check out our User Data policy to avoid common violations.
I am not providing a privacy policy URL. My app is not supposed to be accessing any user data or phone state. Does React Native access it by default? Can that be the reason for this issue?
Edit 3
Looks like this issue is already being looked at by React Native team.
Branch takes care of creating, applying and confirming Android App Links associations when using it. And that's truly great.
However, it comes to be a tricky question where there are a few package names for the same app, as Branch doesn't give an ability to specify few package names in Android setup. Also, it's not possible to upload custom domain associations files.
Have anyone faced it? Please advice.
P.s. The problem is rather a missing feature than a bug.
Currently Branch doesn't support creating DAL associations files for multiple flavors (package names) of the same app.
I've contacted Branch support and applied a feature request for this so maybe it will be possible in the future releases.
I assume you want to add multiple package names so that the same link can give the option to open multiple apps. You can achieve this functionality by adding the same URI scheme intent filter and Android App links intent filter to the Android Manifest of all your apps.
<!-- Branch URI Scheme -->
<intent-filter>
<data android:scheme="androidexample" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<!-- Branch App Links (optional) -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="example.app.link" />
<data android:scheme="https" android:host="example-alternate.app.link" />
</intent-filter>
If added, whenever a person clicks on the link it will provide to option to open the link via all the apps which can handle the intent. In order to read the link parameters, you can use the same Branch key for all apps.
I am not sure why you need to upload a custom domain associations file. It would be really helpful if you could provide more details about your use case to understand what you wish to achieve.
When you create a new keymap in Intellij it is always based on other keymap. It kind of extends it and only the changes are recorded.
Example file:
mykeymap.xml
<keymap version="1" name="momomo-keymap" parent="Default for XWin">
<action id="$Redo">
<keyboard-shortcut first-keystroke="shift alt back_space" />
<keyboard-shortcut first-keystroke="ctrl y" />
</action>
<action id="ActivateDebugToolWindow">
<keyboard-shortcut first-keystroke="alt 5" />
<keyboard-shortcut first-keystroke="ctrl 9" />
</action>
<action id="ActivateProjectToolWindow">
<keyboard-shortcut first-keystroke="alt 1" />
<keyboard-shortcut first-keystroke="ctrl 1" />
</action>
<action id="Back">
<mouse-shortcut keystroke="button4" />
<keyboard-shortcut first-keystroke="ctrl alt page_up" />
</action>
...
</keymap>
This is kind of nice because then I can edit them manually quicker, and I can make simple changes between Mac and Linux versions (for instance Command key vs CTRL key)
Is there a way to get a dump of all the shortcuts used and not used in a file in the format above?
Under the installation directory of IntelliJ IDEA, navigate to lib\resources.jar. Extract it, and then find keymaps directory, which includes all keymap files such as Default for XWin.xml.
I might have found it in:
https://github.com/JetBrains/intellij-community/tree/master/platform/platform-resources/src/keymaps
Not sure if it is complete though. Will have to test and try.
I know that's an old thread, but I have faced the same question and come up with the simple plugin, it just exports entire keymap to IntelliJ XML format: https://plugins.jetbrains.com/plugin/18927-keymap-xml-exporter