Reputation: 11124
This is an error msg.
Method Object.toString(),
referenced in method SettingActivity.saveDataButtons(),
will not be accessible in module personal-health-assistant back up 29 oct
Method String.trim(),
referenced in method SettingActivity.setNullCurrentFocusedEditText(),
will not be accessible in module personal-health-assistant back up 29 oct
Method String.length(),
referenced in method SettingActivity.setNullCurrentFocusedEditText(),
will not be accessible in module personal-health-assistant back up 29 oct
I want to know
Upvotes: 12
Views: 3811
Reputation: 57
This warning is commonly emitted regarding inaccessible non-public methods (since moving it out of the package prevents other members of the initial package from accessing it).
However, since in your case SettingActivity is accessing quite common classes Object and String, and that too their public methods, it seems you are moving it to a package not hooked up to the SDK.
"personal-health-assistant back up 29 oct" might be configured with another SDK (non-Android)
Upvotes: 3