Document the minSdkVersion of the TFLite Java library.

PiperOrigin-RevId: 294478777
Change-Id: I37d762b0a9ddeb7bccf30c44ecbb75fbfeb8401f
This commit is contained in:
Lu Wang 2020-02-11 11:13:16 -08:00 committed by TensorFlower Gardener
parent 6719cb8f93
commit 937d13b22f
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@
package="org.tensorflow.lite">
<uses-sdk
android:targetSdkVersion="19" />
android:minSdkVersion="19" />
<application />

View File

@ -73,6 +73,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.
*/
public final class Interpreter implements AutoCloseable {