Android Question Problem in simple library compiler

Hello.
When I use Persian letters in a Java class and I want to compile it, unfortunately it gives this error


Does it not support Persian letters?
 
Try to convert the source code files encoding to CP1252. You can do it with Notepad++.
I am using this code

private static final String[] units = {"", "یک", "دو", "سه", "چهار", "پنج", "شش", "هفت", "هشت", "نه"};

but I get this error when compiling with slc.


I even made those changes in Notepad, encoding to CP1252.
 
Upvote 0