PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WM] - Integrate thirdparty .jar file in Android app
[WM] - Integrate thirdparty .jar file in Android app
Iniciado por guest, 23,ago. 2017 12:13 - 2 respuestas
Publicado el 23,agosto 2017 - 12:13
Hello,

I am trying to integrate SkyEPub SDK (https://skyepub.net/) for eBook display in my app.

The tutorial states that we have to first modify the Manifest (.xml) file as follows (https://skyepub.net/tutorial-android/):
As the code is now showing in my post I am attaching it as an image
What part of the manifest file pasted above should I add to my projects manifest file?

If someone has done any such integration please guide me.

TIA
[attachment 2430 2017-08-23_154524.jpg]
Publicado el 23,agosto 2017 - 20:44
Hi. I think you only must define

android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="keyboardHidden|orientation"

for the activity. The rest manifest lines are for define the normal manifest for an app.


Rubén
Publicado el 24,agosto 2017 - 10:34
Rubén,

Thanks for your suggestions.