Ale Feltes Quenhan
Ale Feltes Quenhan
Yes, on working installation tested it with new credentials, worked out of the box. 
Same problem found with latest version 1.15.8, released in Jun 2017. Doing some digging, I've found that the null pointer exception occurs when: 1) Device enters in "doze" mode, API...
Yes @natario1 thanks for your quick response, all of that is made on app start. The app has several services scheduled that runs in background approximately 4 times a day,...
`Application.onCreate()` is called, I initialize parse with these code, only if there's a network connection: ``` Parse.initialize(new Parse.Configuration.Builder(context) .applicationId(PARSE_APPLICATION_ID) .clientKey(CLIENT_KEY) .server(getString(R.string.parse_server_url)) .enableLocalDataStore() .build() ); ``` I had already problems with...
I will make that change, thank you for the suggestion. I'm not quite sure that App actually stops though since other stuff gets done in background which are not Parse...
I agree with the clarification that entities scan should be package scan based. @hanct , based on your arguments a couple of follow up questions 1. Why would you have...