banshee / AndroidProguardScala

An Eclipse builder for Android projects using Scala
136 stars 10 forks source link

SI-5397 workaround (for Scala 2.10) #33

Closed magicgoose closed 11 years ago

magicgoose commented 11 years ago

https://issues.scala-lang.org/browse/SI-5397 As far as I understand, I need to add the following options to proguard:

-keep class scala.collection.SeqLike {
    public protected *;
}

But if I modify proguard_processed.conf, all edits are overwritten, so I'm wondering how to do it? Is there a need for updating the plugin or I can easily change the options?

banshee commented 11 years ago

I'm not in front of the computer right now, so I can't check the filename, but there's another file you can add things to. In proguard-processed.conf there should be a comment line giving the path to that include file. On Feb 1, 2013 12:33 AM, "magicgoose" notifications@github.com wrote:

https://issues.scala-lang.org/browse/SI-5397 As far as I understand, I need to add the following options to proguard:

-keep class scala.collection.SeqLike { public protected *; }

But if I modify proguard_processed.conf, all edits are overwritten, so I'm wondering how to do it? Is there a need for updating the plugin or I can easily change the options?

— Reply to this email directly or view it on GitHubhttps://github.com/banshee/AndroidProguardScala/issues/33.

magicgoose commented 11 years ago

Oops. I should have guessed it myself. Sorry for another silly question,and thanks for the answer!