How to make Rate This App button for ios and android (script)

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Tkaewkunha
:warning: Old Version Published before Godot 3 was released.
:bust_in_silhouette: Reply From: dulvui

Replace YOUR_APP_ID with the your Apple App ID and YOUR_PACKAGE_NAME with your Andorid package name

if OS.get_name() == "iOS":
    		OS.shell_open("https://itunes.apple.com/app/idYOUR_APP_ID?action=write-review")
    	else:
    		OS.shell_open("https://play.google.com/store/apps/details?id=YOUR_PACKAGE_NAME")