Remove AndroidManifest.xml from UIManager (#22044)

Summary:
AndroidManifest.xml file in UIManager only defines minimum SDK version for whole namespace "com.facebook". But it is always redefined by build.gradle file because Gradle file has precedence.

https://github.com/facebook/react-native/blob/master/ReactAndroid/build.gradle#L273

Anyway Gradle is prefered way to define it. So i think it should be removed if it is not used for another purpose.
Pull Request resolved: https://github.com/facebook/react-native/pull/22044

Differential Revision: D12898251

Pulled By: hramos

fbshipit-source-id: 087b5cc45495109b5626c9cb232d0546c53fb709
This commit is contained in:
Radovan Šmitala
2018-11-01 20:09:11 -07:00
committed by Facebook Github Bot
parent efc9506a8e
commit 7f79254cfe

View File

@@ -1,6 +0,0 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.facebook" >
<uses-sdk android:minSdkVersion="15"/>
</manifest>