Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to test third party developer apps with robotium. The problem is both apk should sign with same keys. So if third party developer put constraint or some check on run time for particular signature , how can i test?

Resigning is not a solution in this case? And also the other solution i can think of multi sign. Is there any better way?

PS: I already went through related threads. I apologies if i have missed any.

share|improve this question

1 Answer

up vote 0 down vote accepted

I had something similar happen, and the fix isn't easy. I wrote a Robotium program for an app that was built by a third party, but they signed it with an encrypted signature. What I had to do was write an Ant script that had a KeySigner inside of it that made the two signatures match. Even with that though, I still have 4 things I have to do in order to launch the test app.

I guess the short answer is: No, unless you have the signature or can create a new one, your a out of luck.

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.