make K-9 Mail launch

This commit is contained in:
Julian Winkler
2024-12-13 16:25:07 +01:00
parent 17713781d0
commit 0e078894ce
14 changed files with 101 additions and 45 deletions

View File

@@ -0,0 +1,10 @@
package android.graphics;
public class Picture {
public Canvas beginRecording(int width, int height) {
return new Canvas(Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888));
}
public void endRecording() {}
}