Jonah Dempcy

Results 26 comments of Jonah Dempcy

> its resolved now. i am able to get armeabi-v8a libepub3.so file(64bit). @adnanali-indpro How were you able to resolve it? I am running into the same error: conflicting declaration 'typedef...

I was able to fix that issue by removing the typedef lines in the following files: * readium-sdk/ePub3/ThirdParty/google-url/src/url_canon_ip.cc * readium-sdk/UnitTests/catch.hpp In each of those files, I commented out the following...

I ran into another error related to paths, which I was able to fix: ``` :epub3:buildMk make: Entering directory `/Users/jdempcy/Development/android-cloudshelf-reader/android-cloudshelf-reader/epub3' [arm64-v8a] Compile : epub3

I was actually able to work around the pathing issue without necessitating a change to the C++ code. I believe it was by editing a project.properties file to add the...

Daniel solved this! Thanks, Daniel! EPUBs must be placed within the SD card's "epubtest" folder. On my device, the path is "/sdcard/epubtest" — not "/storage/emulated/0/epubtest" as it was saying. As...

@JCCR I just tested http://readium.firebaseapp.com with Nexus 7 Gen 2 in Chrome Browser and it is blazing fast. However, I am not sure if page turns are calling firstVisibleCFI or...

@JCCR Yes! Nice work. I can confirm that a page that was previously taking ~650ms is now consistently ~400ms for getFirstVisibleCfi().

I noticed that saveCurrentPosition() also calls getFirstVisibleCfi() on every page turn. By caching this value instead of computing it each time, we could conceivably greatly speed up page turns as...

Also, I noticed with your pull request, Juan, that while the getFirstVisibleCfi() method returns accurate locations, getLastVisibleCfi() returns "/4/NaN/NaN/NaN" for me every time. Do you know why this might be?...

I have pulled down the latest readium-cfi-js develop, which I see has all these changes merged in. I rebuilt readium-shared-js and included it in our app. I have confirmed that...