• Job Offering
  • [PAID] Need help to integrate a RateIt android plugin.

Your mission, if you accept it, is to integrate a Rate It plugin into my Godot android app. It should be a fairly simple task for those who have experience in this field. B)

This is the open source project I'm looking for : https://github.com/DrMoriarty/godot-rateme The only thing I need is to open the Play Store Market Page of my app. Simple enough.

IMPORTANT : My app don't (and can't) have any internet permission. I don't know if this is a deal breaker ? Godot version : 3.4

Task : - confirm that the Rate It will work without internet permission. - update the plugin code to the latest Godot requirements. - Compile the plugin into a android lib (send me the lib + source please). - Help me integrate it into my app.

I would like to pay a fixed amount for this. Send me your quote.

Thank you.

7 days later

Not even one response ? No one is making android plugin for android ???

~confused~

Sorry that you got not much response and I might be no help because I'm new to Godot (but have some experience with Android), but I think if your produced app has no internet-permission from the user, it will not be possible to open play store. Maybe thats the cause why ppl are not posting much...

Have you gone to AssetLib and typed in NativeLib yet? You can DrMoriarty's plugin directly from Godot Engine.

I can help. PM if you still need it.

@SuperDoomKing I tried to build it myself, but there is something with my Android Studio not working. I add some strange Graddle error, I'm not too familiar with this :(

I have worked with android games and DrMoriarty's nativelib before. I can try to install it for you.

@SuperDoomKing , great, this will be very appreciated. Please, PM me if you whish

Or, use my email : info@777pixels.ca Thanks.

@SuperDoomKing , has proposed something taken from another post. This is not the more elegant way, but I confirm it is working. No plugin, no android compilation, a simple OS call.

https://godotengine.org/qa/21356/how-to-make-rate-this-app-button-for-ios-and-android-script

    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")