Add support for long
enumification
#1187
Labels
enhancement
Proposed change to current functionality
generator
Issues binding a Java library (generator, class-parse, etc.)
Context: dotnet/android#8182
Context: dotnet/android#8707
We have now had 2 instances of enumification values in
android.jar
requiringlong
enums instead ofint
enums. Asgenerator
doesn't have any support forlong
enums, these had to be handled manually. Additionally, if thelong
enum is manually created and added to the api with:it will create the correct API, but the binding code will be created as
int
rather thanlong
:This requires the method to be hand-bound to fix the binding.
The text was updated successfully, but these errors were encountered: