OSDN Git Service

848e0e29c7be9c1ccb75e38cf9ac4f8af5f6fbe5
[gokigen/JoggingTimer.git] / wear / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
4     <uses-feature android:name="android.hardware.type.watch" />
5
6     <uses-permission android:name="android.permission.WAKE_LOCK" />
7     <uses-permission android:name="android.permission.VIBRATE" />
8
9     <!-- android:theme="@android:style/Theme.DeviceDefault" -->
10     <application
11         android:allowBackup="true"
12         android:icon="@mipmap/ic_launcher"
13         android:label="@string/app_name"
14         android:supportsRtl="true"
15         android:fullBackupContent="true"
16         android:theme="@style/AppTheme">
17         <uses-library
18             android:name="com.google.android.wearable"
19             android:required="true" />
20         <meta-data
21             android:name="com.google.android.wearable.standalone"
22             android:value="true" />
23
24         <activity
25             android:name=".stopwatch.MainActivity"
26             android:exported="true">
27             <intent-filter>
28                 <action android:name="android.intent.action.MAIN" />
29                 <category android:name="android.intent.category.LAUNCHER" />
30             </intent-filter>
31             <intent-filter>
32                 <action android:name="com.google.android.wearable.action.STOPWATCH" />
33                 <category android:name="android.intent.category.DEFAULT" />
34             </intent-filter>
35             <intent-filter>
36                 <action android:name="vnd.google.fitness.TRACK" />
37                 <category android:name="android.intent.category.DEFAULT" />
38                 <data android:mimeType="vnd.google.fitness.activity/running"/>
39             </intent-filter>
40             <intent-filter>
41                 <action android:name="vnd.google.fitness.TRACK" />
42                 <category android:name="android.intent.category.DEFAULT" />
43                 <data android:mimeType="vnd.google.fitness.activity/biking"/>
44             </intent-filter>
45             <intent-filter>
46                 <action android:name="vnd.google.fitness.TRACK" />
47                 <category android:name="android.intent.category.DEFAULT" />
48                 <data android:mimeType="vnd.google.fitness.activity/other"/>
49             </intent-filter>
50         </activity>
51         <activity
52             android:name=".recordlist.ListActivity"
53             android:exported="true"
54             android:label="@string/result_list">
55             <intent-filter>
56                 <action android:name="android.intent.action.VIEW" />
57                 <category android:name="android.intent.category.DEFAULT" />
58             </intent-filter>
59         </activity>
60         <activity
61             android:name=".recorddetail.DetailActivity"
62             android:label="@string/result_detail">
63         </activity>
64         <activity
65             android:name="androidx.wear.activity.ConfirmationActivity">
66         </activity>
67     </application>
68 </manifest>