blob: 79a7194002bf91cd4a5894e4507ea4319a2afdc6 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.android.apps.testapp"
android:versionCode="70"
android:versionName="1.0">
<uses-sdk
android:minSdkVersion="10"
tools:overrideLibrary="com.google.android.apps.testapp3"/>
<uses-feature android:name="android.hardware.nfc" android:required="true" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application
android:icon="@drawable/icon"
android:name="com.google.android.apps.testapp.TestApplication"
android:theme="@style/Theme.Test"
android:label="@string/app_name">
<!-- START LIBRARIES (Maintain Alphabetic order) -->
<!-- NFC extras -->
<uses-library android:name="com.google.android.nfc_extras" android:required="false"/>
<!-- END LIBRARIES -->
<!-- START ACTIVITIES (Maintain Alphabetic order) -->
<!-- Entry point activity - navigation and title bar. -->
<activity
android:name=".entrypoint.EntryPointActivityGroup"
android:screenOrientation="portrait"
android:launchMode="singleTop"/>
<activity android:name=".ui.topup.TopUpActivity" />
<service android:name=".nfcevent.NfcEventService" />
<receiver
android:name="com.receiver.TestReceiver"
android:process="@string/receiver_service_name">
<!-- Receive the actual message -->
<intent-filter>
<action
android:name="android.intent.action.USER_PRESENT"/>
</intent-filter>
</receiver>
<provider
android:name=".dataaccess.persistence.ContentProvider"
android:authorities="com.google.android.apps.testapp"
android:exported="false" />
</application>
</manifest>