After this long delay I must share the solution that I have found which sounds simpler.
At first I tried pfn's solution and I saw that the compiler was complaining that classes were already defined. What I had not realized was that by including facebook-sdk as a module inside intellij, intellij itself had placed a line like that inside project.properties file: android.library.reference.1=../facebook The tutorial I had followed is found in this link: http://stackoverflow.com/questions/14729026/seem-doesnt-get-facebook-sdk-resource-when-using-facebook-android-sdk-in-intell/14732898#14732898 And in order to give a complete answer I must say that you need to include inside proguard settings these two lines: -keep class com.facebook.** { *; } -keepattributes Signature I have not used facebook sdk much, except of using this command: com.facebook.AppEventsLogger.activateApp(ctx, FACEBOOK_APP_ID) So I can not say with 100% certainty if my solution works but it compiles and runs ok so far. Leave any comments if there is anything that feels wrong to you -- 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/groups/opt_out.
