File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
android/src/main/java/com/rcttabview Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import android.annotation.SuppressLint
44import android.content.Context
55import android.content.res.ColorStateList
66import android.graphics.Typeface
7- import android.graphics.drawable.BitmapDrawable
87import android.graphics.drawable.ColorDrawable
98import android.graphics.drawable.Drawable
109import android.os.Build
@@ -17,6 +16,7 @@ import android.view.View
1716import android.view.ViewGroup
1817import android.widget.TextView
1918import androidx.appcompat.content.res.AppCompatResources
19+ import com.bumptech.glide.Glide
2020import com.bumptech.glide.load.DataSource
2121import com.bumptech.glide.load.engine.GlideException
2222import com.bumptech.glide.request.RequestListener
@@ -177,7 +177,7 @@ class ReactBottomNavigationView(context: Context) : BottomNavigationView(context
177177
178178 @SuppressLint(" CheckResult" )
179179 private fun getDrawable (imageSource : ImageSource , onDrawableReady : (Drawable ? ) -> Unit ) {
180- GlideApp .with (context)
180+ Glide .with (context)
181181 .`as `(Drawable ::class .java)
182182 .load(imageSource.uri)
183183 .listener(object : RequestListener <Drawable > {
You can’t perform that action at this time.
0 commit comments