Last active
December 26, 2019 17:13
-
-
Save Ochornma/261e91b2ff5e439ab43479f26050262e to your computer and use it in GitHub Desktop.
Android manifest for wear os
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
| <uses-permission android:name="android.permission.INTERNET" /> | |
| <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | |
| <application | |
| android:allowBackup="true" | |
| android:icon="@mipmap/nlogo" | |
| android:label="@string/app_name" | |
| android:networkSecurityConfig="@xml/network_security_config" | |
| android:supportsRtl="true" | |
| android:usesCleartextTraffic="true" | |
| tools:targetApi="m"> | |
| <uses-library | |
| android:name="org.apache.http.legacy" | |
| android:required="false" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment