I am using the next lines of code to transform Path object and draw it on the screen:
bitmapPath.addRect(bitmapRectF, Path.Direction.CW);
bitmapPath.transform(bitmapMatrix);
When my targetSDK is set to 7 this code works just fine on Android 4, but when I set it to 15, path is NOT transformated at all by matrix specified in the method. An Android 3.2 everything works also fine even with targetSDK set to 15. Any ideas?