2

我试图从 Eclipse 导出未签名的应用程序以获取发布文件,它不断给我Fatal Error Code 1这些细节:

PS 我们使用的是 Twitter4J 库,而我们不使用任何与 Facebook 相关的东西。

[2013-05-17 13:16:07 - Faltirha] Proguard returned with error code 1. See console
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.auth.FacebookAuthenticationProvider$1: can't find superclass or interface com.facebook.android.Facebook$ServiceListener
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.auth.FacebookAuthenticationProvider$2: can't find superclass or interface com.facebook.Session$StatusCallback
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.auth.FacebookAuthenticationProvider$2$1: can't find superclass or interface com.facebook.Request$Callback
[2013-05-17 13:16:07 - Faltirha] Warning: twitter4j.management.APIStatisticsOpenMBean: can't find superclass or interface javax.management.DynamicMBean
[2013-05-17 13:16:07 - Faltirha] Warning: com.google.android.gms.internal.bn$b: can't find referenced method 'android.view.Display getDisplay()' in class android.view.View
[2013-05-17 13:16:07 - Faltirha] Warning: com.google.android.gms.internal.bn$b: can't find referenced method 'void removeOnGlobalLayoutListener(android.view.ViewTreeObserver$OnGlobalLayoutListener)' in class android.view.ViewTreeObserver
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.Session
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.Session
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.Session
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.android.Facebook
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.android.Facebook
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.android.Facebook
[2013-05-17 13:16:07 - Faltirha] Warning: com.parse.ParseFacebookUtils: can't find referenced class com.facebook.Session

......

[2013-05-17 13:16:07 - Faltirha]       You should check if you need to specify additional program jars.
[2013-05-17 13:16:07 - Faltirha] Warning: there were 203 unresolved references to classes or interfaces.
[2013-05-17 13:16:07 - Faltirha]          You may need to specify additional library jars (using '-libraryjars').
[2013-05-17 13:16:07 - Faltirha] Warning: there were 2 unresolved references to program class members.
[2013-05-17 13:16:07 - Faltirha]          Your input classes appear to be inconsistent.
[2013-05-17 13:16:07 - Faltirha]          You may need to recompile them and try again.
[2013-05-17 13:16:07 - Faltirha]          Alternatively, you may have to specify the option 
[2013-05-17 13:16:07 - Faltirha]          '-dontskipnonpubliclibraryclassmembers'.
[2013-05-17 13:16:07 - Faltirha] java.io.IOException: Please correct the above warnings first.
[2013-05-17 13:16:07 - Faltirha]    at proguard.Initializer.execute(Initializer.java:321)
[2013-05-17 13:16:07 - Faltirha]    at proguard.ProGuard.initialize(ProGuard.java:211)
[2013-05-17 13:16:07 - Faltirha]    at proguard.ProGuard.execute(ProGuard.java:86)
[2013-05-17 13:16:07 - Faltirha]    at proguard.ProGuard.main(ProGuard.java:492)

编辑: 我能够通过在项目属性文件中对此进行评论来导出未签名的应用程序

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project‌​.txt:proguard-google-api-client.txt

但我认为这不是解决方案!

4

3 回答 3

5

我能够通过添加该行来克服这个确切的问题

-dontwarn com.google.android.gms.**

到我的 proguard-project.txt 文件。

于 2013-06-04T05:58:05.333 回答
0

我可以通过在 project-properties 文件中注释这个(下面)来导出未签名的应用程序

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project‌​.txt:proguard-google-api-client.txt

但我认为这不是正确的解决方案!

于 2013-05-18T17:24:52.653 回答
0

不,解决方案是不要在项目属性文件中注释它,除非您不关心加密您的 apk。如果您不关心有人解密您的代码,请继续将其从项目属性文件中删除。

于 2014-09-04T00:38:04.027 回答