Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stream Episode 17: Initial SharedPreferences storage implementation #81

Merged
merged 19 commits into from
Oct 17, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ci why you no work?
JoaquimLey committed Oct 12, 2018

Unverified

No user is associated with the committer email.
commit 81bdb3d594778f657819f74d427a61c7fd7d5ece
5 changes: 3 additions & 2 deletions transport-eta-android/ui-mobile/build.gradle
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'androidx.navigation.safeargs'

android {
compileSdkVersion build_versions.compile_sdk
defaultConfig {
@@ -95,11 +96,11 @@ androidExtensions {

dependencies {
// Modules
implementation project(':presentation')
implementation project(':domain')
implementation project(':sms')
implementation project(':data')
implementation project(':data-sharedpreferences')
implementation project(':domain')
implementation project(':presentation')
// AndroidX
implementation deps.androidx.slice
implementation deps.androidx.core_ktx
Original file line number Diff line number Diff line change
@@ -2,12 +2,13 @@ package com.joaquimley.transporteta.ui.di.module

import com.joaquimley.transporteta.ui.home.favorite.FavoritesFragment
import dagger.Module
import dagger.android.ContributesAndroidInjector

@Module
abstract class HomeFragmentBuildersModule {

// @ContributesAndroidInjector(modules = [
// ViewModelModule::class
// ])
@ContributesAndroidInjector(modules = [
ViewModelModule::class
])
abstract fun contributeFavouritesFragment(): FavoritesFragment
}