Skip to content

Commit

Permalink
Merge pull request #35 from AgoraIO/467-new-faq-updates
Browse files Browse the repository at this point in the history
ENDOC-467  CN doc sync - new FAQ updates
  • Loading branch information
saudsami authored Oct 22, 2024
2 parents 949eb4b + d9d0c16 commit 24c4e0a
Show file tree
Hide file tree
Showing 6 changed files with 205 additions and 141 deletions.
32 changes: 13 additions & 19 deletions account-and-billing/billing_free.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ products: []

export const toc = [{}];

Agora gives each <Link to="{{Global.AGORA_CONSOLE_URL}}">Agora Account</Link> 10,000 free-of-charge minutes each month, and deducts the minutes in the following sequence:
<Vg k="COMPANY"/> gives each <Link to="{{Global.AGORA_CONSOLE_URL}}">Agora Account</Link> 10,000 free-of-charge minutes each month, and deducts the minutes in the following sequence:

1. Broadcast streaming standard audio minutes
2. Voice call, video call, and interactive live streaming audio minutes
Expand Down Expand Up @@ -45,21 +45,15 @@ Agora gives each <Link to="{{Global.AGORA_CONSOLE_URL}}">Agora Account</Link> 10

If your total service minutes do not exceed 10,000 minutes, the service is free of charge. After the 10,000 free-of-charge minutes are fully deducted, Agora charges you for the additional service minutes.

<div class="alert note">
<ul>
<li>
The remaining free-of-charge minutes will be cleared at the end of each
calendar month.
</li>
<li>
The 10,000 free-of-charge minutes policy does not apply to CDN live
streaming. Using this service leads to immediate account freeze. If your
app scenario involves CDN live streaming, we recommend adding a credit
card to your account, making a payment, or signing a contract with Agora.
</li>
<li>
The 10,000 free-of-charge minutes policy does not apply to the Agora Signaling
SDK.
</li>
</ul>
</div>
<Admonition type="info">
The remaining free-of-charge minutes are cleared at the end of each
calendar month.

- The 10,000 free-of-charge minutes policy does not apply to CDN live
streaming. Using this service leads to immediate account freeze. If your
app scenario involves CDN live streaming, we recommend adding a credit
card to your account, making a payment, or signing a contract with Agora.

- The 10,000 free-of-charge minutes policy does not apply to the Agora Signaling
SDK.
</Admonition>
31 changes: 15 additions & 16 deletions data/help-contents.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,21 @@ export const data = {
},
},
'quality-issues': {
sei: {
platforms: [
'all-platforms',
'android',
'ios',
'macos',
'flutter',
'react-native',
'electron',
'windows',
'unity',
],
products: ['all-products', 'interactive-live-streaming', 'broadcast-streaming'],
popular: false,
},
ios_background: {
platforms: [ 'all-platforms', 'ios'],
products: ['all-products', 'video-calling', 'interactive-live-streaming', 'broadcast-streaming'],
Expand Down Expand Up @@ -1521,22 +1536,6 @@ export const data = {
},
},
'other-issues': {
sei: {
platforms: [
'all-platforms',
'android',
'ios',
'macos',
'flutter',
'react-native',
'electron',
'windows',
'unity',
],
products: ['all-products', 'interactive-live-streaming', 'broadcast-streaming'],
popular: false,
},

android_noaudio: {
platforms: ['all-platforms', 'android'],
products: [
Expand Down
2 changes: 1 addition & 1 deletion integration-issues/call_duration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platforms: []
products: []
---

During a call, a user may join and leave a Video SDK channel for multiple times, and the user's call duration is the actual time when the user is in the channel. You can use the the Agora Video SDK or Agora Analytics to get a user's call duration.
During a call, a user may join and leave a Video SDK channel for multiple times, and the user's call duration is the actual time when the user is in the channel. You can use the Agora Video SDK or Agora Analytics to get a user's call duration.

## Implementation

Expand Down
94 changes: 0 additions & 94 deletions other-issues/sei.mdx

This file was deleted.

16 changes: 5 additions & 11 deletions quality-issues/flutter_debug.mdx
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
---
title: 'How can I fix black, green, or pixelated video when a Web client and a Native client communicate with each other?'
title: "Why can't a Flutter App installed on iOS 14 and above devices be reopened in debug mode?"
sidebar_position: 504
platforms: []
products: []
---

export const toc = [{}];

When deploying the Xcode project to an iOS device for debugging, the following error occurs:
On devices running iOS 14 and above, Flutter apps installed in debug mode cannot be reopened using the home screen icon, deep linking, or other methods. Additionally, if an iOS app integrates a Flutter module in debug mode, reopening the app through the home screen icon or similar actions may cause the app to crash due to the integrated Flutter module.

```
Error: Signing for "Runner" requires a development team. Select a development team in the Signing & Capabilities editor (in target 'Runner' from project 'Runner').
```
## Reason

## Issue cause

On the iOS platform, all apps require a developer signature certified by Apple to verify the source and security of the app. If Xcode fails to detect a valid development team or certificate, it will not be able to complete the compilation and deployment of the app.
Since iOS 14, Apple has adjusted the execution mechanism for apps in debug mode, specifically adding restrictions on the execution of just-in-time (JIT) code. Flutter apps running in debug mode rely on JIT to execute code, and these new restrictions prevent the apps from being launched from the device in the usual manner.

## Solution

Refer to [Apple's official instructions](https://help.apple.com/xcode/mac/current/#/dev60b6fbbc7) to configure a valid development team and certificate.


Refer to the [official Flutter documentation](https://docs.flutter.dev/platform-integration/ios/ios-debugging).
Loading

0 comments on commit 24c4e0a

Please sign in to comment.