4

MACでEclipse ADT v21.1.0-569685を使用してProguardを使用して、Androidアプリケーションコードを最適化しようとしています。プロジェクト-> Androidツール->割り当てられたアプリケーションパッケージのエクスポートオプションを使用して、プライベート証明書で署名しましたが、署名の終了時に次のエラーが発生しました。

プロジェクトのプロパティ

# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-17
android.library.reference.1=../google-play-services_lib

proguard-project.txt

# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

コンソール ログ:

[2013-04-12 10:41:53 - MyApp] Proguard returned with error code 1. See console
[2013-04-12 10:41:53 - MyApp] proguard.ParseException: Expecting class member name before '@' in line 82 of file '/Users/MyOrg/Android_workspace/MyApp/bin/proguard.txt',
[2013-04-12 10:41:53 - MyApp]   included from argument number 6
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.readNextWord(ConfigurationParser.java:1133)
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.readNextWord(ConfigurationParser.java:1117)
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.parseMemberSpecificationArguments(ConfigurationParser.java:845)
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.parseClassSpecificationArguments(ConfigurationParser.java:697)
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.parseKeepClassSpecificationArguments(ConfigurationParser.java:490)
[2013-04-12 10:41:53 - MyApp]   at proguard.ConfigurationParser.parse(ConfigurationParser.java:139)
[2013-04-12 10:41:53 - MyApp]   at proguard.ProGuard.main(ProGuard.java:484)
  1. 上記の問題を解決するにはどうすればよいですか?
  2. 私が読んだprouard.projectファイルで

プロジェクトで JS で WebView を使用している場合は、次のコメントを外し、完全修飾クラス名を JavaScript インターフェイス クラスに指定します。

WebAppInterface.java クラスの 2 つのアクティビティで webview を使用しました。上記のステートメントを実行するにはどうすればよいですか?

4

1 に答える 1

6

レイアウト ファイルのandroid:onClick属性で、「 @string/on_click_handler_name」のようなリソース名を参照しても問題ありません。ただし、proguard はこれらの参照を解決できません。

詳細については、 http://android.okhelp.cz/proguard-parseexception-expecting-class-member-name-before/を確認してください。

string.xml で@string/tha_lf_et_todate_onclick対応する値を見つけて更新します。

android:onClick="@string/tha_lf_et_todate_onclick" 

android:onClick="onClickXXX" 

あなたのレイアウトファイルで。2 番目の質問については、そのコードのコメントを外し、「fqcn.of.javascript.interface.for.webview」をクラスの完全修飾名に置き換えます。

于 2013-08-13T01:38:02.223 に答える