Remove the minSdk number.

PiperOrigin-RevId: 295808325
Change-Id: Ic396e3d788bcaeae0acc3fdd5d64867e750bba01
This commit is contained in:
Lu Wang 2020-02-18 13:28:42 -08:00 committed by TensorFlower Gardener
parent bdcb2782c3
commit 2c452720ee
2 changed files with 5 additions and 2 deletions

View File

@ -2,8 +2,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tensorflow.lite">
<!-- TFLite Java Library is built against NDK API 19. It may work for Android API levels below
19, but is not guaranteed. -->
<uses-sdk
android:minSdkVersion="19" />
android:targetSdkVersion="19" />
<application />

View File

@ -74,7 +74,8 @@ import org.checkerframework.checker.nullness.qual.NonNull;
* <p><b>WARNING:</b>Instances of a {@code Interpreter} is <b>not</b> thread-safe. A {@code
* Interpreter} owns resources that <b>must</b> be explicitly freed by invoking {@link #close()}
*
* <p>The minimum Android API Level ({@code minSdkVersion}) required for this library is 19.
* <p>The TFLite library is built against NDK API 19. It may work for Android API levels below 19,
* but is not guaranteed.
*/
public final class Interpreter implements AutoCloseable {