Ingin membuat apl panggilan video anda sendiri? Ia lebih mudah daripada yang anda fikirkan, terima kasih kepada ZEGOCLOUD. Panduan ini akan menunjukkan kepada anda cara membina apl panggilan video langkah demi langkah. ZEGOCLOUD menawarkan alat yang memudahkan proses, walaupun anda baru dalam pembangunan apl.
Anda akan belajar cara menyediakan projek anda, menambah ciri panggilan video dan memastikan apl anda berjalan dengan lancar. Kami akan merangkumi asas yang perlu anda ketahui, daripada bermula dengan ZEGOCLOUD hingga menguji apl siap anda. Pada akhirnya, anda akan mempunyai apl panggilan video yang berfungsi yang anda bina sendiri.
Sama ada anda seorang pemula atau mempunyai pengalaman pengekodan, panduan ini akan membantu anda membuat apl panggilan video dengan cepat dan mudah dengan ZEGOCLOUD.
Membuat apl memerlukan masa dan tempoh yang tepat bergantung pada kerumitan dan ciri apl itu. Apl ringkas dengan fungsi asas boleh mengambil masa kira-kira 2-3 bulan untuk dibangunkan. Apl ini biasanya mempunyai ciri yang minimum, seperti beberapa skrin dan kefungsian standard.
Sebaliknya, apl yang lebih kompleks yang termasuk ciri seperti pengesahan pengguna, penyepaduan pangkalan data atau kemas kini masa nyata mungkin mengambil masa 4-6 bulan atau lebih lama. Apl ini memerlukan perancangan, reka bentuk dan ujian yang lebih terperinci untuk memastikan semuanya berjalan lancar.
Faktor lain yang mempengaruhi masa pembangunan ialah saiz pasukan yang bekerja pada projek itu. Pasukan yang lebih besar dan berpengalaman boleh menyelesaikan apl lebih cepat daripada kumpulan yang lebih kecil. Kualiti komunikasi dan pengurusan projek juga memainkan peranan dalam seberapa cepat apl itu boleh disiapkan.
Perlu juga ambil perhatian bahawa pembangunan apl tidak akan tamat selepas pelancaran. Kemas kini dan penyelenggaraan yang kerap diperlukan untuk membetulkan pepijat dan memastikan apl berjalan lancar.
Secara keseluruhan, membina apl boleh mengambil masa dari beberapa bulan hingga lebih setahun, bergantung pada skop projek. Perancangan yang baik dan pemahaman yang jelas tentang keperluan apl boleh membantu mempercepatkan proses.
Apabila membuat apl mudah alih, anda boleh memilih antara iOS untuk peranti Apple atau Android untuk banyak telefon lain. Kedua-duanya popular, tetapi mereka mempunyai beberapa perbezaan utama. Mari bandingkan mereka:
Criteria |
iOS App Development |
Android App Development |
Programming Language | Swift and Objective-C | Kotlin and Java |
Development Environment | Xcode | Android Studio |
Device Fragmentation | Less device variety, easier to test | Wide range of devices, harder to test |
App Store Approval | Strict review process | Less strict, faster approval |
Market Share | Popular in North America and Europe | Dominates in Asia, Africa, and more |
Development Cost | Usually higher due to stricter guidelines | Can be lower, but depends on the complexity |
Revenue Potential | Higher app revenue per user | Larger audience, but lower revenue per user |
Hauptunterschiede:
Insgesamt bieten beide Plattformen einzigartige Vorteile, und die Wahl hängt von Ihrer Zielgruppe und Ihren Zielen ab.
Das Erstellen einer Videoanruf-App für Android und iOS mag schwierig erscheinen, aber mit den richtigen Tools ist es einfacher, als Sie denken. In diesem Abschnitt zeigen wir Ihnen, wie das mit dem ZEGOCLOUD Express SDK geht.
ZEGOCLOUD ist eine leistungsstarke Plattform, die es einfach macht, Ihren Apps Echtzeit-Video- und Audiofunktionen hinzuzufügen. Es kümmert sich um die komplizierten Teile, sodass Sie sich darauf konzentrieren können, Ihren Benutzern ein reibungsloses Erlebnis zu bieten. Mit ZEGOCLOUD ist die Erstellung einer Videoanruf-App für Android und iOS schnell und unkompliziert.
Voraussetzungen
Bevor wir beginnen, stellen wir sicher, dass Sie alles haben, was Sie brauchen:
1.1 Gradle einrichten
Um das Zego SDK zu verwenden, müssen Sie das ZegoExpress SDK über Gradle zu Ihrem Android-Projekt hinzufügen. Befolgen Sie dazu die folgenden Schritte:
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { maven { url 'https://storage.zego.im/maven' } google() mavenCentral() } }
Öffnen Sie für ältere Versionen von Android Studio die Datei build.gradle im Stammverzeichnis Ihres Projekts. Fügen Sie den folgenden Code innerhalb des allprojects-Blocks hinzu:
allprojects { repositories { maven { url 'https://storage.zego.im/maven' } google() mavenCentral() } }
1.2 Hinzufügen der SDK-Abhängigkeit
Öffnen Sie die Datei app/build.gradle. Fügen Sie die folgende Zeile innerhalb des Abhängigkeitsblocks hinzu (ersetzen Sie x.y.z durch die neueste SDK-Version):
dependencies { implementation 'im.zego:express-video:x.y.z' }
Speichern Sie die Datei und synchronisieren Sie das Projekt. Dadurch wird das ZegoExpress SDK hinzugefügt und Videoanruffunktionen aktiviert.
Sobald die Abhängigkeiten synchronisiert sind, importieren Sie das Zego SDK in Ihre Hauptaktivität, damit Sie mit der Implementierung von Videoanruffunktionen beginnen können.
Öffnen Sie Ihre MainActivity.java- oder MainActivity.kt-Datei. Fügen Sie die folgende Importanweisung hinzu:
import im.zego.zegoexpress.ZegoExpressEngine;
Mit diesem Import können Sie die Kernfunktionalität des Zego SDK nutzen.
3.1 App-Anmeldeinformationen definieren
Sie müssen Ihre AppID und AppSign definieren, die Sie von Ihrem ZEGOCLOUD-Dashboard erhalten haben.
Fügen Sie in Ihrer Hauptaktivitätsdatei die folgenden Variablen hinzu:
String appID = "c12dbc38b67451a9ee8a0ba266840aab"; // Replace with your actual AppID String appSign = "fe1529d55bcbcc0fa462cba668b8f2bd"; // Replace with your actual AppSign
3.2 Benutzer- und Rauminformationen definieren
Definieren Sie nun die Benutzer-ID, den Benutzernamen und die Raum-ID, um den Benutzer und den Videoanrufraum zu identifizieren. Definieren Sie die Variablen:
String userID = "fc4a8a14869bc3b8f84d052a35378195"; // Replace with your actual user ID String userName = "c157e43fc1e6147c21d7b2f420f7501f"; // Replace with your actual user name String roomID = "93429f3717703a6e1b861e1d1565e862"; // Replace with your actual room ID
3.3 Initialisierung der Zego-Engine
Bevor Sie den Anruf starten, müssen Sie die Zego-Engine initialisieren. Diese Engine übernimmt alle Videoanrufvorgänge. Fügen Sie die folgende Methode hinzu, um die Engine zu initialisieren:
void createEngine() { ZegoEngineProfile profile = new ZegoEngineProfile(); profile.appID = Long.parseLong(appID); profile.appSign = appSign; profile.application = getApplication(); profile.scenario = ZegoScenario.DEFAULT; // Set the appropriate scenario ZegoExpressEngine.createEngine(profile, null); }
Diese Methode initialisiert die ZegoExpressEngine mit der appID und appSign. Das Szenario ist auf STANDARD eingestellt, was für allgemeine Anwendungsfälle in Ordnung ist.
3.4 Einen Videoanruf starten und daran teilnehmen
Jetzt implementieren Sie Methoden zum Starten und Beitreten von Videoanrufen.
Videoanruf starten:
void startVideoCall() { ZegoExpressEngine.getEngine().startPublishingStream(roomID); }
An einem Videoanruf teilnehmen:
void joinVideoCall() { ZegoExpressEngine.getEngine().startPlayingStream(roomID); }
Damit der Videoanruf auf Ihre Kamera und Ihr Mikrofon zugreifen kann, müssen Sie Berechtigungen in der Datei AndroidManifest.xml anfordern. Öffnen Sie die Datei AndroidManifest.xml und fügen Sie die folgenden Berechtigungen hinzu:
eafa53ed60cf631bb40427ba7fd27cc3 cc4be989b182b85ab53d6e27e2649273 80768a34d765d25f66049afad58fea64
Für Android 6.0 und höher müssen Sie außerdem Laufzeitberechtigungen anfordern:
String[] permissions = {"android.permission.CAMERA", "android.permission.RECORD_AUDIO"}; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { requestPermissions(permissions, 101); }
Sobald Sie die Berechtigungen festgelegt haben, können Sie jetzt Ihre Android-App ausführen und testen:
1.1 Setting Up Swift Package Manager
For iOS, you will use Swift Package Manager to add the ZegoUIKitPrebuiltLiveStreaming SDK. Follow the steps below:
https://github.com/zegolibrary/express-video-ios
Select the latest version and add the package to your project.
Once the SDK is installed, you need to import it into your ViewController.swift file. In your ViewController.swift file, add the following import statements:
import ZegoUIKit import ZegoUIKitPrebuiltLiveStreaming
These import statements give you access to the Zego video call SDK.
3.1 Define App Credentials
You need your AppID and AppSign to authenticate your app with ZEGOCLOUD. Add the following credentials at the top of your ViewController.swift file:
let appID: UInt32 = 0122b644d0a0273642508c49a6bb2b8e // Replace with your actual AppID let appSign: String = "86c79318892e84f5d80aa6d0c14c7516" // Replace with your actual AppSign
3.2 Define User and Room Information
Now, define the userID, userName, and roomID variables for identifying users and the room. Add these variables:
var userID: String = "fc4a8a14869bc3b8f84d052a35378195" // Replace with actual user ID var userName: String = "c157e43fc1e6147c21d7b2f420f7501f" // Replace with actual user name var roomID: String = "93429f3717703a6e1b861e1d1565e862" // Replace with actual room ID
3.3 Initializing the Zego Engine
Like Android, you must initialize the Zego engine on iOS to handle video call functionality. Add the function below:
func createEngine() { let profile = ZegoEngineProfile() profile.appID = appID profile.appSign = appSign ZegoExpressEngine.createEngine(with: profile, eventHandler: self) }
This function initializes the Zego engine with your credentials.
3.4 Starting and Joining a Video Call
To start a video call as a host:
func startVideoCall() { ZegoExpressEngine.shared().startPublishingStream(roomID) }
To join an existing video call:
func joinVideoCall() { ZegoExpressEngine.shared().startPlayingStream(roomID) }
In iOS, you need to request camera and microphone permissions in the Info.plist file. Open the Info.plist file and add the following keys:
42538adbdb6240b2b083a000a615d5bdNSCameraUsageDescription9780a7140ed8471d130dc57bcb9b0bd2 98c455a79ddfebb79781bff588e7b37eWe need access to your camera for video calls.dba3c644993c36696c11b074e67a4078 42538adbdb6240b2b083a000a615d5bdNSMicrophoneUsageDescription9780a7140ed8471d130dc57bcb9b0bd2 98c455a79ddfebb79781bff588e7b37eWe need access to your microphone for video calls.dba3c644993c36696c11b074e67a4078
These entries will display permission prompts when the user first opens the app.
Once your permissions are set, you can now test your app:
These are just the basics. To add more features to your video call app, explore ZEGOCLOUD’s Express Video SDK documentation. You can also get started with our sample source code!
Building a video call app with ZEGOCLOUD is a straightforward process, whether you're developing for Android or iOS. By following this guide, you can set up your project, integrate essential video calling features, and test the app on real devices. ZEGOCLOUD’s powerful SDK simplifies the implementation, allowing you to focus on user experience rather than complex backend processes.
Start building your custom video call app today and create seamless communication experiences for your users.
Das obige ist der detaillierte Inhalt vonSo erstellen Sie eine Videoanruf-App mit ZEGOCLOUD. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!