アラーム用ANEのエラーについて

アラーム用ANEのエラーについて先日お問い合わせいただいたので共有しておきます。
下記のようなメッセージが表示されることがあります。

【MacOSXの場合】
ムービープレビューが終了しました。
The content cannot be loaded because there was a problem loading anextension: Error: Requested extension gamekozo.ane.Alarm is not supported for MacOS-x86.

【Windowsの場合】
ムービープレビューが終了しました。
The content cannot be loaded because there was a problem loading anextension: Error: Requested extension gamekozo.ane.Alarm is not supported for Windows-x86.

これは「制御」ー「シーンプレビュー」をクリックした場合で、アラーム用ANEはAndroid用として制作しているため、シーンプレビューで利用できないとの警告をされているわけです。
「ファイル」ー「Air3.X for Android」ー「パブリッシュ」で実機、もしくはエミュレータにてご利用いただきますと問題なく動作することを確認させていただきました。

Androidでapk出力エラー

Androidでapkを出力時にproguard.cfgで下記のようなエラーになりました。

Obsolete proguard file; use -keepclasseswithmembers instead of -keepclasseswithmembernames
昨日アップデートとしたときにRun Android Lintというメニューが追加になっていたので何か変わったのでしょう。
insted of なので下記のように変更してみました。

<変更前>

-keepclasseswithmembernames class * {
    native <methods>;
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}

-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

<変更後>

-keepclasseswithmembernames class * {
    native <methods>;
}
-keepclasseswithmembers class * {
    public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.app.Activity {
   public void *(android.view.View);
}
-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

一つずつ試してみて2つだけ直すだけで特に問題なくapkが出力できるようになりました。
全部直していいのかわからないので取りあえずです。