Created
April 23, 2021 12:49
-
-
Save dellis1972/ad1098ba0494e737a2ebc5023ca2d212 to your computer and use it in GitHub Desktop.
Manifest Overlay Example
This file contains 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
<ItemGroup> | |
<AndroidManifestOverlay Include="profileableoverlay.xml" Condition=" '$(ProfileMe)' == 'True' " /> | |
</ItemGroup> | |
This file contains 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
<?xml version=""1.0"" encoding=""utf-8""?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<application> | |
<profileable android:shell="true" /> | |
</applicastion> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment