/
dimasokol
/
WebRTC-Simulator
Обзор
Документация
Войти
/
dimasokol
/
WebRTC-Simulator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
develop
app/src/main/AndroidManifest.xml
28 строк
1 KB
dimasokol
Initial empty state
02 июл 2026, 14:58
02 июл 2026, 14:58
7ef30f1
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <application android:name=".WebRTCApplication" android:allowBackup="false" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.WebRTCSimulator"> <activity android:name=".MainActivity" android:exported="true" android:theme="@style/Theme.WebRTCSimulator" android:windowSoftInputMode="adjustResize"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>