1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/demos-ConnectBot

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
В этом репозитории не указан файл с открытой лицензией (LICENSE). При использовании обратитесь к конкретному описанию проекта и его зависимостям в коде.
Клонировать/Скачать
AndroidManifest.xml 5.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Hui Zhang Отправлено 22.01.2015 13:49 67d705e
<?xml version="1.0" encoding="utf-8"?>
<!--
ConnectBot: simple, powerful, open-source SSH client for Android
Copyright 2007 Kenny Root, Jeffrey Sharkey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.connectbot"
android:installLocation="auto"
android:versionCode="371"
android:versionName="1.8.1"
tools:ignore="UnusedAttribute" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="20" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application
android:allowBackup="true"
android:backupAgent=".service.BackupAgent"
android:description="@string/app_desc"
android:icon="@drawable/icon"
android:killAfterRestore="true"
android:label="@string/app_name" >
<activity android:name=".HostListActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="ssh" />
<data android:scheme="telnet" />
<data android:scheme="local" />
</intent-filter>
</activity>
<activity
android:name=".PubkeyListActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".GeneratePubkeyActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".HostEditorActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".PortForwardListActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".SettingsActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".WizardActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".HelpActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".HelpTopicActivity"
android:configChanges="keyboardHidden|orientation" />
<activity
android:name=".ColorsActivity"
android:configChanges="keyboardHidden|orientation" />
<service
android:name="org.connectbot.service.TerminalManagerService"
android:configChanges="keyboardHidden|orientation"
android:description="@string/service_desc" />
<activity
android:name=".ConsoleActivity"
android:configChanges="keyboardHidden|orientation"
android:hardwareAccelerated="false"
android:launchMode="singleTop"
android:theme="@style/NoTitle"
android:windowSoftInputMode="stateAlwaysVisible|adjustResize" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="ssh" />
<data android:scheme="telnet" />
<data android:scheme="local" />
<!-- format: ssh://user@host:port/#nickname -->
<!-- format: telnet://host:port/#nickname -->
<!-- format: local:// -->
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIDlFz9nSUr2g0gSytW0t2cNnYAGHDkptlVohsBA" />
</application>
</manifest>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/demos-ConnectBot.git
git@api.gitlife.ru:oschina-mirror/demos-ConnectBot.git
oschina-mirror
demos-ConnectBot
demos-ConnectBot
master