Bug #66
Build fails because of missing drawable resources
Start date:
01/11/2022
Due date:
% Done:
100%
Estimated time:
Description
When I build Objectlib I get error:
/distorted-objectlib/src/main/java/org/distorted/objectlib/main/ObjectType.java:48: error: cannot find symbol
MIRR_4 ( TwistyMirror.class , new int[] {4,4,4} , 24, R.drawable.mirr_4),
^
symbol: variable mirr_4
location: class drawable
/distorted-objectlib/src/main/java/org/distorted/objectlib/main/ObjectType.java:71: error: cannot find symbol
WIND_3 ( TwistyWindmill.class , new int[] {3,3,3} , 24, R.drawable.wind_3),
^
symbol: variable wind_3
location: class drawable
/distorted-objectlib/src/main/java/org/distorted/objectlib/main/ObjectType.java:72: error: cannot find symbol
FISH_3 ( TwistyFisher.class , new int[] {3,3,3} , 24, R.drawable.fish_3),
^
symbol: variable fish_3
location: class drawable
Looks like resources mirr_4, wind_3, fish_3 are missing.
History
Updated by Sergiy Kozyr almost 4 years ago
Four resources are missing:
/Users/skozyr/Projects/Android/distorted/distorted-objectlib/src/main/java/org/distorted/objectlib/automator/ObjectAutomatorRotate.java:285: error: cannot find symbol
Bitmap bmpArrow = openBitmap(act, R.drawable.ui_axis_arrow);
^
symbol: variable ui_axis_arrow
location: class drawable
/Users/skozyr/Projects/Android/distorted/distorted-objectlib/src/main/java/org/distorted/objectlib/automator/ObjectAutomatorWhole.java:833: error: cannot find symbol
Bitmap bmpCirc = openBitmap(act, R.drawable.ui_fading_circle);
^
symbol: variable ui_fading_circle
location: class drawable
/Users/skozyr/Projects/Android/distorted/distorted-objectlib/src/main/java/org/distorted/objectlib/automator/ObjectAutomatorWhole.java:834: error: cannot find symbol
Bitmap bmpShad = openBitmap(act, R.drawable.ui_hand_shadow);
^
symbol: variable ui_hand_shadow
location: class drawable
/Users/skozyr/Projects/Android/distorted/distorted-objectlib/src/main/java/org/distorted/objectlib/automator/ObjectAutomatorWhole.java:835: error: cannot find symbol
Bitmap bmpHand = openBitmap(act, R.drawable.ui_hand_pointer);
^
symbol: variable ui_hand_pointer
location: class drawable
Updated by Distorted Admin over 3 years ago
Hello Sergiy,
Commit 54c4cc9c adds the three missing icons mirr_4, wind_3, fish_3.
As to the other missing stuff from the 'Automator' package - the 'Automator' is a part of an attempt to write a visual guide how to touch-control the objects.
This effort has been abandoned for now, so feel free to simply delete the package entirely, it is not used anywhere.
Updated by Distorted Admin over 3 years ago
- Assignee set to Leszek Koltunski
- % Done changed from 0 to 100
Updated by Distorted Admin over 3 years ago
Commit 3fc78370 adds the (unused anyway) Automator resources.