jolenic

Manifest for Watch that Hates Me T_T

Oct 23rd, 2020
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 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.example.androidlabs">
  4.  
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <uses-feature
  7. android:name="android.hardware.camera"
  8. android:required="true" />
  9. <uses-feature android:name="android.hardware.type.watch"/>
  10.  
  11. <application
  12. android:allowBackup="true"
  13. android:icon="@mipmap/ic_launcher"
  14. android:label="@string/app_name"
  15. android:roundIcon="@mipmap/ic_launcher_round"
  16. android:supportsRtl="true"
  17. android:theme="@style/AppTheme">
  18. <activity android:name=".WeatherForecast"></activity>
  19. <activity android:name=".ChatRoomActivity" />
  20. <activity android:name=".ProfileActivity" />
  21. <activity android:name=".MainActivity">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24.  
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. </application>
  29.  
  30. </manifest>
Add Comment
Please, Sign In to add comment