Skip to content

Commit

Permalink
Fix the compilation to check if CI is working fine
Browse files Browse the repository at this point in the history
  • Loading branch information
andremion committed Mar 14, 2024
1 parent 7a9c5f9 commit e3256f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
cache: gradle

- name: Build with Xcode
run: xcodebuild build -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 14 Pro' -verbose
run: xcodebuild build -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 15 Pro' -verbose
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import org.koin.core.KoinApplication
import org.koin.core.context.startKoin
import org.koin.dsl.KoinAppDeclaration

fun initDI(appDeclaration: KoinAppDeclaration): KoinApplication =
fun initDI(appDeclaration: KoinAppDeclaration? = null): KoinApplication =
startKoin {
appDeclaration()
appDeclaration?.invoke(this)
modules(
PlayerModule.module,
DataModule.module,
Expand Down

0 comments on commit e3256f9

Please sign in to comment.