-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tomoya0x00/add_stage_pr_workflow
- Loading branch information
Showing
54 changed files
with
1,054 additions
and
238 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
30 changes: 0 additions & 30 deletions
30
app-android/src/main/res/drawable-v24/ic_launcher_foreground.xml
This file was deleted.
Oops, something went wrong.
170 changes: 0 additions & 170 deletions
170
app-android/src/main/res/drawable/ic_launcher_background.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
app-android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
app-android/src/test/java/io/github/droidkaigi/confsched2023/ExampleUnitTest.kt
This file was deleted.
Oops, something went wrong.
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
23 changes: 23 additions & 0 deletions
23
.../androidMain/kotlin/io/github/droidkaigi/confsched2023/data/sponsors/SponsorsApiModule.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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package io.github.droidkaigi.confsched2023.data.sponsors | ||
|
||
import dagger.Module | ||
import dagger.Provides | ||
import dagger.hilt.InstallIn | ||
import dagger.hilt.components.SingletonComponent | ||
import de.jensklingenberg.ktorfit.Ktorfit | ||
import io.github.droidkaigi.confsched2023.data.NetworkService | ||
|
||
@Module | ||
@InstallIn(SingletonComponent::class) | ||
class SponsorsApiModule { | ||
@Provides | ||
fun provideSponsorsApi( | ||
networkService: NetworkService, | ||
ktorfit: Ktorfit, | ||
): SponsorsApiClient { | ||
return DefaultSponsorsApiClient( | ||
networkService = networkService, | ||
ktorfit = ktorfit, | ||
) | ||
} | ||
} |
Oops, something went wrong.