Liu Yunlong
Liu Yunlong
### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the problem [Play Feature Delivery](https://developer.android.com/guide/playcore/feature-delivery#feature_build_config) need requires a reverse dependency. eg: from...
### What is the issue? Hey, I found an issue of infinite generation that cannot be stopped, when deploying a [Chinese fine-tuned model of llama3 ](https://huggingface.co/hfl/llama-3-chinese-8b-instruct-gguf) How to solve this...
```kotlin val colorSpan = BackgroundColorSpan(Color.parseColor("#aa5f0c")) ss.setSpan(colorSpan, 101, 105, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) ss.setSpan(object : ClickableSpan() { override fun onClick(widget: View) { Toast.makeText(widget.context, "123", Toast.LENGTH_LONG).show() } }, 101, 105, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) text.text = ss text.textSize...