Luke Tang

Results 4 issues of Luke Tang

android studio dolphin, can't build ```log Task :app:dataBindingMergeDependencyArtifactsDebug AGPBI: {"kind":"warning","text":"Your project has set `android.useAndroidX=true`, but configuration `:app:debugRuntimeClasspath` still contains legacy support libraries, which may cause runtime issues.\nThis behavior will not...

SDK31以上, 创建PendingIntent时, flag必须设置,请参考最新的api文档 ~~~ Caused by: java.lang.IllegalArgumentException: com.luke.endoscope: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using...

使用测试的AUSBC.apk,版本为3.2.7。预览一直黑屏。 但可以获取到可选的预览尺寸。 手机型号为: Redmi Note 10, android 11. [AUSBC_v3.2.7_2022-09-28.txt](https://github.com/jiangdongguo/AndroidUSBCamera/files/9661019/AUSBC_v3.2.7_2022-09-28.txt)

``` import 'package:image/image.dart' as img; void main() async { final cmd = img.Command() ..decodePngFile('test_origin.png') ..ditherImage() ..writeToFile('test_image_dithered.png'); await cmd.executeThread(); } ``` origin image ![test_origin](https://github.com/brendan-duncan/image/assets/17872712/526504c1-75d6-420b-b562-d4eccfeb5e30) converted image ![test_image_dithered](https://github.com/brendan-duncan/image/assets/17872712/a116fd69-72a0-4ffa-9663-f0f1050a4d6b) The two pictures look...