- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[Scala on Android] NoSuchMethodException excepiton
Sat, 2011-10-15, 17:07
Hi list -
I have a jar with following two objects, having no difference functional.
They work fine and have the same behaver on "normal" platform.
But when I dx them to android platform (using the cool sbt plugin - https://github.com/jberkel/android-plugin), the first one failed, throwing NoSuchMethodException.
proguard has not deleted the methods, since I put them both in "-keep" arg.
Any advice?
Thanks a lot.
object Helper {
implicit def helpersWrap[A](obj: A) = new {
def applyTo[B](f: A => B) = {
f(obj)
}
}
}
object Helper2 {
class Wrapped[A](val obj:A){
def applyTo[B](f: A => B) = {
f(obj)
}
}
implicit def helpersWrap[A](obj: A) = new Wrapped(obj)
}
On 15 Oct 2011, at 17:07, linjie nie wrote:
> proguard has not deleted the methods, since I put them both in "-keep" arg.
> Any advice?
I know from bitter experience that Proguard does not always behave as you think it might. I would suggest verifying that it really hasn't discarded anything you want it to keep by using dexdump before looking elsewhere.
--
paul.butcher->msgCount++
Snetterton, Castle Combe, Cadwell Park...
Who says I have a one track mind?
http://www.paulbutcher.com/
LinkedIn: http://www.linkedin.com/in/paulbutcher
MSN: paul@paulbutcher.com
AIM: paulrabutcher
Skype: paulrabutcher