We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ClassId(“Singleton”) public interface ISingleton { @MethodId(“setData”) void setData(String data); @MethodId(“getData”) String getData(); } @ClassId(“Singleton”) public class Singleton { ... @MethodId(“setData”) public void setData(String data) { mData = data; } @MethodId(“getData”) public String getData() { return mData; } }
不知道有没有理解偏了。
The text was updated successfully, but these errors were encountered:
@fashare2015 对,你的理解没错。^.^
主要是把android binder机制封装一下,让用户不用关心底层通信原理,这样IPC开发就可以变得简单。
Sorry, something went wrong.
请问一下 annotation上面写的classId 要写package 名字吗
No branches or pull requests
不知道有没有理解偏了。
The text was updated successfully, but these errors were encountered: