├── .gitignore ├── README.md ├── android ├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── andev │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── logo_nav.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── logo_nav.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── logo_nav.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── logo_nav.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── logo_nav.png │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── colors.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── chicagoroboto │ │ │ │ ├── DevconApp.kt │ │ │ │ ├── data │ │ │ │ ├── AndroidLibraryProvider.kt │ │ │ │ ├── DataModule.kt │ │ │ │ ├── EventId.kt │ │ │ │ ├── FirebaseAvatarProvider.kt │ │ │ │ ├── FirebaseFavoriteProvider.kt │ │ │ │ ├── FirebaseFeedbackProvider.kt │ │ │ │ ├── FirebaseSessionDateProvider.kt │ │ │ │ ├── FirebaseSessionProvider.kt │ │ │ │ ├── FirebaseSpeakerProvider.kt │ │ │ │ ├── FirebaseUserProvider.kt │ │ │ │ ├── FirebaseVenueProvider.kt │ │ │ │ ├── LocalFavoriteProvider.kt │ │ │ │ ├── LocalNotificationProvider.kt │ │ │ │ ├── Models.kt │ │ │ │ └── PreferencesProvider.kt │ │ │ │ ├── ext │ │ │ │ ├── Contexts.kt │ │ │ │ ├── PresentationExt.kt │ │ │ │ └── ViewExt.kt │ │ │ │ ├── features │ │ │ │ ├── TabHolder.kt │ │ │ │ ├── info │ │ │ │ │ ├── InfoAdapter.kt │ │ │ │ │ ├── InfoComponent.kt │ │ │ │ │ ├── InfoFragment.kt │ │ │ │ │ └── InfoModule.kt │ │ │ │ ├── location │ │ │ │ │ ├── LocationComponent.kt │ │ │ │ │ └── LocationFragment.kt │ │ │ │ ├── main │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainComponent.kt │ │ │ │ │ ├── MainModule.kt │ │ │ │ │ └── MainView.kt │ │ │ │ ├── sessiondetail │ │ │ │ │ ├── SessionDetailActivity.kt │ │ │ │ │ ├── SessionDetailComponent.kt │ │ │ │ │ ├── SpeakerAdapter.kt │ │ │ │ │ └── feedback │ │ │ │ │ │ ├── FeedbackComponent.kt │ │ │ │ │ │ ├── FeedbackDialog.kt │ │ │ │ │ │ └── FeedbackModule.kt │ │ │ │ ├── sessions │ │ │ │ │ ├── SessionAdapter.kt │ │ │ │ │ ├── SessionDateFragment.kt │ │ │ │ │ ├── SessionItemDecoration.kt │ │ │ │ │ ├── SessionListComponent.kt │ │ │ │ │ ├── SessionListFragment.kt │ │ │ │ │ ├── SessionNavigator.kt │ │ │ │ │ └── SessionPagerAdapter.kt │ │ │ │ ├── speakerdetail │ │ │ │ │ ├── SpeakerDetailActivity.kt │ │ │ │ │ ├── SpeakerDetailComponent.kt │ │ │ │ │ ├── SpeakerDetailScope.kt │ │ │ │ │ └── SpeakerNavigator.kt │ │ │ │ └── speakerlist │ │ │ │ │ ├── DividerItemDecoration.kt │ │ │ │ │ ├── SpeakerListComponent.kt │ │ │ │ │ └── SpeakerListFragment.kt │ │ │ │ ├── injection │ │ │ │ └── AppComponent.kt │ │ │ │ ├── navigator │ │ │ │ └── AndroidWebNavigator.kt │ │ │ │ ├── notifications │ │ │ │ └── NotificationPublisher.kt │ │ │ │ ├── utils │ │ │ │ └── DrawableUtils.kt │ │ │ │ └── view │ │ │ │ └── CircularImageView.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_action_comment.xml │ │ │ ├── ic_back.xml │ │ │ ├── ic_favorite_border_white_24dp.xml │ │ │ ├── ic_favorite_red_24dp.xml │ │ │ ├── ic_favorite_white_24dp.xml │ │ │ ├── ic_info.xml │ │ │ ├── ic_location.xml │ │ │ ├── ic_logo_github.xml │ │ │ ├── ic_logo_twitter.xml │ │ │ ├── ic_menu.xml │ │ │ ├── ic_room.xml │ │ │ ├── ic_schedule.xml │ │ │ ├── ic_speaker.xml │ │ │ └── ph_speaker.xml │ │ │ ├── layout │ │ │ ├── activity_info.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_session_detail.xml │ │ │ ├── dialog_feedback.xml │ │ │ ├── generic_list.xml │ │ │ ├── info.xml │ │ │ ├── item_session.xml │ │ │ ├── item_speaker.xml │ │ │ ├── location_tab.xml │ │ │ ├── nav_header.xml │ │ │ ├── sessions.xml │ │ │ ├── speaker_detail.xml │ │ │ ├── speaker_list.xml │ │ │ ├── view_info_header.xml │ │ │ ├── view_info_library.xml │ │ │ └── view_info_topper.xml │ │ │ ├── menu │ │ │ └── nav_menu.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── scene_info.xml │ │ └── roboto │ │ ├── play │ │ ├── contact-email.txt │ │ ├── contact-website.txt │ │ ├── default-language.txt │ │ ├── listings │ │ │ └── en-US │ │ │ │ ├── full-description.txt │ │ │ │ ├── graphics │ │ │ │ ├── feature-graphic │ │ │ │ │ └── 1.png │ │ │ │ ├── icon │ │ │ │ │ └── 1.png │ │ │ │ └── phone-screenshots │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ └── 5.png │ │ │ │ ├── short-description.txt │ │ │ │ └── title.txt │ │ └── release-notes │ │ │ └── en-US │ │ │ ├── beta.txt │ │ │ └── production.txt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── logo_nav.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 │ │ └── colors.xml ├── assets │ ├── feature.png │ ├── feature_graphic.afdesign │ ├── icon.psd │ ├── launcher_icon.afdesign │ ├── logo.afdesign │ └── play_store.png ├── build.gradle ├── core │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── chicagoroboto │ │ │ ├── data │ │ │ ├── AvatarProvider.kt │ │ │ ├── FavoriteProvider.kt │ │ │ ├── FeedbackProvider.kt │ │ │ ├── LibraryProvider.kt │ │ │ ├── NotificationProvider.kt │ │ │ ├── SessionDateProvider.kt │ │ │ ├── SessionProvider.kt │ │ │ ├── SpeakerProvider.kt │ │ │ ├── UserProvider.kt │ │ │ └── VenueProvider.kt │ │ │ ├── ext │ │ │ ├── Bytes.kt │ │ │ ├── DispatchQueue.kt │ │ │ └── guard.kt │ │ │ ├── features │ │ │ ├── info │ │ │ │ ├── InfoMvp.kt │ │ │ │ └── InfoPresenter.kt │ │ │ ├── location │ │ │ │ ├── LocationMvp.kt │ │ │ │ └── LocationPresenter.kt │ │ │ ├── sessiondetail │ │ │ │ ├── SessionDetailPresenter.kt │ │ │ │ └── feedback │ │ │ │ │ ├── FeedbackMvp.kt │ │ │ │ │ └── FeedbackPresenter.kt │ │ │ ├── sessions │ │ │ │ ├── SessionDateListMvp.kt │ │ │ │ ├── SessionDatePresenter.kt │ │ │ │ ├── SessionListMvp.kt │ │ │ │ └── SessionListPresenter.kt │ │ │ ├── shared │ │ │ │ ├── Mvp.kt │ │ │ │ ├── Presentation.kt │ │ │ │ └── Presenter.kt │ │ │ ├── speakerdetail │ │ │ │ ├── SpeakerDetailMvp.kt │ │ │ │ └── SpeakerDetailPresenter.kt │ │ │ └── speakerlist │ │ │ │ ├── SpeakerListMvp.kt │ │ │ │ └── SpeakerListPresenter.kt │ │ │ ├── model │ │ │ ├── Feedback.kt │ │ │ ├── Library.kt │ │ │ ├── Room.kt │ │ │ ├── Session.kt │ │ │ ├── Speaker.kt │ │ │ ├── Submission.kt │ │ │ ├── User.kt │ │ │ └── Venue.kt │ │ │ └── navigator │ │ │ └── WebNavigator.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── chicagoroboto │ │ └── features │ │ └── sessiondetail │ │ └── SessionDetailPresenterTest.kt ├── data.json ├── dependencies.gradle ├── feature.png ├── feedback │ ├── .gitignore │ ├── README.md │ ├── generate_emails.py │ └── template.html ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon_play_store.png └── settings.gradle ├── feedback.py └── web ├── .firebaserc ├── .gitignore ├── README.md ├── database.rules.json ├── firebase.json ├── package.json ├── public ├── favicon.ico ├── images │ ├── android-desktop.png │ ├── dog.png │ ├── favicon.png │ ├── ios-desktop.png │ ├── social-logo-github.svg │ ├── social-logo-google.svg │ ├── social-logo-twitter.svg │ ├── social-logo-website.svg │ └── user.jpg ├── index.css └── index.html └── src ├── components ├── Base.css ├── Base.js ├── Home.js ├── dashboard │ └── Dashboard.js ├── index.js ├── schedule │ ├── DateSchedule.css │ ├── DateSchedule.js │ ├── EditSlotDialog.js │ ├── NewDateDialog.js │ ├── NewRoomDialog.js │ ├── NewSlotDialog.js │ └── Schedule.js ├── sessions │ ├── EditSession.js │ ├── Session.css │ ├── Session.js │ ├── SessionList.css │ └── SessionList.js └── speakers │ ├── EditSpeaker.js │ ├── Speaker.css │ ├── Speaker.js │ ├── SpeakersList.css │ └── SpeakersList.js ├── config └── constants.js ├── helpers ├── MDLComponent.js ├── TextHelpers.js └── auth.js ├── index.css ├── index.js ├── logo.svg └── repo └── SpeakersRepo.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/README.md -------------------------------------------------------------------------------- /android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/.editorconfig -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/LICENSE.txt -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-hdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-hdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-hdpi/logo_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-hdpi/logo_nav.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-mdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-mdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-mdpi/logo_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-mdpi/logo_nav.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xhdpi/logo_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xhdpi/logo_nav.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xxhdpi/logo_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xxhdpi/logo_nav.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xxxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xxxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /android/app/src/andev/res/drawable-xxxhdpi/logo_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/drawable-xxxhdpi/logo_nav.png -------------------------------------------------------------------------------- /android/app/src/andev/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/andev/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/andev/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/andev/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/andev/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/andev/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/andev/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/DevconApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/DevconApp.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/AndroidLibraryProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/AndroidLibraryProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/DataModule.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/EventId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/EventId.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseAvatarProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseAvatarProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseFavoriteProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseFavoriteProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseFeedbackProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseFeedbackProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSessionDateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSessionDateProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSessionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSessionProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSpeakerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseSpeakerProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseUserProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseUserProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseVenueProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/FirebaseVenueProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/LocalFavoriteProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/LocalFavoriteProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/LocalNotificationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/LocalNotificationProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/Models.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/Models.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/data/PreferencesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/data/PreferencesProvider.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/ext/Contexts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/ext/Contexts.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/ext/PresentationExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/ext/PresentationExt.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/ext/ViewExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/ext/ViewExt.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/TabHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/TabHolder.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/info/InfoModule.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/location/LocationComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/location/LocationComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/location/LocationFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/location/LocationFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/main/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/main/MainComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/main/MainComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/main/MainModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/main/MainModule.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/main/MainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/main/MainView.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SpeakerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SpeakerAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackDialog.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackModule.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDateFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDateFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionItemDecoration.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionNavigator.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionPagerAdapter.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailScope.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerNavigator.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/DividerItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/DividerItemDecoration.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListFragment.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/injection/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/injection/AppComponent.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/navigator/AndroidWebNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/navigator/AndroidWebNavigator.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/notifications/NotificationPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/notifications/NotificationPublisher.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/utils/DrawableUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/utils/DrawableUtils.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/chicagoroboto/view/CircularImageView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/kotlin/com/chicagoroboto/view/CircularImageView.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_action_comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_action_comment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_back.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_favorite_border_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_favorite_border_white_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_favorite_red_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_favorite_red_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_favorite_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_favorite_white_24dp.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_location.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_logo_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_logo_github.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_logo_twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_logo_twitter.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_menu.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_room.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_room.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_schedule.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_speaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ic_speaker.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ph_speaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/drawable/ph_speaker.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/activity_info.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_session_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/activity_session_detail.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/dialog_feedback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/dialog_feedback.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/generic_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/generic_list.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/info.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/item_session.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/item_speaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/item_speaker.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/location_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/location_tab.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/nav_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/nav_header.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/sessions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/sessions.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/speaker_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/speaker_detail.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/speaker_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/speaker_list.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/view_info_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/view_info_header.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/view_info_library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/view_info_library.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/view_info_topper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/layout/view_info_topper.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/menu/nav_menu.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/scene_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/main/res/xml/scene_info.xml -------------------------------------------------------------------------------- /android/app/src/roboto/play/contact-email.txt: -------------------------------------------------------------------------------- 1 | ryanjharter@gmail.com 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/contact-website.txt: -------------------------------------------------------------------------------- 1 | https://chicagoroboto.com/ 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/default-language.txt: -------------------------------------------------------------------------------- 1 | en-US 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/full-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/full-description.txt -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/feature-graphic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/feature-graphic/1.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/icon/1.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/1.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/2.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/3.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/4.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/play/listings/en-US/graphics/phone-screenshots/5.png -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/short-description.txt: -------------------------------------------------------------------------------- 1 | Android Development in the Windy City 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/listings/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Chicago Roboto 2020 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/release-notes/en-US/beta.txt: -------------------------------------------------------------------------------- 1 | Who's ready for Chicago Roboto 2020? 🎉 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/play/release-notes/en-US/production.txt: -------------------------------------------------------------------------------- 1 | Who's ready for Chicago Roboto 2020? 🎉 2 | -------------------------------------------------------------------------------- /android/app/src/roboto/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/roboto/res/drawable/logo_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/drawable/logo_nav.xml -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/roboto/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/app/src/roboto/res/values/colors.xml -------------------------------------------------------------------------------- /android/assets/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/feature.png -------------------------------------------------------------------------------- /android/assets/feature_graphic.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/feature_graphic.afdesign -------------------------------------------------------------------------------- /android/assets/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/icon.psd -------------------------------------------------------------------------------- /android/assets/launcher_icon.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/launcher_icon.afdesign -------------------------------------------------------------------------------- /android/assets/logo.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/logo.afdesign -------------------------------------------------------------------------------- /android/assets/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/assets/play_store.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/build.gradle -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/AvatarProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/AvatarProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/FavoriteProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/FavoriteProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/FeedbackProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/FeedbackProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/LibraryProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/LibraryProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/NotificationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/NotificationProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/SessionDateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/SessionDateProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/SessionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/SessionProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/SpeakerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/SpeakerProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/UserProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/UserProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/data/VenueProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/data/VenueProvider.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/ext/Bytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/ext/Bytes.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/ext/DispatchQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/ext/DispatchQueue.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/ext/guard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/ext/guard.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/info/InfoMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/info/InfoMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/info/InfoPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/info/InfoPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/location/LocationMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/location/LocationMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/location/LocationPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/location/LocationPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessiondetail/feedback/FeedbackPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDateListMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDateListMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDatePresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionDatePresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/sessions/SessionListPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/shared/Mvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/shared/Mvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/shared/Presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/shared/Presentation.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/shared/Presenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/shared/Presenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/speakerdetail/SpeakerDetailPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListMvp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListMvp.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/features/speakerlist/SpeakerListPresenter.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Feedback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Feedback.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Library.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Library.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Room.kt: -------------------------------------------------------------------------------- 1 | package com.chicagoroboto.model 2 | 3 | class Room(val name: String? = null) { 4 | } -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Session.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Session.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Speaker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Speaker.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Submission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Submission.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/User.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/model/Venue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/model/Venue.kt -------------------------------------------------------------------------------- /android/core/src/main/kotlin/com/chicagoroboto/navigator/WebNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/main/kotlin/com/chicagoroboto/navigator/WebNavigator.kt -------------------------------------------------------------------------------- /android/core/src/test/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailPresenterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/core/src/test/kotlin/com/chicagoroboto/features/sessiondetail/SessionDetailPresenterTest.kt -------------------------------------------------------------------------------- /android/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/data.json -------------------------------------------------------------------------------- /android/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/dependencies.gradle -------------------------------------------------------------------------------- /android/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/feature.png -------------------------------------------------------------------------------- /android/feedback/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /android/feedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/feedback/README.md -------------------------------------------------------------------------------- /android/feedback/generate_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/feedback/generate_emails.py -------------------------------------------------------------------------------- /android/feedback/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/feedback/template.html -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/icon_play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/android/icon_play_store.png -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':core' 2 | -------------------------------------------------------------------------------- /feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/feedback.py -------------------------------------------------------------------------------- /web/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/.firebaserc -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/README.md -------------------------------------------------------------------------------- /web/database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/database.rules.json -------------------------------------------------------------------------------- /web/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/firebase.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/images/android-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/android-desktop.png -------------------------------------------------------------------------------- /web/public/images/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/dog.png -------------------------------------------------------------------------------- /web/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/favicon.png -------------------------------------------------------------------------------- /web/public/images/ios-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/ios-desktop.png -------------------------------------------------------------------------------- /web/public/images/social-logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/social-logo-github.svg -------------------------------------------------------------------------------- /web/public/images/social-logo-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/social-logo-google.svg -------------------------------------------------------------------------------- /web/public/images/social-logo-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/social-logo-twitter.svg -------------------------------------------------------------------------------- /web/public/images/social-logo-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/social-logo-website.svg -------------------------------------------------------------------------------- /web/public/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/images/user.jpg -------------------------------------------------------------------------------- /web/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/index.css -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/src/components/Base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/Base.css -------------------------------------------------------------------------------- /web/src/components/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/Base.js -------------------------------------------------------------------------------- /web/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/Home.js -------------------------------------------------------------------------------- /web/src/components/dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/dashboard/Dashboard.js -------------------------------------------------------------------------------- /web/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/index.js -------------------------------------------------------------------------------- /web/src/components/schedule/DateSchedule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/DateSchedule.css -------------------------------------------------------------------------------- /web/src/components/schedule/DateSchedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/DateSchedule.js -------------------------------------------------------------------------------- /web/src/components/schedule/EditSlotDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/EditSlotDialog.js -------------------------------------------------------------------------------- /web/src/components/schedule/NewDateDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/NewDateDialog.js -------------------------------------------------------------------------------- /web/src/components/schedule/NewRoomDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/NewRoomDialog.js -------------------------------------------------------------------------------- /web/src/components/schedule/NewSlotDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/NewSlotDialog.js -------------------------------------------------------------------------------- /web/src/components/schedule/Schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/schedule/Schedule.js -------------------------------------------------------------------------------- /web/src/components/sessions/EditSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/sessions/EditSession.js -------------------------------------------------------------------------------- /web/src/components/sessions/Session.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/sessions/Session.css -------------------------------------------------------------------------------- /web/src/components/sessions/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/sessions/Session.js -------------------------------------------------------------------------------- /web/src/components/sessions/SessionList.css: -------------------------------------------------------------------------------- 1 | .SessionList { 2 | margin: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/components/sessions/SessionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/sessions/SessionList.js -------------------------------------------------------------------------------- /web/src/components/speakers/EditSpeaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/speakers/EditSpeaker.js -------------------------------------------------------------------------------- /web/src/components/speakers/Speaker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/speakers/Speaker.css -------------------------------------------------------------------------------- /web/src/components/speakers/Speaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/speakers/Speaker.js -------------------------------------------------------------------------------- /web/src/components/speakers/SpeakersList.css: -------------------------------------------------------------------------------- 1 | .SpeakersList { 2 | margin: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/components/speakers/SpeakersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/components/speakers/SpeakersList.js -------------------------------------------------------------------------------- /web/src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/config/constants.js -------------------------------------------------------------------------------- /web/src/helpers/MDLComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/helpers/MDLComponent.js -------------------------------------------------------------------------------- /web/src/helpers/TextHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/helpers/TextHelpers.js -------------------------------------------------------------------------------- /web/src/helpers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/helpers/auth.js -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/index.css -------------------------------------------------------------------------------- /web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/index.js -------------------------------------------------------------------------------- /web/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/logo.svg -------------------------------------------------------------------------------- /web/src/repo/SpeakersRepo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/360Conferences/chicago-roboto/HEAD/web/src/repo/SpeakersRepo.js --------------------------------------------------------------------------------