1# Tests const-method-type added in DEX version 39. 2 3# Compile using smali: https://github.com/JesusFreke/smali 4# java -jar smali.jar assemble const-method-type.smali --api 28 5 6.class public LConstMethodTypeTest; 7.super Ljava/lang/Object; 8 9.method public test(I)V 10 .registers 4 11 const-method-type v0, ()I 12 const-method-type v1, (C)V 13 const-method-type v2, (I)V 14 const-method-type v3, (I)I 15 return-void 16.end method 17