• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019 The Dagger Authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package dagger.hilt.android.internal.modules;
18 
19 import android.app.Application;
20 import android.content.Context;
21 import dagger.Module;
22 import dagger.Provides;
23 import dagger.hilt.InstallIn;
24 import dagger.hilt.android.internal.Contexts;
25 import dagger.hilt.android.qualifiers.ApplicationContext;
26 import dagger.hilt.components.SingletonComponent;
27 
28 /** Provides a binding for an Android BinderFragment Context. */
29 @Module
30 @InstallIn(SingletonComponent.class)
31 public final class ApplicationContextModule {
32   private final Context applicationContext;
33 
ApplicationContextModule(Context applicationContext)34   public ApplicationContextModule(Context applicationContext) {
35     this.applicationContext = applicationContext;
36   }
37 
38   @Provides
39   @ApplicationContext
provideContext()40   Context provideContext() {
41     return applicationContext;
42   }
43 
44   @Provides
provideApplication()45   Application provideApplication() {
46     return Contexts.getApplication(applicationContext);
47   }
48 }
49