mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove"/>
|
|
|
|
<uses-feature android:name="android.hardware.type.watch" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:name=".WatchApp"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.DeviceDefault">
|
|
<uses-library
|
|
android:name="com.google.android.wearable"
|
|
android:required="true" />
|
|
|
|
<meta-data
|
|
android:name="com.google.android.wearable.standalone"
|
|
android:value="false" />
|
|
|
|
<meta-data
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
android:value="false" />
|
|
|
|
<meta-data
|
|
android:name="google_analytics_ssaid_collection_enabled"
|
|
android:value="false" />
|
|
|
|
<meta-data
|
|
android:name="google_analytics_default_allow_ad_personalization_signals"
|
|
android:value="false" />
|
|
|
|
<activity
|
|
android:name=".presentation.MainActivity"
|
|
android:exported="true"
|
|
android:taskAffinity=""
|
|
android:theme="@style/MainActivityTheme.Starting">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |