Closed petrukhin closed 5 years ago
The issue relates to this page.
Code block below:
Bitmap picture = BitmapFactory.decodeResource( appContext.getResources(), R.drawable.test);
should be replaced to
val picture = BitmapFactory.decodeResource( appContext.resources, R.drawable.test)
Thanks for reporting this, I've corrected the document.
The issue relates to this page.
Code block below:
should be replaced to