You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package some;
interface Test{
public void getter();
public void setter();
}
public class TestClass implements Test{
public void getter(){
}
public void setter(){
}
}
I test in pc
javac TestClass.java
this make Test.class and TestClass.class later execute example.py and this found.
later i build with buildozer in the kivy app and run but show this error
interface some.Test is not visible from class loader
TestClass found but Test inteface not found
The text was updated successfully, but these errors were encountered:
👋 We use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. Please use our support channels to get help with the project.
Let us know if this comment was made in error, and we'll be happy to reopen the issue.
example.py
TestClass.java
I test in pc
javac TestClass.java
this make Test.class and TestClass.class later execute example.py and this found.
later i build with buildozer in the kivy app and run but show this error
interface some.Test is not visible from class loader
TestClass found but Test inteface not found
The text was updated successfully, but these errors were encountered: