Jump to content

Issue with EvernoteIntent.viewNote().setNoteGuid(guid).setFullScreen(false).create()


Recommended Posts

I'm still in the process of acquiring an android phone, so I'm doing the testing in an Android Studio emulator.

The implementation below is not working (It is not opening the application). I wonder if this is because the testing is being done against an emulator?

Intent intent = EvernoteIntent.viewNote().setNoteGuid(guid).setFullScreen(false).create();
activity.startActivityFromFragment(this, intent, 3);

I have also configured the AndroidManifest.xml with the following:

<activity
    android:name="com.companyA.activity.FarmingActivity"
    android:configChanges="screenSize|orientation"
    android:label="@string/title_activity_farming"

    android:windowSoftInputMode="stateAlwaysHidden|adjustUnspecified"
    android:exported='true'>
    <intent-filter>
        <action android:name="com.evernote.action.VIEW_NOTE" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
Link to comment

Thank you for all your tips. I'm currently waiting for the Android Device which is already on its way to my address. I will definitely reach out to Evernote support if the issue is reproducible in an actual physical device.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...