Hi As parse beeen officially going to close, I am using an alternative as back4app. So in back4app, documentation says
Use this code and change url instead of https://api.parse.com
Parse.initialize(new Parse.Configuration.Builder(myContext)
.applicationId("YOUR_APP_ID")
.clientKey("YOUR_CLIENT_KEY")
.server("https://parseapi.back4app.com")
But I couldn't use the above line, as it throws compile error as
com.parse.Pars.Builder Configuration has private access in com.parse.Parse.Configuration in the first line of initialize method.
Then How to change and apply it.