Advertisement
the-technoholik

garage_opener/wear/AndroidManifest.xml

Nov 15th, 2014
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.          package="com.kisscool.android.garage_opener.app">
  4.  
  5.     <application
  6.            android:allowBackup="false"
  7.            android:label="@string/app_name"
  8.            android:icon="@drawable/ic_launcher">
  9.         <activity
  10.                android:name=".WearActivity"
  11.                android:exported="true"
  12.                android:allowEmbedded="true"
  13.                android:taskAffinity=""
  14.                android:theme="@android:style/Theme.DeviceDefault.Light">
  15.             <intent-filter>
  16.                 <action android:name="android.intent.action.MAIN"/>
  17.                 <category android:name="android.intent.category.LAUNCHER"/>
  18.             </intent-filter>
  19.         </activity>
  20.  
  21.         <activity
  22.                android:name="android.support.wearable.activity.ConfirmationActivity">
  23.         </activity>
  24.  
  25.         <meta-data android:name="com.google.android.gms.version"
  26.                   android:value="@integer/google_play_services_version"/>
  27.     </application>
  28. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement