Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. RateButton.onClick.AddListener(() =>
  2. {
  3. _sceneSoundsController.StartCommonTapSound();
  4. #if UNITY_ANDROID
  5. var url = $"market://details?id={Application.identifier}";
  6. //var url = "https://play.google.com/store/apps/details?id="+Application.identifier;
  7. #endif
  8. #if UNITY_IOS
  9. var url = "https://apps.apple.com/ua/app/ar-chudoboxes/id1456143580?l=ru";
  10. #endif
  11. Application.OpenURL(url);
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement