You can import that class by adding the original AndroidRuntime.jar from the AI2 extension template as your extension's compile-time dependency. In Rush, to add any JAR as a compile-time dependency, just add it inside the deps directory but don't include it in the rush.yml file.
While i understand that in my profile i have space but how do I ignore the same. "C:\users\amrish shah".
How doi ignore space while building / compiling.
┌ Checking project files
│ info Checking metadata file (rush.yml)
│ info Checking AndroidManifest.xml file
└ done
┌ Compiling sources
│ info Picked 1 source file
│ erro invalid flag: Shah\AppData\Roaming\rush\workspaces\io.amrish.test\classes
│ Usage: javac
│ use --help for a list of possible options
└ failed
This is a known bug and will be fixed in a future release. Until then, try this workaround:
Copy/Move everything inside the Rush data directory (located at C:\Users\amrish shah\AppData\Roaming\rush) to a place whose path has no whitespace, for e.g., C:\rush.
Then, create a new environment variable named RUSH_DATA_DIR and set it equal to the path of the new data directory.
It doesn't look like it has anything to do with ProGuard. Is this extension being tested in the companion? If yes, make sure that you restart the companion connection every time you make changes in the extension. In some cases, you might even need to delete the companion's directory from your Android device.
Seems like the issue doesn't have to do with the intialization of the method itself, but rather from where you call the method. Could you please send that?
does Rush support @Options annotation?
I am trying to make a extension with helper block using @Options annotation like:
@SimpleProperty
public void RepeatMode(@Options(RepeatMode.class) int mode) {
this.repeatMode = mode;
}
@SimpleProperty
public @Options(RepeatMode.class) int RepeatMode() {
return this.repeatMode;
}