https://github.com/netease-kit/nertc-flutter-sdk
NetEase RTC plugin for Flutter Mobile
https://github.com/netease-kit/nertc-flutter-sdk
android flutter ios nertc rtc video
Last synced: 6 months ago
JSON representation
NetEase RTC plugin for Flutter Mobile
- Host: GitHub
- URL: https://github.com/netease-kit/nertc-flutter-sdk
- Owner: netease-kit
- License: mit
- Created: 2020-09-21T12:45:11.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2021-08-18T07:33:29.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T10:53:38.728Z (over 1 year ago)
- Topics: android, flutter, ios, nertc, rtc, video
- Language: Dart
- Homepage:
- Size: 740 KB
- Stars: 18
- Watchers: 4
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# nertc
[](https://github.com/netease-im/NERTC-Flutter-SDK/actions) [](https://pub.dev/packages/nertc)
Flutter plugin for NetEase RTC SDK.
## Usage
Add `nertc` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/).
### iOS
Add two rows to the `ios/Runner/Info.plist`:
* one with the key `Privacy - Camera Usage Description` and a usage description.
* and one with the key `Privacy - Microphone Usage Description` and a usage description.
Or in text format add the key:
```xml
NSCameraUsageDescription
Can I use the camera please?
NSMicrophoneUsageDescription
Can I use the mic please?
```
### Android
Change the minimum Android sdk version to 21 (or higher) in your `android/app/build.gradle` file.
```
minSdkVersion 21
```