From 2a134885d7bbae278f9595bbdc530bf61fd39a80 Mon Sep 17 00:00:00 2001 From: Adam Wushensky Date: Tue, 14 Jun 2022 15:04:13 -0400 Subject: [PATCH] Make this a non-breaking change --- stripecardscan/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stripecardscan/build.gradle b/stripecardscan/build.gradle index c9cc7512e32..2877c24ba52 100644 --- a/stripecardscan/build.gradle +++ b/stripecardscan/build.gradle @@ -22,9 +22,9 @@ dependencies { api project(":stripe-core") implementation project(":camera-core") - // Allow the user to specify their own version of Tensorflow Lite to include - runtimeOnly project(":stripecardscan-tflite") - compileOnly "org.tensorflow:tensorflow-lite:2.8.0" + // If a user wants to use their own TFLite implementation, they can exclude this dependency + // explicitly in their gradle dependency. + implementation project(":stripecardscan-tflite") implementation "androidx.appcompat:appcompat:$androidxAppcompatVersion" implementation "androidx.constraintlayout:constraintlayout:$androidxConstraintlayoutVersion"