SubwayTooter-Android-App/app/src/main/AndroidManifest.xml

72 lines
2.4 KiB
XML
Raw Normal View History

2017-04-20 18:23:59 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.juggler.subwaytooter">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name=".App1"
2017-04-20 18:23:59 +02:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity
android:name=".ActMain"
android:label="@string/app_name"
android:launchMode="singleTask"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustPan|stateAlwaysHidden"
2017-04-20 18:23:59 +02:00
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".ActPost"
android:label="@string/act_post"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustResize"
/>
<activity
android:name=".ActAccountSetting"
android:label="@string/account_setting"
2017-04-23 07:42:09 +02:00
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustResize"
/>
<activity
android:name=".ActAppSetting"
android:label="@string/app_setting"
2017-04-23 07:42:09 +02:00
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustResize"
/>
<activity
android:name=".ActColumnList"
android:label="@string/column_list"
2017-04-23 07:42:09 +02:00
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustResize"
/>
<activity
android:name=".ActAbout"
android:label="@string/app_about"
android:theme="@style/AppTheme"
/>
<activity
android:name=".ActOSSLicense"
android:label="@string/oss_license"
android:theme="@style/AppTheme"
/>
<meta-data
android:name="android.max_aspect"
android:value="ratio_float"/>
2017-04-20 18:23:59 +02:00
</application>
</manifest>