Skip to content

Commit 63d1cc5

Browse files
authored
Merge pull request #52 from yml-org/fix/crash-http-client
fix: not found http client definition on Android
2 parents 2460302 + 3874c4a commit 63d1cc5

File tree

20 files changed

+27
-63
lines changed

20 files changed

+27
-63
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
publish-maven:
1313
name: Publish to Maven
14-
runs-on: ubuntu-latest
14+
runs-on: macos-11
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v3
@@ -31,7 +31,7 @@ jobs:
3131
run: chmod +x gradlew
3232

3333
- name: Publish to Repository
34-
run: ./gradlew :ychat:clean publish
34+
run: ./gradlew clean publish --no-parallel --stacktrace
3535

3636
env:
3737
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ repositories {
5959
Then, simply import the dependency to your `build.gradle` dependencies:
6060

6161
```kotlin
62-
implementation("co.yml:ychat:1.1.0")
62+
implementation("co.yml:ychat:1.1.1")
6363
```
6464

6565
Take a look at the Kotlin code snippet below for an example of how to initialize and use one of the supported features:

YChat-1.1.0.zip

-10.7 MB
Binary file not shown.

YChat-1.1.1.zip

8.55 MB
Binary file not shown.

YChat.xcframework/Info.plist

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,30 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8-
<key>DebugSymbolsPath</key>
9-
<string>dSYMs</string>
108
<key>LibraryIdentifier</key>
11-
<string>ios-arm64</string>
9+
<string>ios-x86_64-simulator</string>
1210
<key>LibraryPath</key>
1311
<string>YChat.framework</string>
1412
<key>SupportedArchitectures</key>
1513
<array>
16-
<string>arm64</string>
14+
<string>x86_64</string>
1715
</array>
1816
<key>SupportedPlatform</key>
1917
<string>ios</string>
18+
<key>SupportedPlatformVariant</key>
19+
<string>simulator</string>
2020
</dict>
2121
<dict>
22-
<key>DebugSymbolsPath</key>
23-
<string>dSYMs</string>
2422
<key>LibraryIdentifier</key>
25-
<string>ios-x86_64-simulator</string>
23+
<string>ios-arm64</string>
2624
<key>LibraryPath</key>
2725
<string>YChat.framework</string>
2826
<key>SupportedArchitectures</key>
2927
<array>
30-
<string>x86_64</string>
28+
<string>arm64</string>
3129
</array>
3230
<key>SupportedPlatform</key>
3331
<string>ios</string>
34-
<key>SupportedPlatformVariant</key>
35-
<string>simulator</string>
3632
</dict>
3733
</array>
3834
<key>CFBundlePackageType</key>
Binary file not shown.

YChat.xcframework/ios-arm64/dSYMs/YChat.framework.dSYM/Contents/Info.plist

Lines changed: 0 additions & 20 deletions
This file was deleted.
Binary file not shown.

YChat.xcframework/ios-x86_64-simulator/dSYMs/YChat.framework.dSYM/Contents/Info.plist

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)