-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to open VK app using a contact ID ? #84
Comments
Yes, it's done the same way: |
@grishka Hey it works ! |
@AndroidDeveloperLB he found the answer in his sources |
@Dreddik What sources? in the VK app? or here in the SDK ? |
@AndroidDeveloperLB yes, VK app sources. He looks like VK app developer, I guess ;) |
@AndroidDeveloperLB I'm a developer of this app. |
@grishka Cool. Thank you. |
Так вот что за Гриша там в комментариях! |
@illarionov I don't speak Russian. Google translate says you wrote "So what kind of Grisha there in the comments!" . |
@AndroidDeveloperLB more accurate translation would be "that's Grisha from those comments". :) |
@grishka Grisha Or Grishka? and what comments? |
@AndroidDeveloperLB lol, okay, let me explain. My real name in Russian is Григорий (Grigoriy), Gregory in English. Grishka (Гришка) and Grisha (Гриша) are some of its alternate forms. This comment: |
@grishka So you've published your name on the code ? |
@AndroidDeveloperLB not me, Roman who developed the SDK :) |
@AndroidDeveloperLB great app. |
@illarionov Which app ? |
Is there any way to open the app with a share intent similar to https://vk.com/share.php? |
For Facebook I can use this:
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("fb://profile/%s", friendId)));
For LinkedIn I can use this:
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("linkedin://profile/%s", friendId)));
What can I do in order to open VK app for the page of the chosen VK-user ?
The text was updated successfully, but these errors were encountered: