use grey theme if no theming of elements is possible

This commit is contained in:
tobiasKaminsky 2017-06-21 10:52:02 +02:00 committed by AndyScherzinger
parent aefdbb29f9
commit d80ac412c0
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
4 changed files with 21 additions and 11 deletions

View file

@ -178,7 +178,8 @@ dependencies {
compile name: 'touch-image-view'
compile 'com.android.support:multidex:1.0.1'
compile 'com.github.nextcloud:android-library:1.0.21'
// compile 'com.github.nextcloud:android-library:1.0.21'
compile project(':nextcloud-android-library')
compile "com.android.support:support-v4:${supportLibraryVersion}"
compile "com.android.support:design:${supportLibraryVersion}"
compile 'com.jakewharton:disklrucache:2.0.2'

View file

@ -1 +1 @@
include ':'
include ':nextcloud-android-library'

View file

@ -105,7 +105,8 @@ public class MainApp extends MultiDexApplication {
if (isSamlAuth) {
OwnCloudClientManagerFactory.setDefaultPolicy(Policy.SINGLE_SESSION_PER_ACCOUNT);
} else {
OwnCloudClientManagerFactory.setDefaultPolicy(Policy.ALWAYS_NEW_CLIENT);
OwnCloudClientManagerFactory
.setDefaultPolicy(Policy.SINGLE_SESSION_PER_ACCOUNT_IF_SERVER_SUPPORTS_SERVER_MONITORING);
}
// initialise thumbnails cache on background thread

View file

@ -776,7 +776,13 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
OwnCloudCredentials credentials = null;
if (BASIC_TOKEN_TYPE.equals(mAuthTokenType)) {
credentials = OwnCloudCredentialsFactory.newBasicCredentials(username, password);
String version = savedInstanceState.getString(KEY_OC_VERSION);
OwnCloudVersion ocVersion = (version != null) ? new OwnCloudVersion(version) : null;
credentials = OwnCloudCredentialsFactory.newBasicCredentials(
username,
password,
(ocVersion != null && ocVersion.isPreemptiveAuthenticationPreferred())
);
} else if (OAUTH_TOKEN_TYPE.equals(mAuthTokenType)) {
credentials = OwnCloudCredentialsFactory.newBearerCredentials(mAuthToken);
@ -1088,12 +1094,10 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
return;
}
if (AccountTypeUtils.getAuthTokenTypeAccessToken(MainApp.getAccountType()).
equals(mAuthTokenType)) {
if (AccountTypeUtils.getAuthTokenTypeAccessToken(MainApp.getAccountType()).equals(mAuthTokenType)) {
startOauthorization();
} else if (AccountTypeUtils.getAuthTokenTypeSamlSessionCookie(MainApp.getAccountType()).
equals(mAuthTokenType)) {
} else if (AccountTypeUtils.getAuthTokenTypeSamlSessionCookie(MainApp.getAccountType())
.equals(mAuthTokenType)) {
startSamlBasedFederatedSingleSignOnAuthorization();
} else {
@ -1125,8 +1129,12 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
dialog.show(getSupportFragmentManager(), WAIT_DIALOG_TAG);
/// validate credentials accessing the root folder
OwnCloudCredentials credentials = OwnCloudCredentialsFactory.newBasicCredentials(username,
password);
OwnCloudCredentials credentials = OwnCloudCredentialsFactory.newBasicCredentials(
username,
password,
(mServerInfo != null && mServerInfo.mVersion != null
&& mServerInfo.mVersion.isPreemptiveAuthenticationPreferred())
);
accessRootFolder(credentials);
}