AIDL を介して他のアプリケーションにバインドされるサービスを作成し、次のようにマニフェストに追加します。
<service android:name=".MyService">
<intent-filter>
<action android:name="org.example.android.myservicedemo.IService" />
</intent-filter>
</service>
ここで、IService は AIDL インターフェイスです。
このようにして、Eclipse はExported service does not need permissionという警告を表示します。を削除するintent-filter
と、警告は消えますが、明らかにアプリケーションはサービスにバインドできません。
この警告はどういう意味ですか?