Android
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<!-- Các permission liên quan đến internet. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Allows the application to unlock the phone when there is an incoming call. -->
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<!-- Allows the application to open fullscreen interface when receiving incoming call notification
when the phone is in inactive state (lock screen, kill app, not in application screen) -->
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<!-- Allows users to operate when the device is in locked state (press to accept/reject calls). -->
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<!-- Allow use of microphone. -->
<uses-permission android:name="android.permission.CAMERA" />
<!-- Allow use of camera. -->
<uses-permission android:name="android.permission.VIBRATE" />
<!-- Allows the application to control the phone to vibrate when there is an incoming call. -->
</manifest>Last updated
