Your build is a black box to me at this point. How is your library published, is it a plain jar, aar or apklib.
If it is a plain jar, it absolutely must not generate R or TR. And, of course, your code must not reference either R or TR. You might want to set typedResources in Android := false in your library project. -- Sent from my phone On Sep 8, 2014 8:10 PM, "Srinivas" <[email protected]> wrote: > Hello Perry. > > It is working fine with following proguard options in app's build.sbt, is > this okay or something else can be done? > > proguardOptions in Android ++= Seq( > "-dontwarn com.myapps.libraries.android.R$*", > "-dontwarn com.myapps.libraries.android.TR$*" > ) > > -- > You received this message because you are subscribed to the Google Groups > "scala-on-android" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "scala-on-android" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
