react-native
Version:
A framework for building native apps using React
16 lines (13 loc) • 488 B
text/xml
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
>
<!-- This is necessary to inform the linter about our min API version. The linter walk the tree
up from the file to lint until it find an AndroidManifest with a minSdkVersion. This is then used
as the min SDK to lint the file.-->
<uses-sdk
android:minSdkVersion="24"
android:targetSdkVersion="35"
/>
</manifest>