mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-25 03:14:37 -06:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="pl.szczodrzynski.edziennik">
|
||
|
|
||
|
<uses-feature android:name="android.hardware.type.watch" />
|
||
|
|
||
|
<!-- Required to act as a custom watch face. -->
|
||
|
<uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Required for complications to receive complication data and open the provider chooser. -->
|
||
|
<uses-permission android:name="com.google.android.wearable.permission.RECEIVE_COMPLICATION_DATA" />
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@android:style/Theme.DeviceDefault">
|
||
|
<meta-data
|
||
|
android:name="com.google.android.wearable.standalone"
|
||
|
android:value="false" />
|
||
|
<meta-data
|
||
|
android:name="com.google.android.gms.version"
|
||
|
android:value="@integer/google_play_services_version" />
|
||
|
|
||
|
<uses-library
|
||
|
android:name="com.google.android.wearable"
|
||
|
android:required="true" />
|
||
|
|
||
|
<activity
|
||
|
android:name=".MainActivity"
|
||
|
android:label="@string/app_name"
|
||
|
android:theme="@style/AppThemeDark">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<action android:name="android.intent.action.VIEW" />
|
||
|
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="android.support.wearable.activity.ConfirmationActivity">
|
||
|
</activity>
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|