You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Explicit intent that violates intent filter for activity FileImportActivity
makes the application access the network in OpenSudokuImportTask class while
attempting to get a .opensudoku file from a remote location.
Intent should be rejected before potentially causing security issues.
Violating intent is:
intent://192.168.39.169/android/nmjC.opensudoku;
scheme=http;
action=android.intent.action.SYNC;
category=android.intent.category.DEFAULT;
while action in the filter is defined as:
<action android:name="android.intent.action.VIEW"></action>
A JUnit test case to reproduce the scenario is attached
Original issue reported on code.google.com by [email protected] on 31 Jan 2013 at 5:34
Original issue reported on code.google.com by
[email protected]
on 31 Jan 2013 at 5:34Attachments:
The text was updated successfully, but these errors were encountered: