Skip to content

Commit 3ad2ec5

Browse files
authored
Merge pull request #3436 from nextcloud/refactoring/noid/removeConductor
Remove conductor
2 parents 074fc30 + 0634dbd commit 3ad2ec5

File tree

50 files changed

+832
-1402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+832
-1402
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ We are using [Dagger 2](https://dagger.dev/) to inject dependencies into major A
289289

290290
* `Activity`
291291
* `Fragment`
292-
* `Controller`
293292
* `Service`
294293
* `BroadcastReceiver`
295294
* `ContentProvider`

app/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @author Tim Krüger
88
* Copyright (C) 2021 Andy Scherzinger <[email protected]>
99
* Copyright (C) 2017-2019 Mario Danic <[email protected]>
10-
* Copyright (C) 2021 Marcel Hibbe <[email protected]>
10+
* Copyright (C) 2021-2023 Marcel Hibbe <[email protected]>
1111
* Copyright (C) 2022 Tim Krüger <[email protected]>
1212
*
1313
* This program is free software: you can redistribute it and/or modify
@@ -210,8 +210,6 @@ dependencies {
210210
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
211211
implementation "io.reactivex.rxjava2:rxjava:2.2.21"
212212

213-
implementation 'com.bluelinelabs:conductor:3.2.0'
214-
215213
implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
216214
implementation "com.squareup.okhttp3:okhttp-urlconnection:${okhttpVersion}"
217215
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"

app/lint.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,5 @@
3232

3333
<issue id="ObsoleteLintCustomCheck" severity="warning">
3434
<ignore path="**/jetified-annotation-experimental-1.**/**/lint.jar" />
35-
<ignore path="**/jetified-conductor-2.**/**/lint.jar" />
3635
</issue>
3736
</lint>

app/src/main/AndroidManifest.xml

Lines changed: 39 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
~ @author Mario Danic
55
~ @author Marcel Hibbe
66
~ Copyright (C) 2017-2019 Mario Danic <[email protected]>
7-
~ Copyright (C) 2021-2022 Marcel Hibbe <[email protected]>
7+
~ Copyright (C) 2021-2023 Marcel Hibbe <[email protected]>
88
~
99
~ This program is free software: you can redistribute it and/or modify
1010
~ it under the terms of the GNU General Public License as published by
@@ -131,6 +131,44 @@
131131
</intent-filter>
132132
</activity>
133133

134+
<activity
135+
android:name=".account.ServerSelectionActivity"
136+
android:theme="@style/AppTheme" />
137+
138+
<activity
139+
android:name=".account.WebViewLoginActivity"
140+
android:theme="@style/AppTheme" />
141+
142+
<activity
143+
android:name=".account.AccountVerificationActivity"
144+
android:theme="@style/AppTheme" />
145+
146+
<activity
147+
android:name=".account.SwitchAccountActivity"
148+
android:theme="@style/AppTheme" />
149+
150+
<activity
151+
android:name=".conversationlist.ConversationsListActivity"
152+
android:theme="@style/AppTheme"
153+
android:exported="true">
154+
155+
<intent-filter>
156+
<action android:name="android.intent.action.SEND" />
157+
<category android:name="android.intent.category.DEFAULT" />
158+
<data android:mimeType="*/*" />
159+
</intent-filter>
160+
161+
<intent-filter>
162+
<action android:name="android.intent.action.SEND_MULTIPLE" />
163+
<category android:name="android.intent.category.DEFAULT" />
164+
<data android:mimeType="*/*" />
165+
</intent-filter>
166+
</activity>
167+
168+
<activity
169+
android:name=".chat.ChatActivity"
170+
android:theme="@style/AppTheme" />
171+
134172
<activity
135173
android:name=".activities.CallActivity"
136174
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
@@ -215,32 +253,10 @@
215253
android:name=".contacts.ContactsActivity"
216254
android:theme="@style/AppTheme" />
217255

218-
<activity
219-
android:name=".chat.ChatActivity"
220-
android:theme="@style/AppTheme" />
221-
222256
<activity
223257
android:name=".openconversations.ListOpenConversationsActivity"
224258
android:theme="@style/AppTheme" />
225259

226-
<activity
227-
android:name=".conversationlist.ConversationsListActivity"
228-
android:theme="@style/AppTheme"
229-
android:exported="true">
230-
231-
<intent-filter>
232-
<action android:name="android.intent.action.SEND" />
233-
<category android:name="android.intent.category.DEFAULT" />
234-
<data android:mimeType="*/*" />
235-
</intent-filter>
236-
237-
<intent-filter>
238-
<action android:name="android.intent.action.SEND_MULTIPLE" />
239-
<category android:name="android.intent.category.DEFAULT" />
240-
<data android:mimeType="*/*" />
241-
</intent-filter>
242-
</activity>
243-
244260
<activity
245261
android:name=".lock.LockedActivity"
246262
android:theme="@style/AppTheme" />

0 commit comments

Comments
 (0)