mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-13 22:56:18 +00:00
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.ian.titanscout">
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus"/>
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="true"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity android:name=".qrActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MatchesTableView"
|
|
android:label="@string/title_activity_matches_table_view"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
</activity>
|
|
<activity
|
|
android:name=".PrematchesActivity"
|
|
android:label="@string/title_activity_prematches"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |