├── .editorconfig ├── .gitignore ├── Droidcon Italy - Single Activity.pdf ├── README.md ├── app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── nl │ │ └── remcomokveld │ │ └── nhl │ │ ├── NHLActivity.kt │ │ ├── NHLActivityModule.java │ │ ├── NHLApplication.kt │ │ ├── NHLApplicationComponent.java │ │ └── NHLApplicationModule.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── main_activity.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ └── strings.xml ├── core ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── nl │ │ └── remcomokveld │ │ └── nhl │ │ ├── account │ │ ├── AccountDataSource.kt │ │ ├── AccountRepository.kt │ │ └── AccountViewModel.kt │ │ ├── core │ │ ├── BackHandlingFragment.kt │ │ ├── DaggerUIFragment.kt │ │ ├── FragmentExt.kt │ │ └── FragmentManagerExt.kt │ │ └── models │ │ ├── Match.kt │ │ ├── NHLAccount.kt │ │ └── Team.kt │ └── res │ └── values │ ├── colors.xml │ └── styles.xml ├── features ├── app-debug.apk ├── main-app │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── main │ │ │ └── MainAppFragmentTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── main │ │ │ ├── BottomNavFragment.kt │ │ │ ├── BottomNavModule.java │ │ │ ├── MainAppComponent.java │ │ │ ├── MainAppFragment.kt │ │ │ └── MainAppModule.java │ │ └── res │ │ ├── layout │ │ ├── bottom_nav_fragment.xml │ │ └── main_app_fragment.xml │ │ ├── menu │ │ └── bottom_nav.xml │ │ └── values │ │ └── strings.xml ├── match │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── match │ │ │ └── MatchDetailFragment.kt │ │ └── res │ │ ├── layout │ │ └── match_detail_fragment.xml │ │ └── values │ │ └── strings.xml ├── my-team │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── myteam │ │ │ ├── MatchItem.kt │ │ │ ├── MyTeamFragment.kt │ │ │ └── MyTeamHost.kt │ │ └── res │ │ ├── drawable │ │ └── ic_favorite.xml │ │ ├── layout │ │ ├── match_item.xml │ │ └── my_team_fragment.xml │ │ └── values │ │ └── strings.xml ├── onboarding │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── iap │ │ │ └── IAPFragmentTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ ├── iap │ │ │ ├── GoogleIAPViewModel.kt │ │ │ ├── IAPFragment.kt │ │ │ ├── IAPHost.kt │ │ │ ├── IAPViewModel.kt │ │ │ ├── MockIAPViewModel.kt │ │ │ ├── SignUpFragment.kt │ │ │ ├── SubscriptionState.kt │ │ │ └── Subscriptions.kt │ │ │ ├── onboarding │ │ │ ├── LogInFragment.kt │ │ │ ├── LogInHost.kt │ │ │ ├── OnboardingComponent.java │ │ │ ├── OnboardingFragment.kt │ │ │ ├── OnboardingFragmentModule.java │ │ │ └── OnboardingHost.kt │ │ │ └── teams │ │ │ ├── FollowTeamFragment.kt │ │ │ ├── FollowTeamHost.kt │ │ │ ├── FollowTeamViewModel.kt │ │ │ └── TeamItem.kt │ │ └── res │ │ ├── drawable │ │ └── ic_check_black_24dp.xml │ │ ├── layout │ │ ├── email_password_fragment.xml │ │ ├── follow_team_fragment.xml │ │ ├── iap_fragment.xml │ │ ├── onboarding_fragment.xml │ │ └── team_item.xml │ │ ├── menu │ │ └── follow_team.xml │ │ └── values │ │ └── strings.xml ├── paywall │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── paywall │ │ │ ├── PaywallFragment.kt │ │ │ └── PaywallHost.kt │ │ └── res │ │ ├── layout │ │ └── paywall_fragment.xml │ │ └── values │ │ └── strings.xml ├── scoreboard │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── scoreboard │ │ │ ├── ScoreboardFragment.kt │ │ │ ├── ScoreboardHost.kt │ │ │ └── ScoreboardMatchItem.kt │ │ └── res │ │ ├── drawable │ │ └── ic_scoreboard.xml │ │ ├── layout │ │ ├── scoreboard_fragment.xml │ │ └── scoreboard_match_item.xml │ │ └── values │ │ └── strings.xml ├── settings │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── settings │ │ │ └── SettingsFragment.kt │ │ └── res │ │ ├── drawable │ │ └── ic_settings.xml │ │ ├── layout │ │ └── settings_fragment.xml │ │ └── values │ │ └── strings.xml ├── splash │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── splash │ │ │ └── SplashFragmentTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── remcomokveld │ │ │ └── nhl │ │ │ └── splash │ │ │ ├── SplashFragment.kt │ │ │ ├── SplashHost.kt │ │ │ └── ViewModelExt.kt │ │ └── res │ │ ├── drawable-hdpi │ │ └── dss_logo.webp │ │ ├── drawable-mdpi │ │ └── dss_logo.webp │ │ ├── drawable-xhdpi │ │ └── dss_logo.webp │ │ ├── drawable-xxhdpi │ │ └── dss_logo.webp │ │ ├── drawable-xxxhdpi │ │ └── dss_logo.webp │ │ ├── layout │ │ └── splash_fragment.xml │ │ └── values │ │ └── strings.xml ├── template │ ├── build.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml └── welcome │ ├── build.gradle │ └── src │ ├── androidTest │ └── java │ │ └── nl │ │ └── remcomokveld │ │ └── nhl │ │ └── welcome │ │ ├── MockWelcomeHost.kt │ │ ├── TestLiveGamesFragmentInjector.kt │ │ ├── TestThanksForSubscribingFragmentInjector.kt │ │ ├── TestWelcomeAndroidInjector.kt │ │ └── WelcomeFragmentTest.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── nl │ │ └── remcomokveld │ │ └── nhl │ │ └── welcome │ │ ├── LiveGamesFragment.kt │ │ ├── ThanksForSubscribingFragment.kt │ │ ├── WelcomeFragment.kt │ │ ├── WelcomeFragmentModule.java │ │ └── WelcomeHost.kt │ └── res │ ├── layout │ ├── live_games_fragment.xml │ ├── splash_fragment.xml │ ├── thanks_for_subscribing_fragment.xml │ └── welcome_fragment.xml │ └── values │ └── strings.xml ├── gradle.properties ├── gradle ├── default-android-module.gradle ├── default-library-module.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/.gitignore -------------------------------------------------------------------------------- /Droidcon Italy - Single Activity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/Droidcon Italy - Single Activity.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/nl/remcomokveld/nhl/NHLActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/java/nl/remcomokveld/nhl/NHLActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/nl/remcomokveld/nhl/NHLActivityModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/java/nl/remcomokveld/nhl/NHLActivityModule.java -------------------------------------------------------------------------------- /app/src/main/java/nl/remcomokveld/nhl/NHLApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/java/nl/remcomokveld/nhl/NHLApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/nl/remcomokveld/nhl/NHLApplicationComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/java/nl/remcomokveld/nhl/NHLApplicationComponent.java -------------------------------------------------------------------------------- /app/src/main/java/nl/remcomokveld/nhl/NHLApplicationModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/java/nl/remcomokveld/nhl/NHLApplicationModule.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/layout/main_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/account/AccountDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/account/AccountDataSource.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/account/AccountRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/account/AccountRepository.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/account/AccountViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/account/AccountViewModel.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/core/BackHandlingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/core/BackHandlingFragment.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/core/DaggerUIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/core/DaggerUIFragment.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/core/FragmentExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/core/FragmentExt.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/core/FragmentManagerExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/core/FragmentManagerExt.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/models/Match.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/models/Match.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/models/NHLAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/models/NHLAccount.kt -------------------------------------------------------------------------------- /core/src/main/java/nl/remcomokveld/nhl/models/Team.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/java/nl/remcomokveld/nhl/models/Team.kt -------------------------------------------------------------------------------- /core/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /core/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/core/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /features/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/app-debug.apk -------------------------------------------------------------------------------- /features/main-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/build.gradle -------------------------------------------------------------------------------- /features/main-app/src/androidTest/java/nl/remcomokveld/nhl/main/MainAppFragmentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/androidTest/java/nl/remcomokveld/nhl/main/MainAppFragmentTest.kt -------------------------------------------------------------------------------- /features/main-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/main-app/src/main/java/nl/remcomokveld/nhl/main/BottomNavFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/java/nl/remcomokveld/nhl/main/BottomNavFragment.kt -------------------------------------------------------------------------------- /features/main-app/src/main/java/nl/remcomokveld/nhl/main/BottomNavModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/java/nl/remcomokveld/nhl/main/BottomNavModule.java -------------------------------------------------------------------------------- /features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppComponent.java -------------------------------------------------------------------------------- /features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppFragment.kt -------------------------------------------------------------------------------- /features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/java/nl/remcomokveld/nhl/main/MainAppModule.java -------------------------------------------------------------------------------- /features/main-app/src/main/res/layout/bottom_nav_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/res/layout/bottom_nav_fragment.xml -------------------------------------------------------------------------------- /features/main-app/src/main/res/layout/main_app_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/res/layout/main_app_fragment.xml -------------------------------------------------------------------------------- /features/main-app/src/main/res/menu/bottom_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/res/menu/bottom_nav.xml -------------------------------------------------------------------------------- /features/main-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/main-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/match/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/match/build.gradle -------------------------------------------------------------------------------- /features/match/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/match/src/main/java/nl/remcomokveld/nhl/match/MatchDetailFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/match/src/main/java/nl/remcomokveld/nhl/match/MatchDetailFragment.kt -------------------------------------------------------------------------------- /features/match/src/main/res/layout/match_detail_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/match/src/main/res/layout/match_detail_fragment.xml -------------------------------------------------------------------------------- /features/match/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/match/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/my-team/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/build.gradle -------------------------------------------------------------------------------- /features/my-team/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MatchItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MatchItem.kt -------------------------------------------------------------------------------- /features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MyTeamFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MyTeamFragment.kt -------------------------------------------------------------------------------- /features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MyTeamHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/java/nl/remcomokveld/nhl/myteam/MyTeamHost.kt -------------------------------------------------------------------------------- /features/my-team/src/main/res/drawable/ic_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/res/drawable/ic_favorite.xml -------------------------------------------------------------------------------- /features/my-team/src/main/res/layout/match_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/res/layout/match_item.xml -------------------------------------------------------------------------------- /features/my-team/src/main/res/layout/my_team_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/res/layout/my_team_fragment.xml -------------------------------------------------------------------------------- /features/my-team/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/my-team/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/onboarding/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/build.gradle -------------------------------------------------------------------------------- /features/onboarding/src/androidTest/java/nl/remcomokveld/nhl/iap/IAPFragmentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/androidTest/java/nl/remcomokveld/nhl/iap/IAPFragmentTest.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/GoogleIAPViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/GoogleIAPViewModel.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/IAPFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/IAPFragment.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/IAPHost.kt: -------------------------------------------------------------------------------- 1 | package nl.remcomokveld.nhl.iap 2 | 3 | interface IAPHost { 4 | fun onSubscribed() 5 | } 6 | -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/IAPViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/IAPViewModel.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/MockIAPViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/MockIAPViewModel.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/SignUpFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/SignUpFragment.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/SubscriptionState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/SubscriptionState.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/iap/Subscriptions.kt: -------------------------------------------------------------------------------- 1 | package nl.remcomokveld.nhl.iap 2 | 3 | -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/LogInFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/LogInFragment.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/LogInHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/LogInHost.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingComponent.java -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingFragment.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingFragmentModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingFragmentModule.java -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/onboarding/OnboardingHost.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamFragment.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamHost.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/FollowTeamViewModel.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/TeamItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/java/nl/remcomokveld/nhl/teams/TeamItem.kt -------------------------------------------------------------------------------- /features/onboarding/src/main/res/drawable/ic_check_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/drawable/ic_check_black_24dp.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/layout/email_password_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/layout/email_password_fragment.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/layout/follow_team_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/layout/follow_team_fragment.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/layout/iap_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/layout/iap_fragment.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/layout/onboarding_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/layout/onboarding_fragment.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/layout/team_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/layout/team_item.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/menu/follow_team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/menu/follow_team.xml -------------------------------------------------------------------------------- /features/onboarding/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/onboarding/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/paywall/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/paywall/build.gradle -------------------------------------------------------------------------------- /features/paywall/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/paywall/src/main/java/nl/remcomokveld/nhl/paywall/PaywallFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/paywall/src/main/java/nl/remcomokveld/nhl/paywall/PaywallFragment.kt -------------------------------------------------------------------------------- /features/paywall/src/main/java/nl/remcomokveld/nhl/paywall/PaywallHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/paywall/src/main/java/nl/remcomokveld/nhl/paywall/PaywallHost.kt -------------------------------------------------------------------------------- /features/paywall/src/main/res/layout/paywall_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/paywall/src/main/res/layout/paywall_fragment.xml -------------------------------------------------------------------------------- /features/paywall/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/paywall/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/scoreboard/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/build.gradle -------------------------------------------------------------------------------- /features/scoreboard/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardFragment.kt -------------------------------------------------------------------------------- /features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardHost.kt -------------------------------------------------------------------------------- /features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardMatchItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/java/nl/remcomokveld/nhl/scoreboard/ScoreboardMatchItem.kt -------------------------------------------------------------------------------- /features/scoreboard/src/main/res/drawable/ic_scoreboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/res/drawable/ic_scoreboard.xml -------------------------------------------------------------------------------- /features/scoreboard/src/main/res/layout/scoreboard_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/res/layout/scoreboard_fragment.xml -------------------------------------------------------------------------------- /features/scoreboard/src/main/res/layout/scoreboard_match_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/res/layout/scoreboard_match_item.xml -------------------------------------------------------------------------------- /features/scoreboard/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/scoreboard/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/settings/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/settings/build.gradle -------------------------------------------------------------------------------- /features/settings/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/settings/src/main/java/nl/remcomokveld/nhl/settings/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/settings/src/main/java/nl/remcomokveld/nhl/settings/SettingsFragment.kt -------------------------------------------------------------------------------- /features/settings/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/settings/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /features/settings/src/main/res/layout/settings_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/settings/src/main/res/layout/settings_fragment.xml -------------------------------------------------------------------------------- /features/settings/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/settings/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/splash/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/build.gradle -------------------------------------------------------------------------------- /features/splash/src/androidTest/java/nl/remcomokveld/nhl/splash/SplashFragmentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/androidTest/java/nl/remcomokveld/nhl/splash/SplashFragmentTest.kt -------------------------------------------------------------------------------- /features/splash/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/splash/src/main/java/nl/remcomokveld/nhl/splash/SplashFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/java/nl/remcomokveld/nhl/splash/SplashFragment.kt -------------------------------------------------------------------------------- /features/splash/src/main/java/nl/remcomokveld/nhl/splash/SplashHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/java/nl/remcomokveld/nhl/splash/SplashHost.kt -------------------------------------------------------------------------------- /features/splash/src/main/java/nl/remcomokveld/nhl/splash/ViewModelExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/java/nl/remcomokveld/nhl/splash/ViewModelExt.kt -------------------------------------------------------------------------------- /features/splash/src/main/res/drawable-hdpi/dss_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/drawable-hdpi/dss_logo.webp -------------------------------------------------------------------------------- /features/splash/src/main/res/drawable-mdpi/dss_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/drawable-mdpi/dss_logo.webp -------------------------------------------------------------------------------- /features/splash/src/main/res/drawable-xhdpi/dss_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/drawable-xhdpi/dss_logo.webp -------------------------------------------------------------------------------- /features/splash/src/main/res/drawable-xxhdpi/dss_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/drawable-xxhdpi/dss_logo.webp -------------------------------------------------------------------------------- /features/splash/src/main/res/drawable-xxxhdpi/dss_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/drawable-xxxhdpi/dss_logo.webp -------------------------------------------------------------------------------- /features/splash/src/main/res/layout/splash_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/layout/splash_fragment.xml -------------------------------------------------------------------------------- /features/splash/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/splash/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /features/template/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/template/build.gradle -------------------------------------------------------------------------------- /features/template/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/welcome/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/build.gradle -------------------------------------------------------------------------------- /features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/MockWelcomeHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/MockWelcomeHost.kt -------------------------------------------------------------------------------- /features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestLiveGamesFragmentInjector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestLiveGamesFragmentInjector.kt -------------------------------------------------------------------------------- /features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestThanksForSubscribingFragmentInjector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestThanksForSubscribingFragmentInjector.kt -------------------------------------------------------------------------------- /features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestWelcomeAndroidInjector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/TestWelcomeAndroidInjector.kt -------------------------------------------------------------------------------- /features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/WelcomeFragmentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/androidTest/java/nl/remcomokveld/nhl/welcome/WelcomeFragmentTest.kt -------------------------------------------------------------------------------- /features/welcome/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/LiveGamesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/LiveGamesFragment.kt -------------------------------------------------------------------------------- /features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/ThanksForSubscribingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/ThanksForSubscribingFragment.kt -------------------------------------------------------------------------------- /features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeFragment.kt -------------------------------------------------------------------------------- /features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeFragmentModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeFragmentModule.java -------------------------------------------------------------------------------- /features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/java/nl/remcomokveld/nhl/welcome/WelcomeHost.kt -------------------------------------------------------------------------------- /features/welcome/src/main/res/layout/live_games_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/res/layout/live_games_fragment.xml -------------------------------------------------------------------------------- /features/welcome/src/main/res/layout/splash_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/res/layout/splash_fragment.xml -------------------------------------------------------------------------------- /features/welcome/src/main/res/layout/thanks_for_subscribing_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/res/layout/thanks_for_subscribing_fragment.xml -------------------------------------------------------------------------------- /features/welcome/src/main/res/layout/welcome_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/res/layout/welcome_fragment.xml -------------------------------------------------------------------------------- /features/welcome/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/features/welcome/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/default-android-module.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradle/default-android-module.gradle -------------------------------------------------------------------------------- /gradle/default-library-module.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradle/default-library-module.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcomokveld/SingleActivity-DroidconIT/HEAD/settings.gradle --------------------------------------------------------------------------------