@abdurrahman-dev/react-native-ivs-broadcast 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/ios/IVSBroadcast.podspec +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# react-native-ivs-broadcast
|
|
1
|
+
# @abdurrahman-dev/react-native-ivs-broadcast
|
|
2
2
|
|
|
3
3
|
React Native için Amazon Interactive Video Service (IVS) Broadcast SDK köprü paketi. Bu paket, Amazon IVS Broadcast SDK'nın native yeteneklerini React Native projelerinde kullanmanızı sağlar.
|
|
4
4
|
|
|
@@ -18,13 +18,13 @@ React Native için Amazon Interactive Video Service (IVS) Broadcast SDK köprü
|
|
|
18
18
|
### npm
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install react-native-ivs-broadcast
|
|
21
|
+
npm install @abdurrahman-dev/react-native-ivs-broadcast
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### yarn
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
yarn add react-native-ivs-broadcast
|
|
27
|
+
yarn add @abdurrahman-dev/react-native-ivs-broadcast
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Platform Kurulumu
|
|
@@ -86,7 +86,7 @@ cd ios && pod install && cd ..
|
|
|
86
86
|
### Temel Kullanım
|
|
87
87
|
|
|
88
88
|
```typescript
|
|
89
|
-
import IVSBroadcast from 'react-native-ivs-broadcast';
|
|
89
|
+
import IVSBroadcast from '@abdurrahman-dev/react-native-ivs-broadcast';
|
|
90
90
|
|
|
91
91
|
// Session oluştur
|
|
92
92
|
const session = await IVSBroadcast.createSession({
|
package/ios/IVSBroadcast.podspec
CHANGED
|
@@ -9,12 +9,13 @@ Pod::Spec.new do |s|
|
|
|
9
9
|
s.description = <<-DESC
|
|
10
10
|
React Native bridge for Amazon IVS Broadcast SDK
|
|
11
11
|
DESC
|
|
12
|
-
s.homepage = "https://github.com/
|
|
12
|
+
s.homepage = "https://github.com/abdurrahman-dev/react-native-ivs-broadcast"
|
|
13
13
|
s.license = "MIT"
|
|
14
|
-
s.author = { "author" => "
|
|
14
|
+
s.author = { "author" => "" }
|
|
15
15
|
s.platforms = { :ios => "11.0" }
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
|
|
17
|
+
# Expo autolinking podspec'in parent dizinini (root) source olarak kullanır
|
|
18
|
+
# Bu yüzden source_files path'i ios/ klasöründen başlamalı
|
|
18
19
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
19
20
|
s.requires_arc = true
|
|
20
21
|
|
package/package.json
CHANGED