Skip to content

Commit aec32f1

Browse files
NavidQarmeta-codesync[bot]
authored andcommitted
Add package for projects/integrations/Unity (multiple)
Summary: Our manifest merger is outdated, dating back to 2015. To improve its functionality, we need to decouple it from AOSP and upgrade to the latest version. Here's an initial attempt at doing so: D83352021 However, with the new manifest mergers, every library's AndroidManifest.xml should have a package field, which many of our repository's libraries currently lack. We must address this issue before we can successfully land the diff which is what this stack of diff is about. More: T239793438 Reviewed By: hick209 Differential Revision: D86437831 fbshipit-source-id: 6604faeec6bc256df2b37fda277cee83465c9911
1 parent 2811fec commit aec32f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/Plugins/Android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="com.meta.unity-startersamples">
33
<application android:label="@string/app_name" android:icon="@mipmap/app_icon" android:allowBackup="false">
44
<activity android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:launchMode="singleTask" android:name="com.unity3d.player.UnityPlayerActivity" android:excludeFromRecents="true" android:exported="true">
55
<intent-filter>

0 commit comments

Comments
 (0)