If you think the Android project TuentiTV listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2014 Pedro Vicente Gmez Snchez.
*//www.java2s.com
* 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 com.github.pedrovgs.tuentitv.di;
import android.content.Context;
import com.github.pedrovgs.tuentitv.ui.activity.DetailActivity;
import com.github.pedrovgs.tuentitv.ui.activity.EnterPasswordActivity;
import com.github.pedrovgs.tuentitv.ui.activity.LoadingActivity;
import com.github.pedrovgs.tuentitv.ui.activity.LoginActivity;
import com.github.pedrovgs.tuentitv.ui.activity.MainActivity;
import com.github.pedrovgs.tuentitv.ui.activity.SearchActivity;
import com.github.pedrovgs.tuentitv.ui.activity.ShowImageActivity;
import com.github.pedrovgs.tuentitv.ui.fragment.DetailFragment;
import com.github.pedrovgs.tuentitv.ui.fragment.MainFragment;
import com.github.pedrovgs.tuentitv.ui.fragment.SearchFragment;
import dagger.Module;
import dagger.Provides;
/**
* Main Dagger module created to provide every dependency with an application scope. This module is
* used to create every Activity ObjectGraph and add the Activity context to the graph associated
* with the named annotation @ActivityContext.
*
* @author Pedro Vicente Gmez Snchez.
*/
@Module(injects = {
LoginActivity.class, EnterPasswordActivity.class, LoadingActivity.class, MainActivity.class,
MainFragment.class, SearchActivity.class, SearchFragment.class, ShowImageActivity.class,
DetailActivity.class, DetailFragment.class,
}, library = true, complete = false) publicclass ActivityModule {
privatefinal Context context;
public ActivityModule(Context context) {
this.context = context;
}
@ActivityContext @Provides Context provideApplicationContext() {
return context;
}
}