Lime Extension does not build with current Template

Created Lime extension with this

Lime create Extension Test

Then went into the folder and ran

lime rebuild . android

Did Android Test -clean
and I get this error

 class Nativetext is public, should be declared in a file named Nativetext.java
public class Nativetext extends Extension {
       ^
1 error
:deps:nativetext:compileReleaseJavaWithJavac FAILED

Having a really hard time moving over current Extensions that I use to Gradle standards so If anyone could offer any expertise I’d appreciate it immensely.

Do you recognize the “Nativetext” class? Because I couldn’t find it anywhere in the default Lime extension.

If so, is there any chance that it’s in a file named NativeText.java? Java is case-sensitive, so that would cause the error.

I named the template NativeText.java with Lime create extension nativetext

In that file, try changing “Nativetext” to “NativeText.”