Right now I have an android app that display a graph plot of data that is feed to it form Json file. Currently I have a json file in my asset folder from which I am fetching the data for the graph plot. But what I actually want is that:
I have a json file on cloud (GCP Bucket). I want to get that data from the json file or the json itself from cloud bucket and get it to the app so that graph plot can be made. The json file can be updated, hence the latest data will be fetched by the android app for the graph plot.
Please suggest me any method to do so?