Starting my android-apk on the device, dalvik complains not to find some methods although all this methods are contained in classes.dex to see using apkanalyser dex packages .... These methods are from platform base android.jar
Why dalvik can not find them?
Background: This apk is built using the command line tools without gradle. (To understand the processes basically) Platform is android-25 excactly 25.3.1 build_tools_version="27.0.3"
The dalvik messages:
I/dalvikvm(17763): Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.widget.TintTypedArray.getType
W/dalvikvm(17763): VFY: unable to resolve virtual method 535: Landroid/content/res/TypedArray;.getType (I)I
D/dalvikvm(17763): VFY: replacing opcode 0x6e at 0x0008
but contained in classes.dex:
M d 1 1 133 android.support.v7.widget.TintTypedArray int getType(int)
M r 0 1 26 android.content.res.TypedArray int getType(int)
I do not expect souch warning because the methods are listed in classes.dex