Summary: SoLoader library targets Android API 21 but main manifest targets 19. This will block buck android build. Closes https://github.com/facebook/yoga/pull/437 Reviewed By: astreet Differential Revision: D4611364 Pulled By: emilsjolander fbshipit-source-id: 113bcfce751e98b8a42e46e0101b6a4b1327b9c3
26 lines
657 B
XML
26 lines
657 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (c) 2014-present, Facebook, Inc.
|
|
All rights reserved.
|
|
|
|
This source code is licensed under the BSD-style license found in the
|
|
LICENSE file in the root directory of this source tree. An additional grant
|
|
of patent rights can be found in the PATENTS file in the same directory.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.facebook.yoga.android"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
>
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="15"
|
|
android:targetSdkVersion="21"
|
|
/>
|
|
|
|
<application/>
|
|
|
|
</manifest>
|