blob: b0842535fd4eaed970df0148e3921e675a1fd850 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2013 The Android Open Source Project
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"
package="com.example.android.beamlargefiles"
android:versionCode="1"
android:versionName="1.0">
<!-- Large file beam requires API 16 or above. -->
<!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
<!-- The NFC permission is required to use NfcAdapter. -->
<uses-permission android:name="android.permission.NFC" />
<!-- Inform app distribution channels that NFC is used, though not required. -->
<!-- (This step is optional, but recommended.) -->
<uses-feature android:name="android.hardware.nfc" android:required="false" />
<application android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme">
<!-- Main activity -->
<activity android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Content provider, used to provide images for transmission. -->
<provider
android:name="com.example.android.common.assetprovider.AssetProvider"
android:authorities="com.example.android.beamlargefiles.files"
android:exported="true"/>
</application>
</manifest>