Android: Client crashes after entering login credentials

Created on 16 Oct 2018  ·  52Comments  ·  Source: nextcloud/android

As per description - app loads fine, and connects to server. It them prompts for username/password, and after entering these the application crashes with the following traceback via logcat:

--------- beginning of crash
[ 10-16 15:15:41.378  7322: 7322 E/AndroidRuntime ]
FATAL EXCEPTION: main
Process: com.nextcloud.client, PID: 7322
java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference
        at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:116)
        at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:102)
        at com.owncloud.android.ui.fragment.ExtendedListFragment$6.run(ExtendedListFragment.java:653)
        at android.os.Handler.handleCallback(Handler.java:751)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:154)
        at android.app.ActivityThread.main(ActivityThread.java:6186)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)

This is with Nextcloud client Version 3.3.0 from F-droid, on LineageOS 14.1 nightly (OnePlus X).

Cheers

bug needs infdiscussion

Most helpful comment

Still affected.

All 52 comments

GitMate.io thinks possibly related issues are https://github.com/nextcloud/android/issues/1491 (App crashes if user enters wrong credentials), https://github.com/nextcloud/android/issues/477 (Client 20161224 crashes), https://github.com/nextcloud/android/issues/2306 (Crash on login), https://github.com/nextcloud/android/issues/820 (Crash on login), and https://github.com/nextcloud/android/issues/1197 (client crashes upon first open).

Some extra info, after performing a factory reset/wipe of my phone, the Nextcloud app started working again after re-installation. However, after a few successful logins, the same problem started occurring again. So I guess it's something to do with whatever the app is writing to persistent storage somewhere.

My #3273 might be a duplicate of this. I too am using Lineage. Thanks for bringing this to my attention @aeneby. Do you have the client installed on an external SD card?

Hi @kiplingw I do have an SD in my phone but I'm not sure if the app is being installed there or the internal memory to be honest.

I've tried on both external and internal. Same problem.

Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:116)

This means that Context is null:
https://github.com/nextcloud/android/blob/956040276024fb13ecec194b4f6eb65b16e4ce8f/src/main/java/com/owncloud/android/utils/ThemeUtils.java#L115-L117

@AndyScherzinger do you have an idea what we can do? We could return "-1" and then check on all occurences for that and let the default (via setup.xml) being used.
But this will a nightmare, as primaryColor is used in ~100 occurrences.
Hardcoding a default value is also something I do not want to do :/

Hmmm, I think like you mentioned that skipping the themeing in this scenario would be the best option since the elements will be standard-themed anyways via the styles.xml. So we could do a check for -1 but I also don't want to implement a check in 100 places :/

Maybe it is indeed time to change theming to use LiveData from Android Components.
As far as I remember when playing around with it before Christmas, one could add this directly to XML and it gets updated directly…

Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:116)

This means that Context is null:

I ran into this issue when doing the dark_theme so I added an if statement to return immediately if context was null and didn't see any negative effects. Presumably this is not the most ideal way of doing it?

All primaryColor functions are expected to return an int.
If you then just return, you basically do not return anything.
As we use the return directly to set color of buttons, etc. I wonder why this is working and not crashing…

Ah I see. I'm returning an arbitrary int so that explains why it doesn't crash. I'll make a note to make sure it's rebase'd against whatever the fix is.

I just tried Nextcloud Dev client version 20190108. I can confirm that this issue is still occurring.

I am installing the app several times a day due to developing, and I have this problem only 1~month and then it happens when suspending app during connection setup or other "strange" things.

Can you create us a test account, test if the problem occurs also there and if so send the credentials to tobias at nextcloud dot com with a reference to this issue?

I am still experiencing the same problem using version 20190201 (Nextcloud dev). This is my adb logcat from the moment after entering my login credentials, transitioning to the Grant page, and clicking Grant:

...
02-02 21:20:59.487 27321 27799 D OwnCloudClient #0: REQUEST GET /status.php
02-02 21:20:59.489 27321 27799 D AdvancedSslSocketFactory: Creating SSL Socket with remote nextcloud.<myserver>.com:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@3bdc70d
02-02 21:20:59.489 27321 27799 D AdvancedSslSocketFactory:  ... with connection timeout 50000 and socket timeout 60000
02-02 21:20:59.497 27321 27799 I ServerNameIndicator: SNI done, hostname: nextcloud.<myserver>.com
02-02 21:20:59.923 27321 27799 W HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
02-02 21:20:59.926 27321 27799 I GetRemoteStatusOperation: Connection check at https://nextcloud.<myserver>.com: Operation finished with HTTP status code -1 (success)
02-02 21:20:59.926 27321 27799 D GetServerInfoOperation: Trying empty authorization to detect authentication method
02-02 21:20:59.927 27321 27799 D OwnCloudClient #0: REQUEST HEAD /remote.php/webdav/
02-02 21:21:00.156 27321 27799 I AuthChallengeProcessor: basic authentication scheme selected
02-02 21:21:00.159 27321 27799 I HttpMethodDirector: No credentials available for BASIC 'Cartesian Theatre'@nextcloud.<myserver>.com:443
02-02 21:21:00.161 27321 27799 D ExistenceCheckRemoteOperation: Existence check for https://nextcloud.<myserver>.com/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
02-02 21:21:00.161 27321 27799 D DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
02-02 21:21:00.162 27321 27799 D OperationsService: Called 1 listeners
02-02 21:21:00.163 27321 27799 D OperationsService: Stopping after command with id 4
02-02 21:21:00.165 27321 31034 D OwnCloudClient #2: Creating OwnCloudClient
02-02 21:21:00.167 27321 31034 D OwnCloudClient #2: REQUEST HEAD /remote.php/webdav/
02-02 21:21:01.597 27321 31034 D ExistenceCheckRemoteOperation: Existence check for https://nextcloud.<myserver>.com/remote.php/webdav/ targeting for  existence finished with HTTP status 200
02-02 21:21:01.603 27321 31034 D OwnCloudClient #2: REQUEST GET /ocs/v1.php/cloud/user
02-02 21:21:01.889  5130  5333 D BatchingTimer: Device timer is done.
02-02 21:21:01.889  5130  5333 D BatchingTimer: Device batch timer is started.
02-02 21:21:01.917  5130  5336 D BatchingTimer: Client timer is done.
02-02 21:21:01.917  5130  5336 D BatchingTimer: Client batch timer is started.
02-02 21:21:01.960  5130 31041 D BatchingTimer: Client timer time: 60
02-02 21:21:01.972  5130 31040 D BatchingTimer: Device timer time: 60
02-02 21:21:05.239 26687 26774 D bt_btif : BTHF: device_status_notification
02-02 21:21:05.239 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:05.239 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:05.239 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:05.239 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:05.239 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:05.239 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:05.240 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:05.240 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:05.245 29572 29572 D CellBroadcastReceiver: onReceive Intent { act=android.intent.action.SERVICE_STATE flg=0x10 cmp=com.android.cellbroadcastreceiver/.CellBroadcastReceiver (has extras) }
02-02 21:21:05.245 29572 29572 D CellBroadcastReceiver: Intent: android.intent.action.SERVICE_STATE
02-02 21:21:05.277  2133  2206 W ConnectivityExtension: ConnectivityExt jar file not present
02-02 21:21:06.625 27321 27321 D AuthenticatorActivity: Successful access - time to save the account
02-02 21:21:06.629  2133  5196 W AccountManagerService: insertAccountIntoDatabase: Account {name=<user>@nextcloud.<myserver>.com, type=nextcloud.beta}, skipping since the account already exists
02-02 21:21:06.643  2133  2393 I ActivityManager: START u0 {act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10117 on display 0
02-02 21:21:06.644  2133  2393 W ActivityManager: startActivity called from finishing ActivityRecord{89cf767 u0 com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity t96 f}; forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity }
02-02 21:21:06.654  2133  2740 W InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@6e6e526 attribute=null, token = android.os.BinderProxy@56846ac
02-02 21:21:06.655 27321 27321 D AuthenticatorActivity: onPause() ending
02-02 21:21:06.666  2133  2146 I ActivityManager: START u0 {act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10117 on display 0
02-02 21:21:06.667  2133  2146 W ActivityManager: startActivity called from non-Activity context; forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity }
02-02 21:21:06.684 27321 27321 V FileDisplayActivity: onCreate() start
02-02 21:21:06.685 27321 27321 D FileDisplayActivity: onCreate(Bundle) starting
02-02 21:21:06.693 27321 31108 D ExternalLinks: links disabled
02-02 21:21:06.717 27321 27336 I AccountAuthenticator: Adding account with type nextcloud.beta and auth token null
02-02 21:21:06.721  2133  2711 I ActivityManager: START u0 {flg=0x10800004 cmp=com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity (has extras)} from uid 10117 on display 0
02-02 21:21:06.769 27321 27321 I AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
02-02 21:21:06.846 27321 27321 D FileDisplayActivity: onStart() starting
02-02 21:21:06.855 27321 31110 D ExternalLinks: links disabled
02-02 21:21:06.878  2133  2740 I ActivityManager: START u0 {act=android.content.pm.action.REQUEST_PERMISSIONS pkg=com.android.packageinstaller cmp=com.android.packageinstaller/.permission.ui.GrantPermissionsActivity (has extras)} from uid 10117 on display 0
02-02 21:21:06.890 27321 27321 E FileDisplayActivity: Access to unexisting list of files fragment!!
02-02 21:21:06.892 27321 27321 V BaseActivity: onNewIntent() start
02-02 21:21:06.893 27321 27321 V BaseActivity: onNewIntent() stop
02-02 21:21:06.895  2133  5197 I ActivityManager: START u0 {act=RESTART flg=0x14000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10117 on display 0
02-02 21:21:06.903 27321 27321 V FileDisplayActivity: onResume() start
02-02 21:21:06.903 27321 27321 D FileDisplayActivity: onResume() starting
02-02 21:21:06.904 27321 27321 I OCFileListFragment: onAttach
02-02 21:21:06.907 27321 27321 I OCFileListFragment: onCreateView() start
02-02 21:21:06.907 27321 27321 D ExtendedListFragment: onCreateView
02-02 21:21:06.967 27321 27321 I OCFileListFragment: onCreateView() end
02-02 21:21:06.967 27321 27321 I OCFileListFragment: onActivityCreated() start
02-02 21:21:07.017 27321 27321 V FileDisplayActivity: onResume() end
02-02 21:21:07.019 27321 27321 V FileDisplayActivity: onPause() start
02-02 21:21:07.022 27321 27321 D FileDisplayActivity: onPause() ending
02-02 21:21:07.023 27321 27321 V FileDisplayActivity: onPause() end
02-02 21:21:07.023 27321 27321 V BaseActivity: onNewIntent() start
02-02 21:21:07.024 27321 27321 V BaseActivity: onNewIntent() stop
02-02 21:21:07.025  2133  2571 W ActivityManager: Duplicate finish request for ActivityRecord{2eccf13 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t96 f}
02-02 21:21:07.026  2133 20527 I ActivityManager: START u0 {act=RESTART flg=0x14000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10117 on display 0
02-02 21:21:07.031 27321 27321 V FileDisplayActivity: onResume() start
02-02 21:21:07.032 27321 27321 D FileDisplayActivity: onResume() starting
02-02 21:21:07.074 27321 27321 V FileDisplayActivity: onResume() end
02-02 21:21:07.097 27321 27321 D FileActivity: Operations service connected
02-02 21:21:07.097 27321 27321 V FileDisplayActivity: onPause() start
02-02 21:21:07.099 27321 27321 D FileDisplayActivity: onPause() ending
02-02 21:21:07.100 27321 27321 V FileDisplayActivity: onPause() end
02-02 21:21:07.109 27321 27321 D FileDownloader: Creating service
02-02 21:21:07.117 27321 27321 D FileUploader: Creating service
02-02 21:21:07.121 27321 27321 V UploadsStorageManager: Updating state of any killed upload
02-02 21:21:07.124 27321 27321 V UploadsStorageManager: No upload was killed
02-02 21:21:07.151 27321 27321 V FileDisplayActivity: onCreate() start
02-02 21:21:07.154 27321 27321 D FileDisplayActivity: onCreate(Bundle) starting
02-02 21:21:07.177 27321 27336 I AccountAuthenticator: Adding account with type nextcloud.beta and auth token null
02-02 21:21:07.182  2133  2394 I ActivityManager: START u0 {flg=0x10800004 cmp=com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity (has extras)} from uid 10117 on display 0
02-02 21:21:07.212 27321 27321 I AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
02-02 21:21:07.267 27321 27321 D FileDisplayActivity: onStart() starting
02-02 21:21:07.275 27321 31121 D ExternalLinks: links disabled
02-02 21:21:07.300  2133  6714 I ActivityManager: START u0 {act=android.content.pm.action.REQUEST_PERMISSIONS pkg=com.android.packageinstaller cmp=com.android.packageinstaller/.permission.ui.GrantPermissionsActivity (has extras)} from uid 10117 on display 0
02-02 21:21:07.302  2133  6714 W ActivityManager: startActivity called from finishing ActivityRecord{4476762 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t96 f}; forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { act=android.content.pm.action.REQUEST_PERMISSIONS flg=0x800000 pkg=com.android.packageinstaller cmp=com.android.packageinstaller/.permission.ui.GrantPermissionsActivity (has extras) }
02-02 21:21:07.313 27321 27321 E FileDisplayActivity: Access to unexisting list of files fragment!!
02-02 21:21:07.317 27321 27321 V BaseActivity: onNewIntent() start
02-02 21:21:07.319 27321 27321 V BaseActivity: onNewIntent() stop
02-02 21:21:07.320  2133  2711 W ActivityManager: Duplicate finish request for ActivityRecord{4476762 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t96 f}
02-02 21:21:07.323  2133  5195 I ActivityManager: START u0 {act=RESTART flg=0x14000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10117 on display 0
02-02 21:21:07.338 27321 27321 V FileDisplayActivity: onResume() start
02-02 21:21:07.338 27321 27321 D FileDisplayActivity: onResume() starting
02-02 21:21:07.340 27321 27321 I OCFileListFragment: onAttach
02-02 21:21:07.345 27321 27321 I OCFileListFragment: onCreateView() start
02-02 21:21:07.345 27321 27321 D ExtendedListFragment: onCreateView
02-02 21:21:07.429 27321 27321 I OCFileListFragment: onCreateView() end
02-02 21:21:07.430 27321 27321 I OCFileListFragment: onActivityCreated() start
02-02 21:21:07.511 27321 27321 V FileDisplayActivity: onResume() end
02-02 21:21:07.513 27321 27321 D FileDisplayActivity: Download service connected
02-02 21:21:07.514 27321 27321 D FileDisplayActivity: Upload service connected
02-02 21:21:07.521 27321 27321 D FileActivity: Operations service connected
02-02 21:21:07.521 27321 27321 D FileDisplayActivity: Download service connected
02-02 21:21:07.522 27321 27321 V FileDisplayActivity: onPause() start
02-02 21:21:07.524 27321 27321 D FileDisplayActivity: onPause() ending
02-02 21:21:07.525 27321 27321 V FileDisplayActivity: onPause() end
02-02 21:21:07.542 27321 27321 D FileDisplayActivity: Upload service connected
02-02 21:21:07.574 27321 27321 V FileDisplayActivity: onCreate() start
02-02 21:21:07.577 27321 27321 D FileDisplayActivity: onCreate(Bundle) starting
02-02 21:21:07.602 27321 27338 I AccountAuthenticator: Adding account with type nextcloud.beta and auth token null
02-02 21:21:07.610  2133  2146 I ActivityManager: START u0 {flg=0x10800004 cmp=com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity (has extras)} from uid 10117 on display 0
02-02 21:21:07.648 27321 27321 I AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
02-02 21:21:07.715 27321 27321 D FileDisplayActivity: onStart() starting
02-02 21:21:07.732 27321 31124 D ExternalLinks: links disabled
02-02 21:21:07.765  2133  5197 I ActivityManager: START u0 {act=android.content.pm.action.REQUEST_PERMISSIONS pkg=com.android.packageinstaller cmp=com.android.packageinstaller/.permission.ui.GrantPermissionsActivity (has extras)} from uid 10117 on display 0
02-02 21:21:07.774 27321 27321 E FileDisplayActivity: Access to unexisting list of files fragment!!
02-02 21:21:07.778 27321 27321 V FileDisplayActivity: onResume() start
02-02 21:21:07.778 27321 27321 D FileDisplayActivity: onResume() starting
02-02 21:21:07.780 27321 27321 I OCFileListFragment: onAttach
02-02 21:21:07.786 27321 27321 I OCFileListFragment: onCreateView() start
02-02 21:21:07.786 27321 27321 D ExtendedListFragment: onCreateView
02-02 21:21:07.865 27321 27321 I OCFileListFragment: onCreateView() end
02-02 21:21:07.866 27321 27321 I OCFileListFragment: onActivityCreated() start
02-02 21:21:07.921 27321 27321 V FileDisplayActivity: onResume() end
02-02 21:21:08.098 27321 27321 D FileActivity: Operations service connected
02-02 21:21:08.098 27321 27321 D FileDisplayActivity: Download service connected
02-02 21:21:08.098 27321 27321 D FileDisplayActivity: Upload service connected
02-02 21:21:08.098 27321 27321 V FileDisplayActivity: onPause() start
02-02 21:21:08.104 27321 27321 D FileDisplayActivity: onPause() ending
02-02 21:21:08.105 27321 27321 V FileDisplayActivity: onPause() end
02-02 21:21:08.200 27321 27329 I art     : Do full code cache collection, code=101KB, data=124KB
02-02 21:21:08.206 27321 27329 I art     : Starting a blocking GC JitCodeCache
02-02 21:21:08.209 27321 27329 I art     : After code cache collection, code=97KB, data=95KB
02-02 21:21:08.451 27321 27321 D AuthenticatorActivity: onCreate(Bundle) starting
02-02 21:21:08.461  2133  2393 I ActivityManager: START u0 {cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FirstRunActivity} from uid 10117 on display 0
02-02 21:21:08.523 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.523 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.540 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.566 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.567 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.572 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.574 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.574 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.581 27321 27321 W ResourceType: Too many attribute references, stopped at: 0x01010034
02-02 21:21:08.601 27321 27321 D AuthenticatorActivity: onStart() starting
02-02 21:21:08.607 27321 27321 D AuthenticatorActivity: onResume() starting
02-02 21:21:08.616 27321 27321 D AuthenticatorActivity: onPause() ending
02-02 21:21:08.728 27321 27321 D FirstRunActivity: onCreate(Bundle) starting
02-02 21:21:08.761 27321 27321 D FirstRunActivity: onStart() starting
02-02 21:21:08.764 27321 27321 D FirstRunActivity: onResume() starting
02-02 21:21:08.778 27321 27321 D AuthenticatorActivity: onSaveInstanceState(Bundle) starting
02-02 21:21:08.791 27321 27321 D AuthenticatorActivity: onStop() ending
02-02 21:21:09.120  2133  2155 I ActivityManager: Displayed com.nextcloud.android.beta/com.owncloud.android.ui.activity.FirstRunActivity: +639ms (total +2s465ms)
02-02 21:21:09.163 27321 27321 V FileDisplayActivity: onSaveInstanceState() start
02-02 21:21:09.165 27321 27321 D FileDisplayActivity: onSaveInstanceState(Bundle) starting
02-02 21:21:09.165 27321 27321 D ExtendedListFragment: onSaveInstanceState()
02-02 21:21:09.167 27321 27321 V FileDisplayActivity: onSaveInstanceState() end
02-02 21:21:09.188 27321 27321 D FileDisplayActivity: onStop() ending
02-02 21:21:09.216 27321 27321 D FileDisplayActivity: onStop() ending
02-02 21:21:09.221 27321 27321 D FileDisplayActivity: onDestroy() ending
02-02 21:21:09.223 27321 27321 D FileDisplayActivity: onStop() ending
02-02 21:21:09.227 27321 27321 D FileDisplayActivity: onDestroy() ending
02-02 21:21:09.231 27321 27321 D AuthenticatorActivity: onStop() ending
02-02 21:21:09.236 27321 27321 D AuthenticatorActivity: onDestroy() ending
02-02 21:21:09.275 27321 27798 E chromium: [ERROR:gl_context_virtual.cc(39)] Trying to make virtual context current without decoder.
02-02 21:21:09.320 27321 27321 E ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@3d4a309 that was originally bound here
02-02 21:21:09.320 27321 27321 E ActivityThread: android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@3d4a309 that was originally bound here
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ContextImpl.bindService(ContextImpl.java:1422)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:1029)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.Activity.performResume(Activity.java:6788)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread.-wrap12(ActivityThread.java)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.os.Handler.dispatchMessage(Handler.java:102)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.os.Looper.loop(Looper.java:154)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at android.app.ActivityThread.main(ActivityThread.java:6186)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at java.lang.reflect.Method.invoke(Native Method)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
02-02 21:21:09.320 27321 27321 E ActivityThread:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
02-02 21:21:09.320  2133  2394 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@3479cfe
02-02 21:21:09.324 27321 27321 E ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@7962307 that was originally bound here
02-02 21:21:09.324 27321 27321 E ActivityThread: android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@7962307 that was originally bound here
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ContextImpl.bindService(ContextImpl.java:1422)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:1029)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.Activity.performResume(Activity.java:6788)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1546)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.os.Handler.dispatchMessage(Handler.java:102)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.os.Looper.loop(Looper.java:154)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at android.app.ActivityThread.main(ActivityThread.java:6186)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at java.lang.reflect.Method.invoke(Native Method)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
02-02 21:21:09.324 27321 27321 E ActivityThread:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
02-02 21:21:09.325  2133  6714 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@f447bc0
02-02 21:21:10.802 26687 26774 D bt_btif : BTHF: device_status_notification
02-02 21:21:10.802 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:10.802 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:10.802 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:10.802 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:10.802 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:10.802 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:10.802 26687 26755 D bt_btif : AG evt (hdl 0x0001): State 2, Event 0x0506
02-02 21:21:10.803 26687 26755 D bt_btif : bta_ag_hfp_result : res = 5
02-02 21:21:10.809 29572 29572 D CellBroadcastReceiver: onReceive Intent { act=android.intent.action.SERVICE_STATE flg=0x10 cmp=com.android.cellbroadcastreceiver/.CellBroadcastReceiver (has extras) }
02-02 21:21:10.809 29572 29572 D CellBroadcastReceiver: Intent: android.intent.action.SERVICE_STATE
02-02 21:21:10.845  2133  2206 W ConnectivityExtension: ConnectivityExt jar file not present
02-02 21:21:14.352 31366 26719 W WebSocketConnection: Sending keep alive...
02-02 21:21:14.365 31366 26719 W RealtimeSleepTimer: Setting alarm to wake up in 55000ms.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Same issue still.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Still happening.

Still happening.

Agreed.

Same problem with stock Android on a Huawei MediaPad M5 and 3.7.0 RC3.

Hi

ro.bootimage.build.fingerprint:
Fairphone/FP2/FP2:7.1.2/19.05.2/sibon-3f3d0b16:userdebug/release-keys
nextcloude client
versionCode=30070090 minSdk=14 targetSdk=28
versionName=3.7.0

I dug into adb and evaluated this line
07-21 10:44:26.943 1684 1684 I AccountManagerService: Accounts [Account {name=Nextcloud_vorname, type=bitfire.at.davdroid}, Account {name=vorname.[email protected], type=bitfire.at.davdroid}, Account {name=vorname.[email protected] (Nextcloud_vorname uQ), type=at.bitfire.davdroid.address_book}, Account {name=vorname.[email protected] (vorname.nachnahme@usahnahme uQ), type=at.bitfire.davdroid.address_book}, Account {name=vorname.nachnahme@usahnahme, type=bitfire.at.davdroid}, Account {name=usahnahme, type=bitfire.at.davdroid}, Account {[email protected], type=nextcloud}, Account {[email protected], type=nextcloud}, Account {[email protected], type=nextcloud.beta}] were previously deleted while user 0 was locked. Removing accounts from CE tables

So the accountmanager keeps track of deleted or lost accounts over OS updates, app updates and dalvik cache resets, also cache resets of the individual apps.
It seems that this is a method to destabilise non google accounts.
As the accountnmanager kicks out, once it has found that an account of this name has been existing already and is inoperable for whatever reason (type, reinstall, etc.) En suite Nextcloud fails
Q to the public: How can I reset this accountmanager ? some sqlite command?
Q to developpers: A position is missing in the accountmanager (Konten), to delete or clear the history of the accounts. Best this shall be done automagically.
https://android.googlesource.com/platform/frameworks/base/+/ccbf84f/services/java/com/android/server/accounts/AccountManagerService.java, line 331

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Still the same problem with "Nextcloud dev" 20190717 as of today.

20190717 is rather old.
On Fdroid there is already 20190810, but actually 20190822 is the latest: https://download.nextcloud.com/android/dev/

Can you test this?

Just tested 20190822. Unfortunately still crashing on the login.

@kiplingw
Can you provide us additional infos via logcat? https://github.com/nextcloud/android/blob/master/README.md#getting-debug-info-via-logcat

From logcat:

...
08-23 00:24:03.369 10862 10862 W InputMethodService: Window size has been changed. This may cause jankiness of resizing window: -1 -> -2
08-23 00:24:03.372  5092  5599 W IInputConnectionWrapper: finishComposingText on inactive InputConnection
08-23 00:24:03.499  5092  5092 I chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
08-23 00:24:03.500  5092  5092 I chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
08-23 00:24:06.809  5092  5092 I chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
08-23 00:24:06.810  5092  5092 I chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
08-23 00:24:08.147  5092  5092 I chromium: [INFO:CONSOLE(7)] "JQMIGRATE: Migrate is installed, version 1.4.0", source: https://(myserver)/core/vendor/core.js?v=9e314e4c-10 (7)
08-23 00:24:10.451  5092  5092 I chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
08-23 00:24:10.459  5092  5092 I chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
08-23 00:24:12.171  5092  5092 D OperationsService: Starting command with id 2
08-23 00:24:12.182  5092  2600 D OwnCloudClient #0: REQUEST GET /status.php
08-23 00:24:12.207  5092  2600 D AdvancedSslSocketFactory: Creating SSL Socket with remote (myserver):443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@24f147c
08-23 00:24:12.208  5092  2600 D AdvancedSslSocketFactory:  ... with connection timeout 50000 and socket timeout 60000
08-23 00:24:12.217  5092  2600 I ServerNameIndicator: SSLSocket implementation: org.conscrypt.Java8FileDescriptorSocket
08-23 00:24:12.222  5092  2600 I ServerNameIndicator: SNI done, hostname: (myserver)
08-23 00:24:12.843  5092  2600 W HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
08-23 00:24:12.851  5092  2600 I GetStatusRemoteOperation: Connection check at https://(myserver): Operation finished with HTTP status code -1 (success)
08-23 00:24:12.853  5092  2600 D GetServerInfoOperation: Trying empty authorization to detect authentication method
08-23 00:24:12.856  5092  2600 D OwnCloudClient #0: REQUEST HEAD /remote.php/webdav/
08-23 00:24:13.569  5092  2600 I AuthChallengeProcessor: basic authentication scheme selected
08-23 00:24:13.570  5092  2600 I HttpMethodDirector: No credentials available for BASIC 'Something'@(myserver):443
08-23 00:24:13.571  5092  2600 D ExistenceCheckRemoteOperation: Existence check for https://(myserver)/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
08-23 00:24:13.573  5092  2600 D DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
08-23 00:24:13.591  5092  3393 D OwnCloudClient #2: Creating OwnCloudClient
08-23 00:24:13.592  5092  2600 D OperationsService: Called 1 listeners
08-23 00:24:13.596  5092  2600 D OperationsService: Stopping after command with id 2
08-23 00:24:13.623  5092  3393 D OwnCloudClient #2: REQUEST HEAD /remote.php/webdav/
08-23 00:24:15.079  5092  3393 D ExistenceCheckRemoteOperation: Existence check for https://(myserver)/remote.php/webdav/ targeting for  existence finished with HTTP status 200
08-23 00:24:15.085  5092  3393 D OwnCloudClient #2: REQUEST GET /ocs/v1.php/cloud/user
08-23 00:24:17.071  5092  5092 D AuthenticatorActivity: Successful access - time to save the account
08-23 00:24:17.075  1920  3385 W AccountManagerService: insertAccountIntoDatabase: Account {name=(me)@(myserver), type=nextcloud.beta}, skipping since the account already exists
08-23 00:24:17.108  1920   559 I ActivityManager: START u0 {act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10120 on display 0
08-23 00:24:17.110  1920   559 W ActivityManager: startActivity called from finishing ActivityRecord{56b3e21 u0 com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity t881 f}; forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity }
08-23 00:24:17.120  1920  2397 W InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@f6f0a52 attribute=null, token = android.os.BinderProxy@73481db
08-23 00:24:17.123  2996  3041 E NfcService: setReaderMode() called while NFC is not enabled.
08-23 00:24:17.123  5092  5092 D AuthenticatorActivity: onPause() ending
08-23 00:24:17.134  5092  5092 D BaseActivity: onAccountCreationSuccessful
08-23 00:24:17.136  1920 24624 I ActivityManager: START u0 {act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10120 on display 0
08-23 00:24:17.143  1920  2399 I ActivityManager: moveTaskToBack: TaskRecord{4d89123 #881 A=com.nextcloud.android.beta U=0 StackId=1 sz=2}
08-23 00:24:17.178  5092  3445 D ExternalLinks: links disabled
08-23 00:24:17.204  5092  5092 D EventBus: No subscribers registered for event class com.owncloud.android.ui.events.TokenPushEvent
08-23 00:24:17.209  5092  5092 D EventBus: No subscribers registered for event class org.greenrobot.eventbus.NoSubscriberEvent
08-23 00:24:17.209  5092  5092 V BaseActivity: onNewIntent() start
08-23 00:24:17.215  5092  5092 V BaseActivity: onNewIntent() stop
08-23 00:24:17.224  1920   524 I ActivityManager: START u0 {act=RESTART flg=0x14000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10120 on display 0
08-23 00:24:17.259  5092  5092 V BaseActivity: onNewIntent() start
08-23 00:24:17.262  5092  5092 V BaseActivity: onNewIntent() stop
08-23 00:24:17.262  1920  2399 W ActivityManager: Finishing task with all activities already finished
08-23 00:24:17.262  1920  2399 W ActivityManager: Duplicate finish request for ActivityRecord{99fae40 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t881 f}
08-23 00:24:17.267  1920   559 I ActivityManager: START u0 {act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10120 on display 0
08-23 00:24:17.268  1920   559 W ActivityManager: startActivity called from finishing ActivityRecord{99fae40 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t881 f}; forcing Intent.FLAG_ACTIVITY_NEW_TASK for: Intent { act=RESTART flg=0x4000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity }
08-23 00:24:17.283  1920  3256 W InputMethodManagerService: Focus gain on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@43a4b72 (uid=10029 pid=3121)
08-23 00:24:17.313  1920  1920 D ZenLog  : intercepted: 0|android|17039403|null|1000,alarmsOnly
08-23 00:24:17.314  1920  1920 V NotificationService: pkg=android canInterrupt=false intercept=true
08-23 00:24:17.345  1920  2397 I ActivityManager: Activity reported stop, but no longer stopping: ActivityRecord{99fae40 u0 com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity t881 f}
08-23 00:24:17.350  5092  5092 V FileDisplayActivity: onCreate() start
08-23 00:24:17.355  5092  5092 D FileDisplayActivity: onCreate(Bundle) starting
08-23 00:24:17.372  5092  5105 I AccountAuthenticator: Adding account with type nextcloud.beta and auth token null
08-23 00:24:17.377  1920   524 I ActivityManager: START u0 {flg=0x10800004 cmp=com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity (has extras)} from uid 10120 on display 0
08-23 00:24:17.406  5092  5092 I AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
08-23 00:24:17.458  5092  5092 D FileDisplayActivity: onStart() starting
08-23 00:24:17.471  5092  3456 D ExternalLinks: links disabled
08-23 00:24:17.501  5092  5092 E FileDisplayActivity: Access to unexisting list of files fragment!!
08-23 00:24:17.505  5092  5092 V BaseActivity: onNewIntent() start
08-23 00:24:17.508  5092  5092 V BaseActivity: onNewIntent() stop
08-23 00:24:17.511  1920  4825 I ActivityManager: START u0 {act=RESTART flg=0x14000000 cmp=com.nextcloud.android.beta/com.owncloud.android.ui.activity.FileDisplayActivity} from uid 10120 on display 0
08-23 00:24:17.521  5092  5092 V FileDisplayActivity: onResume() start
08-23 00:24:17.526  5092  5092 D FileDisplayActivity: onResume() starting
08-23 00:24:17.529  5092  5092 I OCFileListFragment: onAttach
08-23 00:24:17.535  5092  5092 I OCFileListFragment: onCreateView() start
08-23 00:24:17.535  5092  5092 D ExtendedListFragment: onCreateView
08-23 00:24:17.571  5092  5092 I OCFileListFragment: onCreateView() end
08-23 00:24:17.572  5092  5092 I OCFileListFragment: onActivityCreated() start
08-23 00:24:17.616  5092  5092 V FileDisplayActivity: onResume() end
08-23 00:24:17.620  5092  5092 D FileDisplayActivity: onDestroy() ending
08-23 00:24:17.677  5092  5092 D AuthenticatorActivity: onStop() ending
08-23 00:24:17.681  5092  5092 D AuthenticatorActivity: onDestroy() ending
08-23 00:24:17.710  5092  5259 E chromium: [ERROR:gl_context_virtual.cc(39)] Trying to make virtual context current without decoder.
08-23 00:24:17.722  5092  5092 D FileActivity: Operations service connected
08-23 00:24:17.723  5092  5092 D FileDisplayActivity: Download service connected
08-23 00:24:17.723  5092  5092 D FileDisplayActivity: Upload service connected
08-23 00:24:17.723  5092  5092 V FileDisplayActivity: onPause() start
08-23 00:24:17.726  2996 12147 E NfcService: setReaderMode() called while NFC is not enabled.
08-23 00:24:17.727  5092  5092 D FileDisplayActivity: onPause() ending
08-23 00:24:17.728  5092  5092 V FileDisplayActivity: onPause() end
08-23 00:24:17.766  5092  5092 E ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@b1e3227 that was originally bound here
08-23 00:24:17.766  5092  5092 E ActivityThread: android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@b1e3227 that was originally bound here
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ContextImpl.bindService(ContextImpl.java:1422)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:933)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.Activity.performResume(Activity.java:6788)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread.-wrap12(ActivityThread.java)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.os.Handler.dispatchMessage(Handler.java:102)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.os.Looper.loop(Looper.java:154)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at android.app.ActivityThread.main(ActivityThread.java:6186)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at java.lang.reflect.Method.invoke(Native Method)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
08-23 00:24:17.766  5092  5092 E ActivityThread:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
08-23 00:24:17.767  1920  2112 W ActivityManager: Unbind failed: could not find connection for android.os.BinderProxy@b987994
08-23 00:24:17.771  5092  5092 V FileDisplayActivity: onCreate() start
08-23 00:24:17.774  5092  5092 D FileDisplayActivity: onCreate(Bundle) starting
08-23 00:24:17.789  5092  5105 I AccountAuthenticator: Adding account with type nextcloud.beta and auth token null
08-23 00:24:17.796  1920 24624 I ActivityManager: START u0 {flg=0x10800004 cmp=com.nextcloud.android.beta/com.owncloud.android.authentication.AuthenticatorActivity (has extras)} from uid 10120 on display 0
08-23 00:24:17.846  5092  5092 I AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
08-23 00:24:17.934  5092  5092 D FileDisplayActivity: onStart() starting
08-23 00:24:17.949  5092  3467 D ExternalLinks: links disabled
08-23 00:24:17.978  5092  5092 E FileDisplayActivity: Access to unexisting list of files fragment!!
08-23 00:24:17.981  5092  5092 V FileDisplayActivity: onResume() start
08-23 00:24:17.984  5092  5092 D FileDisplayActivity: onResume() starting
08-23 00:24:17.987  5092  5092 I OCFileListFragment: onAttach
08-23 00:24:17.991  5092  5092 I OCFileListFragment: onCreateView() start
08-23 00:24:17.991  5092  5092 D ExtendedListFragment: onCreateView
08-23 00:24:18.026  5092  5092 I OCFileListFragment: onCreateView() end
08-23 00:24:18.027  5092  5092 I OCFileListFragment: onActivityCreated() start
08-23 00:24:18.073  5092  5092 V FileDisplayActivity: onResume() end
08-23 00:24:18.203  5092  5092 D FileActivity: Operations service connected
08-23 00:24:18.203  5092  5092 D FileDisplayActivity: Download service connected
08-23 00:24:18.204  5092  5092 D FileDisplayActivity: Upload service connected
08-23 00:24:18.204  5092  5092 V FileDisplayActivity: onPause() start
08-23 00:24:18.207  2996  3050 E NfcService: setReaderMode() called while NFC is not enabled.
08-23 00:24:18.207  5092  5092 D FileDisplayActivity: onPause() ending
08-23 00:24:18.208  5092  5092 V FileDisplayActivity: onPause() end
08-23 00:24:18.416  5092  5092 D AuthenticatorActivity: onCreate(Bundle) starting
08-23 00:24:18.419  1920 11083 I ActivityManager: START u0 {cmp=com.nextcloud.android.beta/com.nextcloud.client.onboarding.FirstRunActivity} from uid 10120 on display 0
08-23 00:24:18.462  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.463  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.479  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.487  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.487  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.492  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.494  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.494  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.506  5092  5092 W ResourceType: Too many attribute references, stopped at: 0x01010034
08-23 00:24:18.520  5092  5092 D AuthenticatorActivity: onStart() starting
08-23 00:24:18.523  5092  5092 D AuthenticatorActivity: onNewIntent()
08-23 00:24:18.526  5092  5092 D AuthenticatorActivity: onResume() starting
08-23 00:24:18.539  2996  3041 E NfcService: setReaderMode() called while NFC is not enabled.
08-23 00:24:18.539  5092  5092 D AuthenticatorActivity: onPause() ending
08-23 00:24:18.569  5092  5092 D FirstRunActivity: onCreate(Bundle) starting
08-23 00:24:18.604  5092  5092 D FirstRunActivity: onStart() starting
08-23 00:24:18.615  5092  5092 D FirstRunActivity: onResume() starting
08-23 00:24:18.792  1920  1980 I ActivityManager: Displayed com.nextcloud.android.beta/com.nextcloud.client.onboarding.FirstRunActivity: +252ms (total +1s508ms)
08-23 00:24:19.267  5092  5092 D AuthenticatorActivity: onSaveInstanceState(Bundle) starting
08-23 00:24:19.268  5092  5092 D AuthenticatorActivity: onStop() ending
08-23 00:24:19.297  5092  5092 D FileDisplayActivity: onStop() ending
08-23 00:24:19.307  5092  5092 D FileDisplayActivity: onDestroy() ending
08-23 00:24:19.323  5092  5092 D FileDisplayActivity: onStop() ending
08-23 00:24:19.331  5092  5092 D FileDisplayActivity: onDestroy() ending
08-23 00:24:19.336  5092  5092 V FileDownloader: Destroying service
08-23 00:24:19.337  5092  5092 V FileUploader: Destroying service
08-23 00:24:24.773  1920  1982 D LuxLevels: bright hysteresis constant= 0.1, threshold=6.539259, lux=5.944781
08-23 00:24:24.773  1920  1982 D LuxLevels: dark hysteresis constant= 0.2, threshold=4.7558246, lux=5.944781
08-23 00:24:25.246  1920  1963 E BatteryStatsService: power: Missing API
08-23 00:24:25.256  1920  2029 D WifiNative-HAL: Failing getSupportedFeatureset because HAL isn't started
08-23 00:24:25.266  1920  1963 E BatteryStatsService: no controller energy info supplied
08-23 00:24:25.266  1920  1963 E BatteryStatsService: no controller energy info supplied
08-23 00:24:25.290  1920  1963 E BatteryStatsService: modem info is invalid: ModemActivityInfo{ mTimestamp=0 mSleepTimeMs=0 mIdleTimeMs=0 mTxTimeMs[]=[0, 0, 0, 0, 0] mRxTimeMs=0 mEnergyUsed=0}
08-23 00:24:29.063 29655  1902 W WebSocketConnection: Sending keep alive...
08-23 00:24:29.353 29655  3135 W WebSocketConnection: WSC onMessage()
08-23 00:24:29.353 29655  3135 W WebSocketConnection: Message Type: 2
08-23 00:24:33.326 29655  2339 W WebSocketConnection: java.lang.IllegalArgumentException: Receiver not registered: org.whispersystems.signalservice.api.util.RealtimeSleepTimer$AlarmReceiver@53a97d1
08-23 00:24:33.326 29655  2339 W WebSocketConnection:   at android.app.LoadedApk.forgetReceiverDispatcher(LoadedApk.java:1007)
08-23 00:24:33.326 29655  2339 W WebSocketConnection:   at android.app.ContextImpl.unregisterReceiver(ContextImpl.java:1330)
08-23 00:24:33.326 29655  2339 W WebSocketConnection:   at android.content.ContextWrapper.unregisterReceiver(ContextWrapper.java:608)
08-23 00:24:33.326 29655  2339 W WebSocketConnection:   at org.whispersystems.signalservice.api.util.RealtimeSleepTimer.sleep(RealtimeSleepTimer.java:51)
08-23 00:24:33.326 29655  2339 W WebSocketConnection:   at org.whispersystems.signalservice.internal.websocket.WebSocketConnection$KeepAliveSender.run(WebSocketConnection.java:323)
08-23 00:24:33.326 29655  2339 W WebSocketConnection: 
08-23 00:24:33.331 29655  2339 W RealtimeSleepTimer: Setting alarm to wake up in 55000ms.
08-23 00:24:35.246 29655  3163 W WebSocketConnection: Sending keep alive...
08-23 00:24:35.254 29655  3163 W RealtimeSleepTimer: Setting alarm to wake up in 55000ms.
08-23 00:24:35.337  1920  2029 D WifiNative-HAL: Failing getSupportedFeatureset because HAL isn't started
08-23 00:24:35.344  1920  1963 E BatteryStatsService: no controller energy info supplied
08-23 00:24:35.344  1920  1963 E BatteryStatsService: no controller energy info supplied
08-23 00:24:35.356  1920  1963 E BatteryStatsService: power: Missing API
08-23 00:24:35.370  1920  1963 E BatteryStatsService: modem info is invalid: ModemActivityInfo{ mTimestamp=0 mSleepTimeMs=0 mIdleTimeMs=0 mTxTimeMs[]=[0, 0, 0, 0, 0] mRxTimeMs=0 mEnergyUsed=0}
08-23 00:24:35.520 29655  3135 W WebSocketConnection: WSC onMessage()
08-23 00:24:35.521 29655  3135 W WebSocketConnection: Message Type: 2
08-23 00:24:38.549 29655  2318 W WebSocketConnection: onFailure()
08-23 00:24:38.550 29655  2318 W WebSocketConnection: java.io.EOFException
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okio.RealBufferedSource.require(RealBufferedSource.java:61)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okio.RealBufferedSource.readByte(RealBufferedSource.java:74)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.internal.ws.WebSocketReader.readHeader(WebSocketReader.java:117)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.internal.ws.WebSocketReader.processNextFrame(WebSocketReader.java:101)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.internal.ws.RealWebSocket.loopReader(RealWebSocket.java:274)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.internal.ws.RealWebSocket$2.onResponse(RealWebSocket.java:214)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.RealCall$AsyncCall.execute(RealCall.java:206)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
08-23 00:24:38.550 29655  2318 W WebSocketConnection:   at java.lang.Thread.run(Thread.java:761)
08-23 00:24:38.550 29655  2318 W WebSocketConnection: 
08-23 00:24:38.550 29655  2318 W WebSocketConnection: onClose()...
08-23 00:24:38.550 29655  2318 W ApplicationDependencyPr: onDisconnected()
08-23 00:24:38.751 29655  2318 W WebSocketConnection: WSC connect()...
08-23 00:24:38.782 29655  2318 I ApplicationDependencyPr: onConnecting()
08-23 00:24:39.513 29655  3524 W WebSocketConnection: onConnected()
08-23 00:24:39.520 29655  3524 I ApplicationDependencyPr: onConnected()
08-23 00:24:39.526 29655  3526 W RealtimeSleepTimer: Setting alarm to wake up in 55000ms.
08-23 00:24:40.241 29655 29700 W IncomingMessageObserver: Application level read timeout...
08-23 00:24:40.243 29655 29700 D IncomingMessageObserver: Network requirement: true, app visible: false, gcm disabled: true
08-23 00:24:40.244 29655 29700 I IncomingMessageObserver: Reading message...
...

And from server side access.log:

...
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:31 -0700] "GET /status.php HTTP/1.1" 200 4725 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:31 -0700] "HEAD /remote.php/webdav/ HTTP/1.1" 401 1121 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:33 -0700] "GET /index.php/login/flow HTTP/1.1" 200 12988 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/core/js/oc.js?v=9e314e4c HTTP/1.1" 200 6355 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/apps/theming/image/background?v=10 HTTP/1.1" 304 450 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/apps/theming/image/logo?useSvg=1&v=10 HTTP/1.1" 304 450 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/apps/accessibility/js/accessibility?v=0 HTTP/1.1" 200 1044 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/apps/theming/image/logo?v=10 HTTP/1.1" 304 450 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:34 -0700] "GET /index.php/apps/theming/js/theming?v=10 HTTP/1.1" 200 1209 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:38 -0700] "GET /index.php/login/flow/grant?stateToken=YYY&clientIdentifier= HTTP/1.1" 303 926 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:39 -0700] "GET /index.php/login?redirect_url=/index.php/login/flow/grant%3FstateToken%XXX%26clientIdentifier%3D HTTP/1.1" 200 9845 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:23:40 -0700] "GET /index.php/core/js/oc.js?v=9e314e4c HTTP/1.1" 200 6355 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:05 -0700] "POST /index.php/login?redirect_url=/index.php/login/flow/grant%3FstateToken%XXX%26clientIdentifier%3D HTTP/1.1" 303 1503 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:07 -0700] "GET /index.php/login/flow/grant?stateToken=YYY&clientIdentifier= HTTP/1.1" 200 8957 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:09 -0700] "GET /index.php/core/js/oc.js?v=9e314e4c HTTP/1.1" 200 6425 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:12 -0700] "POST /index.php/login/flow HTTP/1.1" 303 1089 "-" "XXXXXXXXXXXXXXX (Android)" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:14 -0700] "GET /status.php HTTP/1.1" 200 4725 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:15 -0700] "HEAD /remote.php/webdav/ HTTP/1.1" 401 1129 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:15 -0700] "HEAD /remote.php/webdav/ HTTP/1.1" 200 1035 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822" 
XXX.XXX.XXX.XXX - - [23/Aug/2019:00:24:17 -0700] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 1734 "-" "Mozilla/5.0 (Android) Nextcloud-android/20190822"
...

@kiplingw thanks for the log, at a first glance I cannot see a problem

Can you try if on the same device another account is working?

If I login as the administrator it appears to work. If I login as my normal user it still fails.

I'm a bit confused. Was the issue not identified from the log message in the original issue description? Or has that NULL pointer dereference been fixed now?

If I login as the administrator it appears to work. If I login as my normal user it still fails.

Can you try if it fails also with another freshly created user and send the credentials to tobias at nextcloud dot com with a reference to this issue?

Done.

As "feared" this does not happen on my emulator/phone, so I can login without any problem.
In another issue which nearly the same problem we found via logcat a problem with the account manager…
But it is really hard to solve without access to a real phone.

@tobiasKaminsky, let us know if there's something else we can do with logcat that might help reveal a better debugging log.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

It's still an issue.

I tried upgrading server side to 16.0.5. The client still crashes on login. It's likely a client side issue with something to do with themes, external USB storage, Lineage, or something like that.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Still affected.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Still affected.

This request did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

Unless the stale bot actually expects further user submissions, the "stale" notifications are getting really annoying.

Hi
I'm with @phu9Suop, seems to be an issue with the account manager.
I've tested with NC app 3.9.2 on lineage 14.1 Moto Z Play, NC Server 17.0.1 and three different NC accounts.
For every user I got these error(s)

/com.nextcloud.client E/chromium: [ERROR:gl_context_virtual.cc(39)] Trying to make virtual context current without decoder.
/com.nextcloud.client E/ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection



md5-ae5ba735818480d7aa5011470b5bcba1



system_process W/AccountManagerService: insertAccountIntoDatabase: Account {name=MYUSER1@MYSERVER/nextcloud, type=nextcloud}, skipping since the account already exists



md5-6b151d2696c17965d36659cb3313a3c1



2019-12-29 18:29:09.339 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:09.340 5547-5547/com.nextcloud.client D/OperationsService: Starting command with id 1
2019-12-29 18:29:09.345 5547-6414/com.nextcloud.client D/OwnCloudClient #0: REQUEST GET /nextcloud/status.php
2019-12-29 18:29:09.348 5547-6414/com.nextcloud.client V/NativeCrypto: SSL shutdown failed: ssl=0xa2463988: I/O error during system call, Software caused connection abort
2019-12-29 18:29:09.348 5547-6414/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@3ff543f
2019-12-29 18:29:09.348 5547-6414/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 50000 and socket timeout 60000
2019-12-29 18:29:09.370 5547-6414/com.nextcloud.client I/ServerNameIndicator: SSLSocket implementation: org.conscrypt.Java8FileDescriptorSocket
2019-12-29 18:29:09.370 5547-6414/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:29:09.534 5547-6414/com.nextcloud.client W/HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
2019-12-29 18:29:09.538 5547-6414/com.nextcloud.client I/GetStatusRemoteOperation: Connection check at https://MYSERVER/nextcloud: Operation finished with HTTP status code -1 (success)
2019-12-29 18:29:09.538 5547-6414/com.nextcloud.client D/GetServerInfoOperation: Trying empty authorization to detect authentication method
2019-12-29 18:29:09.540 5547-6414/com.nextcloud.client D/OwnCloudClient #0: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:29:09.614 5547-6414/com.nextcloud.client I/AuthChallengeProcessor: basic authentication scheme selected
2019-12-29 18:29:09.615 5547-6414/com.nextcloud.client I/HttpMethodDirector: No credentials available for BASIC 'Nextcloud'@MYSERVER:443
2019-12-29 18:29:09.617 5547-6414/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
2019-12-29 18:29:09.617 5547-6414/com.nextcloud.client D/DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
2019-12-29 18:29:09.618 5547-6414/com.nextcloud.client D/OperationsService: Called 1 listeners
2019-12-29 18:29:09.618 5547-6414/com.nextcloud.client D/OperationsService: Stopping after command with id 1
2019-12-29 18:29:09.697 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:09.697 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:09.697 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:09.934 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:09.934 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:10.134 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:29:13.241 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:13.251 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:13.251 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:13.468 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:13.468 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:13.641 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:29:13.862 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state loginErrors of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:29:13.862 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state loginMessages of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:29:13.863 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state resetPasswordTarget of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:29:13.863 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state resetPasswordUser of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:29:31.182 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:31.182 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:31.183 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:29:31.194 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:31.196 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:31.673 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:31.674 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:31.841 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:29:38.996 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:29:38.996 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:29:39.138 5547-5547/com.nextcloud.client D/OperationsService: Starting command with id 2
2019-12-29 18:29:39.146 5547-6414/com.nextcloud.client D/OwnCloudClient #0: REQUEST GET /nextcloud/status.php
2019-12-29 18:29:39.218 5547-5553/com.nextcloud.client I/art: Do full code cache collection, code=92KB, data=125KB
2019-12-29 18:29:39.220 5547-6414/com.nextcloud.client W/HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
2019-12-29 18:29:39.220 5547-5553/com.nextcloud.client I/art: Starting a blocking GC JitCodeCache
2019-12-29 18:29:39.223 5547-5553/com.nextcloud.client I/art: After code cache collection, code=76KB, data=78KB
2019-12-29 18:29:39.227 5547-6414/com.nextcloud.client I/GetStatusRemoteOperation: Connection check at https://MYSERVER/nextcloud: Operation finished with HTTP status code -1 (success)
2019-12-29 18:29:39.227 5547-6414/com.nextcloud.client D/GetServerInfoOperation: Trying empty authorization to detect authentication method
2019-12-29 18:29:39.229 5547-6414/com.nextcloud.client D/OwnCloudClient #0: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:29:39.323 5547-6414/com.nextcloud.client I/AuthChallengeProcessor: basic authentication scheme selected
2019-12-29 18:29:39.325 5547-6414/com.nextcloud.client I/HttpMethodDirector: No credentials available for BASIC 'Nextcloud'@MYSERVER:443
2019-12-29 18:29:39.326 5547-6414/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
2019-12-29 18:29:39.326 5547-6414/com.nextcloud.client D/DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
2019-12-29 18:29:39.326 5547-6414/com.nextcloud.client D/OperationsService: Called 1 listeners
2019-12-29 18:29:39.326 5547-6414/com.nextcloud.client D/OperationsService: Stopping after command with id 2
2019-12-29 18:29:39.327 5547-6462/com.nextcloud.client D/OwnCloudClient #2: Creating OwnCloudClient
2019-12-29 18:29:39.329 5547-6462/com.nextcloud.client D/OwnCloudClient #2: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:29:39.403 5547-6462/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 200
2019-12-29 18:29:39.405 5547-6462/com.nextcloud.client D/OwnCloudClient #2: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:29:39.513 5547-5547/com.nextcloud.client D/AuthenticatorActivity: Successful access - time to save the account
2019-12-29 18:29:39.535 5547-5547/com.nextcloud.client D/BaseActivity: onAccountCreationSuccessful
2019-12-29 18:29:39.544 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onPause() ending
2019-12-29 18:29:39.549 5547-6463/com.nextcloud.client D/ExternalLinks: links disabled
2019-12-29 18:29:39.845 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onStop() ending
2019-12-29 18:29:39.848 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onDestroy() ending
2019-12-29 18:29:39.858 5547-5590/com.nextcloud.client E/chromium: [ERROR:gl_context_virtual.cc(39)] Trying to make virtual context current without decoder.
2019-12-29 18:29:39.871 5547-5547/com.nextcloud.client E/ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@47cf1b9 that was originally bound here
    android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@47cf1b9 that was originally bound here
        at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
        at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
        at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
        at android.app.ContextImpl.bindService(ContextImpl.java:1422)
        at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
        at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:948)
        at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
        at android.app.Activity.performResume(Activity.java:6788)
        at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
        at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757)
        at android.app.ActivityThread.-wrap12(ActivityThread.java)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:154)
        at android.app.ActivityThread.main(ActivityThread.java:6186)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
2019-12-29 18:30:24.369 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(126)] "OC.requestToken changed", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (126)



md5-33b32047c05e13dad1fa63fe691e1dbe



2019-12-29 18:46:09.867 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:09.868 5547-5547/com.nextcloud.client D/OperationsService: Starting command with id 1
2019-12-29 18:46:09.874 5547-6733/com.nextcloud.client D/OwnCloudClient #0: REQUEST GET /nextcloud/status.php
2019-12-29 18:46:09.878 5547-6733/com.nextcloud.client V/NativeCrypto: SSL shutdown failed: ssl=0xa2463988: I/O error during system call, Software caused connection abort
2019-12-29 18:46:09.879 5547-6733/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@3ff543f
2019-12-29 18:46:09.879 5547-6733/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 50000 and socket timeout 60000
2019-12-29 18:46:09.911 5547-6733/com.nextcloud.client I/ServerNameIndicator: SSLSocket implementation: org.conscrypt.Java8FileDescriptorSocket
2019-12-29 18:46:09.911 5547-6733/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:46:10.070 5547-6733/com.nextcloud.client W/HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
2019-12-29 18:46:10.074 5547-6733/com.nextcloud.client I/GetStatusRemoteOperation: Connection check at https://MYSERVER/nextcloud: Operation finished with HTTP status code -1 (success)
2019-12-29 18:46:10.074 5547-6733/com.nextcloud.client D/GetServerInfoOperation: Trying empty authorization to detect authentication method
2019-12-29 18:46:10.076 5547-6733/com.nextcloud.client D/OwnCloudClient #0: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:46:10.148 5547-6733/com.nextcloud.client I/AuthChallengeProcessor: basic authentication scheme selected
2019-12-29 18:46:10.149 5547-6733/com.nextcloud.client I/HttpMethodDirector: No credentials available for BASIC 'Nextcloud'@MYSERVER:443
2019-12-29 18:46:10.151 5547-6733/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
2019-12-29 18:46:10.151 5547-6733/com.nextcloud.client D/DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
2019-12-29 18:46:10.151 5547-6733/com.nextcloud.client D/OperationsService: Called 1 listeners
2019-12-29 18:46:10.151 5547-6733/com.nextcloud.client D/OperationsService: Stopping after command with id 1
2019-12-29 18:46:10.210 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:10.210 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:10.210 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:10.483 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:10.483 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:10.720 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:46:19.976 5547-5547/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:19.986 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:19.987 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:20.260 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:20.260 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:20.439 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:46:20.590 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state loginErrors of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:46:20.590 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state loginMessages of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:46:20.590 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state resetPasswordTarget of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:46:20.591 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(1013)] "Could not find initial state resetPasswordUser of core", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (1013)
2019-12-29 18:46:51.352 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:51.352 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:51.352 5547-5634/com.nextcloud.client W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
2019-12-29 18:46:51.363 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:51.363 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:51.823 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:51.823 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:52.027 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(396)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://MYSERVER/nextcloud/core/js/dist/main.js?v=6ceebd7a-7 (396)
2019-12-29 18:46:54.649 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(6)] "fidobridge start execution", source:  (6)
2019-12-29 18:46:54.649 5547-5547/com.nextcloud.client I/chromium: [INFO:CONSOLE(80)] "fidobridge end execution", source:  (80)
2019-12-29 18:46:54.800 5547-5547/com.nextcloud.client D/OperationsService: Starting command with id 2
2019-12-29 18:46:54.804 5547-6733/com.nextcloud.client D/OwnCloudClient #0: REQUEST GET /nextcloud/status.php
2019-12-29 18:46:54.895 5547-6733/com.nextcloud.client W/HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
2019-12-29 18:46:54.899 5547-6733/com.nextcloud.client I/GetStatusRemoteOperation: Connection check at https://MYSERVER/nextcloud: Operation finished with HTTP status code -1 (success)
2019-12-29 18:46:54.899 5547-6733/com.nextcloud.client D/GetServerInfoOperation: Trying empty authorization to detect authentication method
2019-12-29 18:46:54.902 5547-6733/com.nextcloud.client D/OwnCloudClient #0: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:46:54.992 5547-6733/com.nextcloud.client I/AuthChallengeProcessor: basic authentication scheme selected
2019-12-29 18:46:54.994 5547-6733/com.nextcloud.client I/HttpMethodDirector: No credentials available for BASIC 'Nextcloud'@MYSERVER:443
2019-12-29 18:46:54.996 5547-6733/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 401(FAIL)
2019-12-29 18:46:54.996 5547-6733/com.nextcloud.client D/DetectAuthenticationMethodOperation: Authentication method found: BASIC_HTTP_AUTH
2019-12-29 18:46:54.996 5547-6733/com.nextcloud.client D/OperationsService: Called 1 listeners
2019-12-29 18:46:54.997 5547-6733/com.nextcloud.client D/OperationsService: Stopping after command with id 2
2019-12-29 18:46:54.999 5547-6759/com.nextcloud.client D/OwnCloudClient #3: Creating OwnCloudClient
2019-12-29 18:46:55.002 5547-6759/com.nextcloud.client D/OwnCloudClient #3: REQUEST HEAD /nextcloud/remote.php/webdav/
2019-12-29 18:46:55.106 5547-6759/com.nextcloud.client D/ExistenceCheckRemoteOperation: Existence check for https://MYSERVER/nextcloud/remote.php/webdav/ targeting for  existence finished with HTTP status 200
2019-12-29 18:46:55.107 5547-6759/com.nextcloud.client D/OwnCloudClient #3: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:55.254 5547-5547/com.nextcloud.client D/AuthenticatorActivity: Successful access - time to save the account
2019-12-29 18:46:55.477 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onPause() ending
2019-12-29 18:46:55.493 5547-5547/com.nextcloud.client D/BaseActivity: onAccountCreationSuccessful
2019-12-29 18:46:55.531 5547-6797/com.nextcloud.client D/OwnCloudClient #4: Creating OwnCloudClient
2019-12-29 18:46:55.532 5547-6797/com.nextcloud.client D/AccountUtils: Restoring cookies for MYUSER2@MYSERVER/nextcloud
2019-12-29 18:46:55.533 5547-6797/com.nextcloud.client D/AccountUtils: Restoring cookies for MYUSER2@MYSERVER/nextcloud
2019-12-29 18:46:55.534 5547-6798/com.nextcloud.client D/OwnCloudClient #5: Creating OwnCloudClient
2019-12-29 18:46:55.534 5547-6798/com.nextcloud.client D/AccountUtils: Restoring cookies for MYUSER2@MYSERVER/nextcloud
2019-12-29 18:46:55.536 5547-6798/com.nextcloud.client D/AccountUtils: Restoring cookies for MYUSER2@MYSERVER/nextcloud
2019-12-29 18:46:55.542 5547-6800/com.nextcloud.client D/ExternalLinks: links disabled
2019-12-29 18:46:55.543 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() start
2019-12-29 18:46:55.557 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() stop
2019-12-29 18:46:55.558 5547-6798/com.nextcloud.client D/OwnCloudClient #5: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:55.564 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() start
2019-12-29 18:46:55.570 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() stop
2019-12-29 18:46:55.580 5547-6797/com.nextcloud.client D/Avatar: URI: https://MYSERVER/nextcloud/index.php/avatar/MYUSER2/384
2019-12-29 18:46:55.580 5547-6797/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/index.php/avatar/MYUSER2/384
2019-12-29 18:46:55.581 5547-6797/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@d351d3c
2019-12-29 18:46:55.581 5547-6797/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 60000 and socket timeout 60000
2019-12-29 18:46:55.606 5547-5547/com.nextcloud.client V/FileDisplayActivity: onCreate() start
2019-12-29 18:46:55.607 5547-5547/com.nextcloud.client D/FileDisplayActivity: onCreate(Bundle) starting
2019-12-29 18:46:55.616 5547-6797/com.nextcloud.client I/ServerNameIndicator: SSLSocket implementation: org.conscrypt.Java8FileDescriptorSocket
2019-12-29 18:46:55.616 5547-6797/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:46:55.626 5547-5547/com.nextcloud.client I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
2019-12-29 18:46:55.695 5547-5547/com.nextcloud.client D/FileDisplayActivity: onStart() starting
2019-12-29 18:46:55.703 5547-6803/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/capabilities
2019-12-29 18:46:55.744 5547-6804/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:55.746 5547-6804/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@e987848
2019-12-29 18:46:55.746 5547-6804/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 60000 and socket timeout 60000
2019-12-29 18:46:55.747 5547-6804/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:46:55.774 5547-5547/com.nextcloud.client D/FileDisplayActivity: Initializing Fragments in onAccountChanged..
2019-12-29 18:46:55.774 5547-5547/com.nextcloud.client E/FileDisplayActivity: Access to unexisting list of files fragment!!
2019-12-29 18:46:55.774 5547-5547/com.nextcloud.client E/FileDisplayActivity: Still have a chance to lose the initialization of list fragment >(
2019-12-29 18:46:55.782 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: Successful response: {"ocs":{"meta":{"status":"ok","statuscode":100,"message":"OK","totalitems":"","itemsperpage":""},"data":{"version":{"major":17,"minor":0,"micro":1,"string":"17.0.1","edition":"","extendedSupport":false},"capabilities":{"core":{"pollinterval":60,"webdav-root":"remote.php\/webdav"},"bruteforce":{"delay":0},"activity":{"apiv2":["filters","filters-api","previews","rich-strings"]},"ocm":{"enabled":true,"apiVersion":"1.0-proposal1","endPoint":"https:\/\/MYSERVER\/nextcloud\/ocm","resourceTypes":[{"name":"file","shareTypes":["user","group"],"protocols":{"webdav":"\/public.php\/webdav\/"}}]},"dav":{"chunking":"1.0"},"files_sharing":{"api_enabled":true,"public":{"enabled":true,"password":{"enforced":true,"askForOptionalPassword":false},"expire_date":{"enabled":true,"days":"7","enforced":true},"multiple_links":true,"send_mail":false,"upload":true,"upload_files_drop":true},"resharing":false,"user":{"send_mail":false,"expire_date":{"enabled":true}},"group_sharing":true,"group":{"enabled":true,"expire_date":{"enabled":true}},"default_permissions":7,"federation":{"outgoing":false,"incoming":false,"expire_date":{"enabled":true}},"sharebymail":{"enabled":true,"upload_files_drop":{"enabled":true},"password":{"enabled":true},"expire_date":{"enabled":true}}},"notifications":{"ocs-endpoints":["list","get","delete","delete-all","icons","rich-strings","action-web"],"push":["devices","object-data","delete"],"admin-notifications":["ocs","cli"]},"password_policy":{"minLength":8,"enforceNonCommonPassword":true,"enforceNumericCharacters":true,"enforceSpecialCharacters":true,"enforceUpperLowerCase":true,"api":{"generate":"https:\/\/MYSERVER\/nextcloud\/ocs\/v2.phpoud\/ocsapp\/apps\/password_policy\/api\/v1\/generate","validate":"https:\/\/MYSERVER\/nextcloud\/ocs\/v2.phpoud\/ocsapp\/apps\/password_policy\/api\/v1\/validate"}},"theming":{"name":"Nextcloud","url":"https:\/\/nextcloud.com","slogan":"a safe home for all your data","color":"#98C9BC","color-text":"#000000","color-element":"#98C9BC","logo":"https:\/\/MYSERVER\/nextcloud\/apps\/theming\/image\/logo?useSvg=1&v=7","background":"https:\/\/MYSERVER\/nextcloud\/core\/img\/background.png?v=7","background-plain":false,"background-default":true},"files":{"bigfilechunking":true,"blacklisted_files":[".htaccess"],"undelete":true,"versioning":true}}}}}
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added version
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added core
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added files_sharing
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added files
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added theming
2019-12-29 18:46:55.783 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added notifications
2019-12-29 18:46:55.784 5547-6803/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Get Capabilities completed 
2019-12-29 18:46:55.789 5547-6797/com.nextcloud.client V/ArbitraryDataProvider: Adding arbitrary data with cloud id: MYUSER2@MYSERVER/nextcloud key: avatar value: 55124ccb6a3bbe71cc26c5f1a4a9b626
2019-12-29 18:46:55.821 5547-6797/com.nextcloud.client V/ArbitraryDataProvider: Adding arbitrary data with cloud id: MYUSER2@MYSERVER/nextcloud key: avatarTimestamp value: 1577641615813
2019-12-29 18:46:55.822 5547-6803/com.nextcloud.client D/ExternalLinks: links disabled
2019-12-29 18:46:55.853 5547-6807/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:55.900 5547-5547/com.nextcloud.client E/FileDisplayActivity: Access to unexisting list of files fragment!!
2019-12-29 18:46:55.903 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() start
2019-12-29 18:46:55.906 5547-5547/com.nextcloud.client V/BaseActivity: onNewIntent() stop
2019-12-29 18:46:55.913 5547-5547/com.nextcloud.client V/FileDisplayActivity: onResume() start
2019-12-29 18:46:55.915 5547-5547/com.nextcloud.client D/FileDisplayActivity: onResume() starting
2019-12-29 18:46:55.916 5547-5547/com.nextcloud.client I/OCFileListFragment: onAttach
2019-12-29 18:46:55.931 5547-5547/com.nextcloud.client I/OCFileListFragment: onCreateView() start
2019-12-29 18:46:55.931 5547-5547/com.nextcloud.client D/ExtendedListFragment: onCreateView
2019-12-29 18:46:55.990 5547-5547/com.nextcloud.client I/OCFileListFragment: onCreateView() end
2019-12-29 18:46:55.990 5547-5547/com.nextcloud.client I/OCFileListFragment: onActivityCreated() start
2019-12-29 18:46:56.121 5547-5547/com.nextcloud.client V/FileDisplayActivity: onResume() end
2019-12-29 18:46:56.122 5547-5547/com.nextcloud.client I/Choreographer: Skipped 31 frames!  The application may be doing too much work on its main thread.
2019-12-29 18:46:56.125 5547-5547/com.nextcloud.client D/FileActivity: Operations service connected
2019-12-29 18:46:56.125 5547-5547/com.nextcloud.client D/FileDisplayActivity: Download service connected
2019-12-29 18:46:56.160 5547-5547/com.nextcloud.client D/FileDisplayActivity: Upload service connected
2019-12-29 18:46:56.250 5547-5547/com.nextcloud.client V/FileDisplayActivity: onPause() start
2019-12-29 18:46:56.256 5547-5547/com.nextcloud.client D/FileDisplayActivity: onPause() ending
2019-12-29 18:46:56.257 5547-5547/com.nextcloud.client V/FileDisplayActivity: onPause() end
2019-12-29 18:46:56.310 5547-5547/com.nextcloud.client V/FileDisplayActivity: onCreate() start
2019-12-29 18:46:56.312 5547-5547/com.nextcloud.client D/FileDisplayActivity: onCreate(Bundle) starting
2019-12-29 18:46:56.329 5547-5547/com.nextcloud.client I/AppCompatViewInflater: app:theme is now deprecated. Please move to using android:theme instead.
2019-12-29 18:46:56.411 5547-5547/com.nextcloud.client D/FileDisplayActivity: onStart() starting
2019-12-29 18:46:56.430 5547-6809/com.nextcloud.client D/ExternalLinks: links disabled
2019-12-29 18:46:56.450 5547-6810/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:56.473 5547-5547/com.nextcloud.client D/FileDisplayActivity: Initializing Fragments in onAccountChanged..
2019-12-29 18:46:56.473 5547-5547/com.nextcloud.client E/FileDisplayActivity: Access to unexisting list of files fragment!!
2019-12-29 18:46:56.473 5547-5547/com.nextcloud.client E/FileDisplayActivity: Still have a chance to lose the initialization of list fragment >(
2019-12-29 18:46:56.526 5547-6811/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:56.555 5547-5553/com.nextcloud.client I/art: Do partial code cache collection, code=99KB, data=125KB
2019-12-29 18:46:56.557 5547-5553/com.nextcloud.client I/art: After code cache collection, code=91KB, data=119KB
2019-12-29 18:46:56.557 5547-5553/com.nextcloud.client I/art: Increasing code cache capacity to 512KB
2019-12-29 18:46:56.565 5547-5547/com.nextcloud.client E/FileDisplayActivity: Access to unexisting list of files fragment!!
2019-12-29 18:46:56.568 5547-5547/com.nextcloud.client V/FileDisplayActivity: onResume() start
2019-12-29 18:46:56.570 5547-5547/com.nextcloud.client D/FileDisplayActivity: onResume() starting
2019-12-29 18:46:56.571 5547-5547/com.nextcloud.client I/OCFileListFragment: onAttach
2019-12-29 18:46:56.584 5547-5547/com.nextcloud.client I/OCFileListFragment: onCreateView() start
2019-12-29 18:46:56.584 5547-5547/com.nextcloud.client D/ExtendedListFragment: onCreateView
2019-12-29 18:46:56.640 5547-5547/com.nextcloud.client I/OCFileListFragment: onCreateView() end
2019-12-29 18:46:56.640 5547-5547/com.nextcloud.client I/OCFileListFragment: onActivityCreated() start
2019-12-29 18:46:56.765 5547-5547/com.nextcloud.client V/FileDisplayActivity: onResume() end
2019-12-29 18:46:56.831 5547-5547/com.nextcloud.client D/FileActivity: Operations service connected
2019-12-29 18:46:56.831 5547-5547/com.nextcloud.client D/FileDisplayActivity: Download service connected
2019-12-29 18:46:56.865 5547-5547/com.nextcloud.client D/FileDisplayActivity: Upload service connected
2019-12-29 18:46:57.064 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/status.php
2019-12-29 18:46:57.113 5547-5547/com.nextcloud.client D/FileDisplayActivity: onStop() ending
2019-12-29 18:46:57.115 5547-5547/com.nextcloud.client D/FileDisplayActivity: onDestroy() ending
2019-12-29 18:46:57.119 5547-5547/com.nextcloud.client D/FileDisplayActivity: onDestroy() ending
2019-12-29 18:46:57.122 5547-6813/com.nextcloud.client W/HttpMethodBase: Going to buffer response body of large or unknown size. Using getResponseBodyAsStream instead is recommended.
2019-12-29 18:46:57.142 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onStop() ending
2019-12-29 18:46:57.144 5547-5547/com.nextcloud.client D/AuthenticatorActivity: onDestroy() ending
2019-12-29 18:46:57.147 5547-6813/com.nextcloud.client D/UpdateOCVersionOperation: Got new OC version 17.0.1.1
2019-12-29 18:46:57.147 5547-6813/com.nextcloud.client I/UpdateOCVersionOperation: Check for update of Nextcloud server version at https://MYSERVER/nextcloud/remote.php/webdav: Operation finished with HTTP status code -1 (success)
2019-12-29 18:46:57.148 5547-5590/com.nextcloud.client E/chromium: [ERROR:gl_context_virtual.cc(39)] Trying to make virtual context current without decoder.
2019-12-29 18:46:57.149 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/capabilities
2019-12-29 18:46:57.155 5547-5547/com.nextcloud.client E/ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@d82ed01 that was originally bound here
    android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@d82ed01 that was originally bound here
        at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
        at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
        at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
        at android.app.ContextImpl.bindService(ContextImpl.java:1422)
        at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
        at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:948)
        at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
        at android.app.Activity.performResume(Activity.java:6788)
        at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
        at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757)
        at android.app.ActivityThread.-wrap12(ActivityThread.java)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1496)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:154)
        at android.app.ActivityThread.main(ActivityThread.java:6186)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
2019-12-29 18:46:57.228 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: Successful response: {"ocs":{"meta":{"status":"ok","statuscode":100,"message":"OK","totalitems":"","itemsperpage":""},"data":{"version":{"major":17,"minor":0,"micro":1,"string":"17.0.1","edition":"","extendedSupport":false},"capabilities":{"core":{"pollinterval":60,"webdav-root":"remote.php\/webdav"},"bruteforce":{"delay":0},"activity":{"apiv2":["filters","filters-api","previews","rich-strings"]},"ocm":{"enabled":true,"apiVersion":"1.0-proposal1","endPoint":"https:\/\/MYSERVER\/nextcloud\/ocm","resourceTypes":[{"name":"file","shareTypes":["user","group"],"protocols":{"webdav":"\/public.php\/webdav\/"}}]},"dav":{"chunking":"1.0"},"files_sharing":{"api_enabled":true,"public":{"enabled":true,"password":{"enforced":true,"askForOptionalPassword":false},"expire_date":{"enabled":true,"days":"7","enforced":true},"multiple_links":true,"send_mail":false,"upload":true,"upload_files_drop":true},"resharing":false,"user":{"send_mail":false,"expire_date":{"enabled":true}},"group_sharing":true,"group":{"enabled":true,"expire_date":{"enabled":true}},"default_permissions":7,"federation":{"outgoing":false,"incoming":false,"expire_date":{"enabled":true}},"sharebymail":{"enabled":true,"upload_files_drop":{"enabled":true},"password":{"enabled":true},"expire_date":{"enabled":true}}},"notifications":{"ocs-endpoints":["list","get","delete","delete-all","icons","rich-strings","action-web"],"push":["devices","object-data","delete"],"admin-notifications":["ocs","cli"]},"password_policy":{"minLength":8,"enforceNonCommonPassword":true,"enforceNumericCharacters":true,"enforceSpecialCharacters":true,"enforceUpperLowerCase":true,"api":{"generate":"https:\/\/MYSERVER\/nextcloud\/ocs\/v2.phpoud\/ocsapp\/apps\/password_policy\/api\/v1\/generate","validate":"https:\/\/MYSERVER\/nextcloud\/ocs\/v2.phpoud\/ocsapp\/apps\/password_policy\/api\/v1\/validate"}},"theming":{"name":"Nextcloud","url":"https:\/\/nextcloud.com","slogan":"a safe home for all your data","color":"#98C9BC","color-text":"#000000","color-element":"#98C9BC","logo":"https:\/\/MYSERVER\/nextcloud\/apps\/theming\/image\/logo?useSvg=1&v=7","background":"https:\/\/MYSERVER\/nextcloud\/core\/img\/background.png?v=7","background-plain":false,"background-default":true},"files":{"bigfilechunking":true,"blacklisted_files":[".htaccess"],"undelete":true,"versioning":true}}}}}
2019-12-29 18:46:57.230 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added version
2019-12-29 18:46:57.230 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added core
2019-12-29 18:46:57.231 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added files_sharing
2019-12-29 18:46:57.231 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added files
2019-12-29 18:46:57.231 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added theming
2019-12-29 18:46:57.231 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Added notifications
2019-12-29 18:46:57.231 5547-6813/com.nextcloud.client D/GetCapabilitiesRemoteOperation: *** Get Capabilities completed 
2019-12-29 18:46:57.251 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v1.php/cloud/user
2019-12-29 18:46:57.366 5547-6813/com.nextcloud.client I/RefreshFolderOperation: Got display name: com.owncloud.android.lib.common.UserInfo@88ba2fa
2019-12-29 18:46:57.366 5547-6813/com.nextcloud.client D/RefreshFolderOperation: Checking changes in MYUSER2@MYSERVER/nextcloud/
2019-12-29 18:46:57.369 5547-6813/com.nextcloud.client W/System.err: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
2019-12-29 18:46:57.370 5547-6813/com.nextcloud.client W/System.err: SLF4J: Defaulting to no-operation (NOP) logger implementation
2019-12-29 18:46:57.370 5547-6813/com.nextcloud.client W/System.err: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
2019-12-29 18:46:57.450 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST PROPFIND /nextcloud/remote.php/webdav/
2019-12-29 18:46:57.617 5547-6813/com.nextcloud.client I/RefreshFolderOperation: Checked MYUSER2@MYSERVER/nextcloud/ : changed
2019-12-29 18:46:57.622 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST PROPFIND /nextcloud/remote.php/webdav/
2019-12-29 18:46:57.779 5547-6813/com.nextcloud.client I/ReadFolderRemoteOperation: Synchronized /: Operation finished with HTTP status code 207 (success)
2019-12-29 18:46:57.779 5547-6813/com.nextcloud.client D/RefreshFolderOperation: Synchronizing MYUSER2@MYSERVER/nextcloud/
2019-12-29 18:46:57.783 5547-6813/com.nextcloud.client D/RefreshFolderOperation: Remote folder / changed - starting update of local data 
2019-12-29 18:46:57.808 5547-6813/com.nextcloud.client D/FileDataStorageManager: Saving folder / with 6 children and 0 files to remove
2019-12-29 18:46:57.853 5547-6813/com.nextcloud.client D/FileDataStorageManager: Sending 7 operations to FileContentProvider
2019-12-29 18:46:57.854 5547-6813/com.nextcloud.client D/FileContentProvider: applying batch in provider com.owncloud.android.providers.FileContentProvider@5ec5cd9 (temporary: false)
2019-12-29 18:46:57.881 5547-6813/com.nextcloud.client D/FileContentProvider: applied batch in provider com.owncloud.android.providers.FileContentProvider@5ec5cd9
2019-12-29 18:46:57.895 5547-6813/com.nextcloud.client D/RefreshFolderOperation: Send broadcast com.owncloud.android.operations.RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED
2019-12-29 18:46:57.896 5547-5547/com.nextcloud.client D/FileDisplayActivity: Received broadcast com.owncloud.android.operations.RefreshFolderOperation.EVENT_SINGLE_FOLDER_CONTENTS_SYNCED
2019-12-29 18:46:57.897 5547-6813/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/ocs/v2.php/apps/files_sharing/api/v1/shares
2019-12-29 18:46:57.947 5547-5547/com.nextcloud.client D/FileDisplayActivity: Setting progress visibility to true
2019-12-29 18:46:57.968 5547-6813/com.nextcloud.client D/GetSharesForFileRemoteOperation: Got 0 shares
2019-12-29 18:46:57.982 5547-6813/com.nextcloud.client D/FileDataStorageManager: Sending 6 operations to FileContentProvider
2019-12-29 18:46:57.982 5547-6813/com.nextcloud.client D/FileContentProvider: applying batch in provider com.owncloud.android.providers.FileContentProvider@5ec5cd9 (temporary: false)
2019-12-29 18:46:57.989 5547-6813/com.nextcloud.client D/FileContentProvider: applied batch in provider com.owncloud.android.providers.FileContentProvider@5ec5cd9
2019-12-29 18:46:57.989 5547-6813/com.nextcloud.client D/RefreshFolderOperation: Send broadcast com.owncloud.android.operations.RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED
2019-12-29 18:46:58.036 5547-6806/com.nextcloud.client D/ThumbnailsCacheManager: generate thumbnail: Nextcloud.png URI: https://MYSERVER/nextcloud/index.php/apps/files/api/v1/thumbnail/256/256/Nextcloud.png
2019-12-29 18:46:58.036 5547-6806/com.nextcloud.client D/OwnCloudClient #4: REQUEST GET /nextcloud/index.php/apps/files/api/v1/thumbnail/256/256/Nextcloud.png
2019-12-29 18:46:58.093 5547-5547/com.nextcloud.client D/FileDisplayActivity: Received broadcast com.owncloud.android.operations.RefreshFolderOperation.EVENT_SINGLE_FOLDER_SHARES_SYNCED
2019-12-29 18:46:58.141 5547-5547/com.nextcloud.client D/FileDisplayActivity: Setting progress visibility to false
2019-12-29 18:46:58.193 5547-6806/com.nextcloud.client D/ThumbnailsCacheManager: add thumbnail to cache: Nextcloud.png
2019-12-29 18:47:30.787 5547-6826/com.nextcloud.client D/PlatformJobService: Run job, request{id=6, tag=MediaFoldersDetectionJob, transient=false}, waited 01:42:02, interval 00:15:00, flex 00:05:00
2019-12-29 18:47:30.787 5547-6825/com.nextcloud.client D/PlatformJobService: Run job, request{id=5, tag=FilesSyncJob, transient=false}, waited 01:42:02, interval 00:15:00, flex 00:05:00
2019-12-29 18:47:30.787 5547-6825/com.nextcloud.client I/JobExecutor: Executing request{id=5, tag=FilesSyncJob, transient=false}, context PlatformJobService
2019-12-29 18:47:30.789 5547-6826/com.nextcloud.client I/JobExecutor: Executing request{id=6, tag=MediaFoldersDetectionJob, transient=false}, context PlatformJobService
2019-12-29 18:47:30.803 5547-6827/com.nextcloud.client I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=FilesSyncJob, tag=FilesSyncJob}
2019-12-29 18:47:30.803 5547-6829/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@e5fe4a5
2019-12-29 18:47:30.803 5547-6829/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 0 and socket timeout 0
2019-12-29 18:47:30.809 5547-6829/com.nextcloud.client I/ServerNameIndicator: SSLSocket implementation: org.conscrypt.Java8FileDescriptorSocket
2019-12-29 18:47:30.809 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for 0
2019-12-29 18:47:30.809 5547-6829/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:47:30.822 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for Camera
2019-12-29 18:47:30.835 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for DCIM
2019-12-29 18:47:30.845 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for Download
2019-12-29 18:47:30.857 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for Pictures
2019-12-29 18:47:30.859 5547-6825/com.nextcloud.client D/PlatformJobService: Finished job, request{id=5, tag=FilesSyncJob, transient=false} SUCCESS
2019-12-29 18:47:30.871 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for Screenshots
2019-12-29 18:47:30.890 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for VideoSnapshots
2019-12-29 18:47:30.900 5547-6828/com.nextcloud.client D/MediaProvider: Reading images for images
2019-12-29 18:47:30.926 5547-6828/com.nextcloud.client D/MediaProvider: Reading videos for Camera
2019-12-29 18:47:30.936 5547-6828/com.nextcloud.client D/MediaProvider: Reading videos for Movies
2019-12-29 18:47:30.946 5547-6828/com.nextcloud.client D/MediaProvider: Reading videos for Download
2019-12-29 18:47:30.954 5547-6828/com.nextcloud.client D/MediaProvider: Reading videos for 0
2019-12-29 18:47:30.972 5547-6828/com.nextcloud.client V/ArbitraryDataProvider: Updating arbitrary data with cloud id: global key: media_folders value: {"imageMediaFolders":["/storage/emulated/0",...],"videoMediaFolders":[]}
2019-12-29 18:47:30.980 5547-6828/com.nextcloud.client I/JobExecutor: Finished job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=MediaFoldersDetectionJob, tag=MediaFoldersDetectionJob}
2019-12-29 18:47:30.985 5547-6826/com.nextcloud.client D/PlatformJobService: Finished job, request{id=6, tag=MediaFoldersDetectionJob, transient=false} SUCCESS
2019-12-29 18:47:33.413 5547-6829/com.nextcloud.client D/AdvancedSslSocketFactory: Creating SSL Socket with remote MYSERVER:443, local null:0, params: org.apache.commons.httpclient.params.HttpConnectionParams@326202b
2019-12-29 18:47:33.413 5547-6829/com.nextcloud.client D/AdvancedSslSocketFactory:  ... with connection timeout 0 and socket timeout 0
2019-12-29 18:47:33.418 5547-6829/com.nextcloud.client I/ServerNameIndicator: SNI done, hostname: MYSERVER
2019-12-29 18:47:55.035 5547-5547/com.nextcloud.client V/FileDisplayActivity: onPause() start
2019-12-29 18:47:55.085 5547-5547/com.nextcloud.client D/FileDisplayActivity: onPause() ending
2019-12-29 18:47:55.085 5547-5547/com.nextcloud.client V/FileDisplayActivity: onPause() end
2019-12-29 18:47:55.087 5547-5547/com.nextcloud.client V/FileDisplayActivity: onSaveInstanceState() start
2019-12-29 18:47:55.090 5547-5547/com.nextcloud.client D/FileDisplayActivity: onSaveInstanceState(Bundle) starting
2019-12-29 18:47:55.091 5547-5547/com.nextcloud.client D/ExtendedListFragment: onSaveInstanceState()
2019-12-29 18:47:55.092 5547-5547/com.nextcloud.client V/FileDisplayActivity: onSaveInstanceState() end
2019-12-29 18:47:55.095 5547-5547/com.nextcloud.client D/FileDisplayActivity: onStop() ending

Interesting observation: After one (the first ever) successful login on another LineageOS 14.1 device I can successfully login on the other LineageOS 14.1 device.

I am also affected by this problem and the trace is very much the same:

01-10 12:03:38.617 11488 11488 E ActivityThread: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@7674538 that was originally bound here
01-10 12:03:38.617 11488 11488 E ActivityThread: android.app.ServiceConnectionLeaked: Activity com.owncloud.android.authentication.AuthenticatorActivity has leaked ServiceConnection com.owncloud.android.authentication.AuthenticatorActivity$OperationsServiceConnection@7674538 that was originally bound here
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1336)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1231)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1450)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ContextImpl.bindService(ContextImpl.java:1422)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.content.ContextWrapper.bindService(ContextWrapper.java:636)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at com.owncloud.android.authentication.AuthenticatorActivity.onResume(AuthenticatorActivity.java:948)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1270)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.Activity.performResume(Activity.java:6788)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3431)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3494)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2757)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:4556)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.-wrap19(ActivityThread.java)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1502)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.os.Handler.dispatchMessage(Handler.java:102)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.os.Looper.loop(Looper.java:154)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at android.app.ActivityThread.main(ActivityThread.java:6186)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at java.lang.reflect.Method.invoke(Native Method)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
01-10 12:03:38.617 11488 11488 E ActivityThread:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)

It keeps crashing after 3.10.1. BTW I am not using a self-signed certificate

Hi again,
in my case in was a problem with the account manager as supposed above.
I found some zombie accounts for my nextcloud in the database, removed these entries and can login again.
If anybody wants to check: the DB files where the zombies hid was in
/data/system_ce/0/accounts_ce.db

According to stacktrace there are lots of different causes mixed up here.
I will only answer to the first one:

java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference
at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:116)
at com.owncloud.android.utils.ThemeUtils.primaryColor(ThemeUtils.java:102)
at com.owncloud

This seems to happen when context is null, which should not happen.
As we use this all over the place, it is really hard to find out which is triggering this :/
Is this happening reliable? At which state?

This bug report did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you!

I think I speak for everybody when I say I really hope that bot deletes itself.

I checked the code. It looks like the problem has been fixed long time ago. Some users report that it still crashes but none has produced any evidence in form of a stacktrace.

Whatever is causing crashes now most likely is a different problem.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rainer042 picture rainer042  ·  3Comments

tobiasKaminsky picture tobiasKaminsky  ·  3Comments

daywalk3r666 picture daywalk3r666  ·  3Comments

Tie-fighter picture Tie-fighter  ·  3Comments

tobiasKaminsky picture tobiasKaminsky  ·  3Comments