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
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
We tried creating a custom HttpClient in our library project. BTW today is 5th June - check out https://www.resetthenet.org/ - makes you want to secure all your apps :)
Using the latest 3.1 SNAPSHOT we cannot compile because the Resource is in a library project and since resources in library projects are not final static we cannot specify our truststore directly as a resource (in this case R.raw.mycacerts).
related: #20, #306
We tried creating a custom
HttpClientin our library project. BTW today is 5th June - check out https://www.resetthenet.org/ - makes you want to secure all your apps :)Using the latest 3.1 SNAPSHOT we cannot compile because the Resource is in a library project and since resources in library projects are not
final staticwe cannot specify our truststore directly as a resource (in this caseR.raw.mycacerts).https://github.com/excilys/androidannotations/wiki/Library-projects#referencing-ids-by-name suggests referencing the resources by
resName, however that is mostly possible for layouts but not for Annotations such as@HttpsClient. Can we please add a support for resName as well? resName would reference thetruststoreand/or thekeystoreresources.