anshuman thakur
anshuman thakur

Reputation: 55

How to get applicationID and server in Parse setup?

I am setting up a parse server in android but I don't know what value to be put in applicationID and server field while initialising parse object. How do I get those values? I am using windows, my code is as below:

Parse.initialize(new Parse.Configuration.Builder(this)
            .applicationId("com.example.anshuman.parse_1")
            .server("http://18.220.188.73:4040")
            .build()
    );

Upvotes: 1

Views: 396

Answers (1)

thisactuallyworks
thisactuallyworks

Reputation: 54

https://www.back4app.com/docs/overview/parse-create-new-app, did you try with back4app you have all explanations there

Upvotes: 1

Related Questions