File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
WordPress/src/main/java/org/wordpress/android Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 15
15
import org .wordpress .android .ui .WPWebViewActivity ;
16
16
import org .wordpress .android .ui .about .UnifiedAboutActivity ;
17
17
import org .wordpress .android .ui .accounts .HelpActivity ;
18
- import org .wordpress .android .ui .accounts .LoginMagicLinkInterceptActivity ;
19
18
import org .wordpress .android .ui .accounts .PostSignupInterstitialActivity ;
20
19
import org .wordpress .android .ui .accounts .SignupEpilogueActivity ;
21
20
import org .wordpress .android .ui .accounts .login .jetpack .LoginNoSitesFragment ;
@@ -235,8 +234,6 @@ public interface AppComponent {
235
234
236
235
void inject (PostUploadHandler object );
237
236
238
- void inject (LoginMagicLinkInterceptActivity object );
239
-
240
237
void inject (SignupEpilogueActivity object );
241
238
242
239
void inject (SignupEpilogueFragment object );
Original file line number Diff line number Diff line change 4
4
import android .net .Uri ;
5
5
import android .os .Bundle ;
6
6
7
- import org .wordpress .android .WordPress ;
8
7
import org .wordpress .android .login .LoginAnalyticsListener ;
9
8
import org .wordpress .android .ui .JetpackConnectionSource ;
10
9
import org .wordpress .android .ui .LocaleAwareActivity ;
11
10
import org .wordpress .android .ui .main .WPMainActivity ;
12
11
13
12
import javax .inject .Inject ;
14
13
14
+ import dagger .hilt .android .AndroidEntryPoint ;
15
+
15
16
/**
16
17
* Deep link receiver for magic links. Starts {@link WPMainActivity} where flow is routed to login
17
18
* or signup based on deep link scheme, host, and parameters.
18
19
*/
20
+ @ AndroidEntryPoint
19
21
public class LoginMagicLinkInterceptActivity extends LocaleAwareActivity {
20
22
private static final String PARAMETER_FLOW = "flow" ;
21
23
private static final String PARAMETER_FLOW_JETPACK = "jetpack" ;
@@ -29,7 +31,6 @@ public class LoginMagicLinkInterceptActivity extends LocaleAwareActivity {
29
31
@ Override
30
32
protected void onCreate (Bundle savedInstanceState ) {
31
33
super .onCreate (savedInstanceState );
32
- ((WordPress ) getApplication ()).component ().inject (this );
33
34
34
35
mAction = getIntent ().getAction ();
35
36
mUri = getIntent ().getData ();
You can’t perform that action at this time.
0 commit comments