-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructures app to be distributed as a library.
To make this as easy to reuse as possible, this change restructures the app to be distributed as an AAR, with only theming and config information needing to come from the actual final app. Still to be done: * Move some final parts into config or firebase (conference image in nav drawer, etc.) * Setup deploy information for Maven Central. * Add documentation to readme about parts that need setup (build.gradle, themes, etc.)
- Loading branch information
Showing
120 changed files
with
448 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
android/app/src/main/kotlin/com/chicagoroboto/features/sessions/SessionNavigator.kt
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
android/app/src/main/kotlin/com/chicagoroboto/injection/AppComponent.kt
This file was deleted.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
...ain/kotlin/com/chicagoroboto/DevconApp.kt → .../com/conferences/ConferenceApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...cagoroboto/data/AndroidLibraryProvider.kt → ...onferences/data/AndroidLibraryProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tlin/com/chicagoroboto/data/DataModule.kt → ...kotlin/com/conferences/data/DataModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../kotlin/com/chicagoroboto/data/EventId.kt → ...in/kotlin/com/conferences/data/EventId.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.chicagoroboto.data | ||
package com.conferences.data | ||
|
||
import javax.inject.Qualifier | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
...goroboto/data/FirebaseFeedbackProvider.kt → ...ferences/data/FirebaseFeedbackProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...oboto/data/FirebaseSessionDateProvider.kt → ...ences/data/FirebaseSessionDateProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...agoroboto/data/FirebaseSessionProvider.kt → ...nferences/data/FirebaseSessionProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...agoroboto/data/FirebaseSpeakerProvider.kt → ...nferences/data/FirebaseSpeakerProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...icagoroboto/data/FirebaseVenueProvider.kt → ...conferences/data/FirebaseVenueProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...icagoroboto/data/LocalFavoriteProvider.kt → ...conferences/data/LocalFavoriteProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.chicagoroboto.data | ||
package com.conferences.data | ||
|
||
import android.content.SharedPreferences | ||
|
||
|
14 changes: 7 additions & 7 deletions
14
...oroboto/data/LocalNotificationProvider.kt → ...erences/data/LocalNotificationProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...chicagoroboto/data/PreferencesProvider.kt → ...m/conferences/data/PreferencesProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../kotlin/com/chicagoroboto/ext/Contexts.kt → ...in/kotlin/com/conferences/ext/Contexts.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...n/kotlin/com/chicagoroboto/ext/ViewExt.kt → ...ain/kotlin/com/conferences/ext/ViewExt.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...hicagoroboto/features/info/InfoAdapter.kt → .../conferences/features/info/InfoAdapter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cagoroboto/features/info/InfoComponent.kt → ...onferences/features/info/InfoComponent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.chicagoroboto.features.info | ||
package com.conferences.features.info | ||
|
||
import dagger.Subcomponent | ||
|
||
|
10 changes: 5 additions & 5 deletions
10
...chicagoroboto/features/info/InfoModule.kt → ...m/conferences/features/info/InfoModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...m/chicagoroboto/features/info/InfoView.kt → ...com/conferences/features/info/InfoView.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...to/features/location/LocationComponent.kt → ...es/features/location/LocationComponent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...oboto/features/location/LocationModule.kt → ...ences/features/location/LocationModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...oroboto/features/location/LocationView.kt → ...erences/features/location/LocationView.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...cagoroboto/features/main/MainComponent.kt → ...onferences/features/main/MainComponent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...chicagoroboto/features/main/MainModule.kt → ...m/conferences/features/main/MainModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
5079c39
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WIP for #11