-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from yml-org/fix/crash-http-client
fix: not found http client definition on Android
- Loading branch information
Showing
20 changed files
with
27 additions
and
63 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
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
20 changes: 0 additions & 20 deletions
20
YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Info.plist
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-3.83 MB
YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat
Binary file not shown.
Binary file modified
BIN
+808 Bytes
(100%)
YChat.xcframework/ios-x86_64-simulator/YChat.framework/YChat
Binary file not shown.
20 changes: 0 additions & 20 deletions
20
YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Info.plist
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-4.04 MB
...cframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Resources/DWARF/YChat
Binary file not shown.
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
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
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
4 changes: 2 additions & 2 deletions
4
ychat/src/androidMain/kotlin/co/yml/ychat/di/module/platformModule.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,8 +1,8 @@ | ||
package co.yml.ychat.di.module | ||
|
||
import io.ktor.client.engine.android.Android | ||
import io.ktor.client.engine.okhttp.OkHttp | ||
import org.koin.dsl.module | ||
|
||
internal actual fun platformModule() = module { | ||
single { Android.create() } | ||
single { OkHttp.create() } | ||
} |
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
ychat/src/jvmMain/kotlin/co/yml/ychat/di/module/platformModule.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,8 +1,8 @@ | ||
package co.yml.ychat.di.module | ||
|
||
import io.ktor.client.engine.java.Java | ||
import io.ktor.client.engine.okhttp.OkHttp | ||
import org.koin.dsl.module | ||
|
||
internal actual fun platformModule() = module { | ||
single { Java.create() } | ||
single { OkHttp.create() } | ||
} |