I’m currently working on a client-server app for android and I’m wondering if it is ok to use the Android.jar library for the server component of my application. Does anyone understand the legalities and technicalities surrounding this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
the Android.jar is full of empty methods that throw Stub exceptions when you try to run off device. If you’re doing this for unit tests or just something to build against then you can use something like mockito to either suppress the implementations or mock the return data. Since you are using the jar and not modifying the source, you shouldn’t have any problems legally.