blob: a2fcb73b1543f5edc4cdf3dc2e38f14a41a78341 [file] [log] [blame]
/*
* Copyright (C) 2020 The Dagger Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dagger.hilt.android.simpleKotlin.deep
import android.content.Context
import dagger.hilt.EntryPoint
import dagger.hilt.InstallIn
import dagger.hilt.android.EntryPointAccessors
import dagger.hilt.components.SingletonComponent
import javax.inject.Inject
class DeepAndroidLib @Inject constructor() {
@EntryPoint
@InstallIn(SingletonComponent::class)
internal interface LibEntryPoint {
fun getDeepAndroidInstance(): DeepAndroidLib
}
companion object {
fun getInstance(context: Context) =
EntryPointAccessors.fromApplication(context, LibEntryPoint::class.java)
.getDeepAndroidInstance()
internal fun internalFunction() = Any()
}
}