33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- Разрешение на интернет -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<!-- Разрешение на сеть для проверки состояния -->
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="Android SSH Client"
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
|
|
|
|
<!-- Главный экран -->
|
|
<activity
|
|
android:name=".SshActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- Терминал - ДОБАВЛЯЕМ ЭТУ АКТИВНОСТЬ -->
|
|
<activity
|
|
android:name=".TerminalActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="landscape" />
|
|
|
|
</application>
|
|
|
|
</manifest>
|