how do I interact with a smart contract deployed on the ropsten test network?

Viewed 217

I have already deployed a contract on the ropsten test network and also have the contract address.
But, How do I interact with it through something like an android project?
I know I have to add the dependencies first and all. But, here's the confusion -

  • I have deployed the contract on etherscan's ropsten testnet through the remix IDE
  • Deployed a project on infura
  • Created a metamask wallet which now has 1 eth on the ropsten testnet

    now, how do I combine all this such that I can access it in my android studio or any other project for that matter?
    All I need is to know how anybody would interact with a contract.
    Even getting to know the basic requirements steps would be more than enough.

    Any help will be appriciated...

    its getting harder and harder to find answers on the net and I don't have much time. Appriciate the help, thank you...
  • 1 Answers

    I somehow found a blog with a Github sample project which is simple enough to figure out what does what inside the project.
    It is an extremely simple hello world project.
    If you are like me and haven't been able to make any progress for the past 4-6 hours because of lack of info, then this will surely help.

    here's the Github Link if you are in a hurry.

    Related