2012-05-30 19:59:20 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you 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.
|
|
|
|
-->
|
2020-06-10 09:31:51 -04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-04-12 14:39:47 +09:00
|
|
|
android:versionName="1.0"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:hardwareAccelerated="true">
|
2012-05-30 19:59:20 -07:00
|
|
|
<supports-screens
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:xlargeScreens="true"
|
|
|
|
android:resizeable="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2018-06-05 13:43:05 +09:00
|
|
|
<application android:icon="@mipmap/ic_launcher" android:label="@string/app_name"
|
2014-09-09 09:38:15 -04:00
|
|
|
android:hardwareAccelerated="true" android:supportsRtl="true">
|
2014-06-03 16:08:35 -04:00
|
|
|
<activity android:name="__ACTIVITY__"
|
|
|
|
android:label="@string/activity_name"
|
|
|
|
android:launchMode="singleTop"
|
2022-06-30 10:49:10 +09:00
|
|
|
android:theme="@style/Theme.App.SplashScreen"
|
2014-07-07 13:07:51 -04:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
2024-06-24 17:13:22 +05:30
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
|
2021-10-28 17:29:55 +09:00
|
|
|
android:exported="true">
|
2014-06-03 16:08:35 -04:00
|
|
|
<intent-filter android:label="@string/launcher_name">
|
2012-05-30 19:59:20 -07:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2024-05-09 00:30:49 -04:00
|
|
|
<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.cdv.core.file.provider" android:exported="false" android:grantUriPermissions="true">
|
|
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/cdv_core_file_provider_paths" />
|
|
|
|
</provider>
|
2012-05-30 19:59:20 -07:00
|
|
|
</application>
|
2024-05-09 00:30:49 -04:00
|
|
|
|
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
2014-06-03 16:08:35 -04:00
|
|
|
</manifest>
|