/
MrOmichov
/
RandomCoffeeSwagger
Обзор
Документация
Войти
/
MrOmichov
/
RandomCoffeeSwagger
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
develop
androidApp/src/main/AndroidManifest.xml
24 строки
866 B
MrOmichov
[fix] tried to do http request without internet permission, very stupid error, I forgot to add it
03 июн 2026, 00:38
03 июн 2026, 00:38
9f93577
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".MainApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@android:style/Theme.Material.Light.NoActionBar"> <activity android:exported="true" android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>