VariantComponentsModule.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Chris Narkiewicz
  5. * Copyright (C) 2919 Chris Narkiewicz <hello@ezaquarii.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. * License as published by the Free Software Foundation; either
  10. * version 3 of the License, or any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public
  18. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.nextcloud.client.di;
  21. import com.owncloud.android.authentication.ModifiedAuthenticatorActivity;
  22. import com.owncloud.android.services.firebase.NCFirebaseInstanceIDService;
  23. import dagger.Module;
  24. import dagger.android.ContributesAndroidInjector;
  25. @Module
  26. abstract class VariantComponentsModule {
  27. @ContributesAndroidInjector abstract NCFirebaseInstanceIDService ncFirebaseInstanceIDService();
  28. @ContributesAndroidInjector
  29. abstract ModifiedAuthenticatorActivity modifiedAuthenticatorActivity();
  30. }