Hi.
I'm developing application with Tizen web view(EWK) for 2.3.1 wearable, and have some troubles to maintain the Google login information on web view.
I guessed that login information would be maintained if the cookie is alive, so I added below codes.
Ewk_Settings* settings = ewk_view_settings_get(ad->web_view); Ewk_Context* context = ewk_view_context_get(ad->web_view); |
And I made manifest file such as below.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <manifest xmlns="http://tizen.org/ns/packages" api-version="2.3.1" package="my.appid" version="1.2.2"> <profile name="wearable"/> <ui-application appid="my.appid" exec="my_app" hw-acceleration="on" multiple="false" nodisplay="false" taskmanage="true" type="capp"> <label>My App</label> <icon>my_app.png</icon> </ui-application> <privileges> <privilege>http://tizen.org/privilege/mediastorage</privilege> <privilege>http://tizen.org/privilege/network.get</privilege> <privilege>http://tizen.org/privilege/internet</privilege> </privileges> <feature name="http://tizen.org/feature/screen.size.normal">true</feature> <feature name="http://tizen.org/feature/network.internet">true</feature> <feature name="http://tizen.org/feature/screen.shape.circle">true</feature> </manifest> |
However, in spite of that, my Google account was logged out when I terminate my application. IMHO, cookie is removed from device if I terminate my app.
My questions are here :
1. Is it impossible to maintain the cookie after the app termination on 2.3.1 wearable platform?
2. or should I do something more?
Thanks regards!