diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 62475d6c97..0000000000
--- a/.gitattributes
+++ /dev/null
@@ -1,21 +0,0 @@
-*.audiobook filter=lfs diff=lfs merge=lfs -text
-*.cbz filter=lfs diff=lfs merge=lfs -text
-*.db filter=lfs diff=lfs merge=lfs -text
-*.epub filter=lfs diff=lfs merge=lfs -text
-*.jar filter=lfs diff=lfs merge=lfs -text
-*.jpeg filter=lfs diff=lfs merge=lfs -text
-*.jpg filter=lfs diff=lfs merge=lfs -text
-*.lcpa filter=lfs diff=lfs merge=lfs -text
-*.lcpdf filter=lfs diff=lfs merge=lfs -text
-*.mp3 filter=lfs diff=lfs merge=lfs -text
-*.mp4 filter=lfs diff=lfs merge=lfs -text
-*.otf filter=lfs diff=lfs merge=lfs -text
-*.pdf filter=lfs diff=lfs merge=lfs -text
-*.png filter=lfs diff=lfs merge=lfs -text
-*.ttf filter=lfs diff=lfs merge=lfs -text
-*.unknown filter=lfs diff=lfs merge=lfs -text
-*.webm filter=lfs diff=lfs merge=lfs -text
-*.webpub filter=lfs diff=lfs merge=lfs -text
-*.woff filter=lfs diff=lfs merge=lfs -text
-*.zip filter=lfs diff=lfs merge=lfs -text
-
diff --git a/.github/workflows/navigator.yml b/.github/workflows/checks.yml
similarity index 83%
rename from .github/workflows/navigator.yml
rename to .github/workflows/checks.yml
index b217d56694..28d7d502fd 100644
--- a/.github/workflows/navigator.yml
+++ b/.github/workflows/checks.yml
@@ -1,4 +1,4 @@
-name: Navigator
+name: Checks
on:
push:
@@ -13,17 +13,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- with:
- lfs: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build
- run: ./gradlew clean :readium:navigator:build -x test
+ run: ./gradlew clean build -x test
- name: Test
- run: ./gradlew :readium:navigator:test --continue
+ run: ./gradlew test --continue
lint:
name: Lint
@@ -37,8 +35,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- with:
- lfs: 'true'
- name: Install dependencies
run: npm install --prefix "$scripts"
- name: Lint JavaScript
diff --git a/.github/workflows/lcp.yml b/.github/workflows/lcp.yml
deleted file mode 100644
index ea417b8604..0000000000
--- a/.github/workflows/lcp.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: LCP
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
-
-jobs:
- build:
- name: Build and test
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- lfs: 'true'
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- java-version: '11'
- distribution: 'adopt'
- - name: Build
- run: ./gradlew clean :readium:lcp:build -x test
- - name: Test
- run: ./gradlew :readium:lcp:test --continue
diff --git a/.github/workflows/opds.yml b/.github/workflows/opds.yml
deleted file mode 100644
index b4cd85f0f0..0000000000
--- a/.github/workflows/opds.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: OPDS
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
-
-jobs:
- build:
- name: Build and test
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- lfs: 'true'
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- java-version: '11'
- distribution: 'adopt'
- - name: Build
- run: ./gradlew clean :readium:opds:build -x test
- - name: Test
- run: ./gradlew :readium:opds:test --continue
diff --git a/.github/workflows/shared.yml b/.github/workflows/shared.yml
deleted file mode 100644
index 5a72315886..0000000000
--- a/.github/workflows/shared.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Shared
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
-
-jobs:
- build:
- name: Build and test
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- lfs: 'true'
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- java-version: '11'
- distribution: 'adopt'
- - name: Build
- run: ./gradlew clean :readium:shared:build -x test
- - name: Test
- run: ./gradlew :readium:shared:test --continue
diff --git a/.github/workflows/streamer.yml b/.github/workflows/streamer.yml
deleted file mode 100644
index 9ada33caf4..0000000000
--- a/.github/workflows/streamer.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Streamer
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
-
-jobs:
- build:
- name: Build and test
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- lfs: 'true'
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- java-version: '11'
- distribution: 'adopt'
- - name: Build
- run: ./gradlew clean :readium:streamer:build -x test
- - name: Test
- run: ./gradlew :readium:streamer:test --continue
diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml
deleted file mode 100644
index 388850d9fb..0000000000
--- a/.github/workflows/test-app.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-name: Test App
-
-on:
- push:
- branches: [ main, develop ]
- pull_request:
-
-jobs:
- build:
- name: Build
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- lfs: 'true'
- - name: Set up JDK 11
- uses: actions/setup-java@v2
- with:
- java-version: '11'
- distribution: 'adopt'
- - name: Build
- run: ./gradlew clean :test-app:build
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
index c4868dfcc1..7454180f2a 100644
Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/jitpack.yml b/jitpack.yml
index da6f46e79a..9341488d21 100644
--- a/jitpack.yml
+++ b/jitpack.yml
@@ -1,5 +1,3 @@
jdk:
- openjdk11
-before_install:
- - git lfs pull
diff --git a/readium/navigator/src/main/assets/readium/fonts/OpenDyslexic-Regular.otf b/readium/navigator/src/main/assets/readium/fonts/OpenDyslexic-Regular.otf
index 1ac0d52a40..1226d2ab28 100644
Binary files a/readium/navigator/src/main/assets/readium/fonts/OpenDyslexic-Regular.otf and b/readium/navigator/src/main/assets/readium/fonts/OpenDyslexic-Regular.otf differ
diff --git a/readium/navigator/src/main/assets/readium/readium-css/fonts/AccessibleDfA.otf b/readium/navigator/src/main/assets/readium/readium-css/fonts/AccessibleDfA.otf
index 110623de9c..69c02218a5 100755
Binary files a/readium/navigator/src/main/assets/readium/readium-css/fonts/AccessibleDfA.otf and b/readium/navigator/src/main/assets/readium/readium-css/fonts/AccessibleDfA.otf differ
diff --git a/readium/navigator/src/main/assets/readium/readium-css/fonts/iAWriterDuospace-Regular.ttf b/readium/navigator/src/main/assets/readium/readium-css/fonts/iAWriterDuospace-Regular.ttf
index 17df32643b..7e75aa351c 100755
Binary files a/readium/navigator/src/main/assets/readium/readium-css/fonts/iAWriterDuospace-Regular.ttf and b/readium/navigator/src/main/assets/readium/readium-css/fonts/iAWriterDuospace-Regular.ttf differ
diff --git a/readium/navigator/src/main/res/drawable/baseline_forward_10_white_24.png b/readium/navigator/src/main/res/drawable/baseline_forward_10_white_24.png
index 2773c5fcbb..4028f34ff9 100755
Binary files a/readium/navigator/src/main/res/drawable/baseline_forward_10_white_24.png and b/readium/navigator/src/main/res/drawable/baseline_forward_10_white_24.png differ
diff --git a/readium/navigator/src/main/res/drawable/baseline_replay_10_white_24.png b/readium/navigator/src/main/res/drawable/baseline_replay_10_white_24.png
index 9bc0998df3..653f545270 100755
Binary files a/readium/navigator/src/main/res/drawable/baseline_replay_10_white_24.png and b/readium/navigator/src/main/res/drawable/baseline_replay_10_white_24.png differ
diff --git a/readium/navigator/src/main/res/drawable/ic_pause_white_24dp.png b/readium/navigator/src/main/res/drawable/ic_pause_white_24dp.png
index e5aa2807d4..660ac65858 100644
Binary files a/readium/navigator/src/main/res/drawable/ic_pause_white_24dp.png and b/readium/navigator/src/main/res/drawable/ic_pause_white_24dp.png differ
diff --git a/readium/navigator/src/main/res/drawable/ic_play_arrow_white_24dp.png b/readium/navigator/src/main/res/drawable/ic_play_arrow_white_24dp.png
index 29f61ee678..be5c062b5f 100644
Binary files a/readium/navigator/src/main/res/drawable/ic_play_arrow_white_24dp.png and b/readium/navigator/src/main/res/drawable/ic_play_arrow_white_24dp.png differ
diff --git a/readium/navigator/src/main/res/drawable/ic_skip_next_white_24dp.png b/readium/navigator/src/main/res/drawable/ic_skip_next_white_24dp.png
index 06bed4ffa2..19c4929cca 100644
Binary files a/readium/navigator/src/main/res/drawable/ic_skip_next_white_24dp.png and b/readium/navigator/src/main/res/drawable/ic_skip_next_white_24dp.png differ
diff --git a/readium/navigator/src/main/res/drawable/ic_skip_previous_white_24dp.png b/readium/navigator/src/main/res/drawable/ic_skip_previous_white_24dp.png
index db64b98b7e..f9186c0b63 100644
Binary files a/readium/navigator/src/main/res/drawable/ic_skip_previous_white_24dp.png and b/readium/navigator/src/main/res/drawable/ic_skip_previous_white_24dp.png differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/extensions/image.jpg b/readium/shared/src/test/resources/org/readium/r2/shared/extensions/image.jpg
index 9c60f0d3de..6b1de7d793 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/extensions/image.jpg and b/readium/shared/src/test/resources/org/readium/r2/shared/extensions/image.jpg differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/fetcher/epub.epub b/readium/shared/src/test/resources/org/readium/r2/shared/fetcher/epub.epub
index 83c314f46a..9f037a1b6e 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/fetcher/epub.epub and b/readium/shared/src/test/resources/org/readium/r2/shared/fetcher/epub.epub differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-lcp.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-lcp.unknown
index f202110bb8..ed74cbea44 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-lcp.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-lcp.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-package.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-package.unknown
index b833a71fba..f604719954 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-package.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/audiobook-package.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/cbz.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/cbz.unknown
index a73a264c40..a7521b27bf 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/cbz.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/cbz.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/divina-package.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/divina-package.unknown
index 27064f0b12..4cf18e0a2a 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/divina-package.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/divina-package.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/epub.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/epub.unknown
index 83c314f46a..9f037a1b6e 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/epub.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/epub.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/html-doctype-case.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/html-doctype-case.unknown
index 7cfe0b0a23..813410ee94 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/html-doctype-case.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/html-doctype-case.unknown
@@ -1,3 +1,10 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b9c5be0fbd3478b70062befb189c8283e944c1db862f9429f2dab3b038c917f0
-size 177
+
+
+
+ sample HTML document
+
+
+
+ Sample HTML document.
+
+
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/html.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/html.unknown
index 8b1be48328..e2c400b365 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/html.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/html.unknown
@@ -1,3 +1,10 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:77f575ed95fa164843dbdfffab297fff9d03245ce567ecac8f6f0f8b93dfc0c4
-size 177
+
+
+
+ sample HTML document
+
+
+
+ Sample HTML document.
+
+
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/lcpl.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/lcpl.unknown
index bdbcfd6c88..aa639edb4e 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/lcpl.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/lcpl.unknown
@@ -1,3 +1,26 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:829b01d7a92110127fd4a1240a92047b06d8ecd1405cdbdd7e4468e2bf4e7391
-size 897
+{
+ "encryption": {
+ "content_key": {
+ "algorithm": "http://www.w3.org/2001/04/xmlenc#aes256-cbc",
+ "encrypted_value": "/k8RpXqf4E2WEunCp76E8PjhS051NXwAXeTD1ioazYxCRGvHLAck/KQ3cCh5JxDmCK0nRLyAxs1X0aA3z55boQ=="
+ },
+ "profile": "http://readium.org/lcp/basic-profile",
+ "user_key": {
+ "algorithm": "http://www.w3.org/2001/04/xmlenc#sha256",
+ "key_check": "jJEjUDipHK3OjGt6kFq7dcOLZuicQFUYwQ+TYkAIWKm6Xv6kpHFhF7LOkUK/Owww",
+ "text_hint": "Enter your email address"
+ }
+ },
+ "id": "ef15e740-697f-11e3-949a-0800200c9a66",
+ "issued": "2013-11-04T01:08:15+01:00",
+ "links": [
+ {
+ "rel": "hint",
+ "href": "https://www.imaginaryebookretailer.com/lcp/hint",
+ "type": "text/html"
+ }
+ ],
+ "provider": "https://www.imaginaryebookretailer.com",
+ "updated": "2014-02-21T09:44:17+01:00",
+ "user": {"id": "d9f298a7-7f34-49e7-8aae-4378ecb1d597"}
+}
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf-index-html.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf-index-html.unknown
index 0ad1a505c7..cccddec574 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf-index-html.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf-index-html.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf.unknown
index 125bfc2dbe..e0385d003d 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/lpf.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-entry.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-entry.unknown
index e433c2d9fb..e3a78dc57f 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-entry.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-entry.unknown
@@ -1,3 +1,38 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e7301f75cde743c414c5ffd7efabc1ae513b959ef53f0e68d952a4d5bc5cf5cf
-size 5318
+
+
+Before the Devil Breaks You
+http://www.feedbooks.com/item/2300550
+urn:ISBN:9780748122479
+
+ Libba Bray
+ http://www.feedbooks.com/search?query=contributor%3A%22Libba+Bray%22
+
+2017-03-23T12:54:23Z
+2020-02-04T17:10:38Z
+en
+Atom
+2017-10-03
+The Diviners are back in this thrilling and eerie third installment by #1 New York Timesbestselling author Libba Bray.New York City.1927.Lights are bright.Jazz is king.Parties are wild.And the dead are coming...After battling a supernatural sleepi...
+560 pages
+
+
+
+
+
+
+
+ <p><b>The Diviners are back in this thrilling and eerie third installment by #1 <i>New York Times</i>bestselling author Libba Bray.</b><i>New York City.</i><i>1927.</i><i>Lights are bright.</i><i>Jazz is king.</i><i>Parties are wild.</i><i>And the dead are coming...</i><i></i>After battling a supernatural sleeping sickness that early claimed two of their own, the Diviners have had enough of lies. They're more determined than ever to uncover the mystery behind their extraordinary powers, even as they face off against an all-new terror. Out on Ward's Island, far from the city's bustle, sits a mental hospital haunted by the lost souls of people long forgotten--ghosts who have unusual and dangerous ties to the man in the stovepipe hat, also known as the King of Crows.With terrible accounts of murder and possession flooding in from all over, and New York City on the verge of panic, the Diviners must band together and brave the sinister ghosts invading the asylum, a fight that will bring them fact-to-face with the King of Crows. But as the explosive secrets of the past come to light, loyalties and friendships will be tested, love will hang in the balance, and the Diviners will question all that they've ever known. All the while, malevolent forces gather from every corner in a battle for the very soul of a nation--a fight that could claim the Diviners themselves.Heart-pounding action and terrifying moments will leave you breathless in the third book of the four-book Diviners series by #1 <i>New York Times </i>bestselling author Libba Bray.</p>
+
+
+ 3.99
+
+
+
+
+
+
+
+
+
+
+
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-feed.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-feed.unknown
index 548482f75e..3ce9cee6ce 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-feed.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/opds1-feed.unknown
@@ -1,3 +1,44 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:af486e91fcfe40000a7e92e92183868c0d5234de7cc70699a757d210aa5084e9
-size 1808
+
+
+ urn:uuid:2853dacf-ed79-42f5-8e8a-a7bb3d1ae6a2
+
+
+ OPDS Catalog Root Example
+ 2010-01-10T10:03:10Z
+
+ Spec Writer
+ http://opds-spec.org
+
+
+
+ Popular Publications
+
+ 2010-01-10T10:01:01Z
+ urn:uuid:d49e8018-a0e0-499e-9423-7c175fa0c56e
+ Popular publications from this catalog based on downloads.
+
+
+ New Publications
+
+ 2010-01-10T10:02:00Z
+ urn:uuid:d49e8018-a0e0-499e-9423-7c175fa0c56c
+ Recent publications from this catalog.
+
+
+ Unpopular Publications
+
+ 2010-01-10T10:01:00Z
+ urn:uuid:d49e8018-a0e0-499e-9423-7c175fa0c56d
+ Publications that could use some love.
+
+
\ No newline at end of file
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf-lcp.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf-lcp.unknown
index 38e4f09f6c..41e73458bc 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf-lcp.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf-lcp.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf.unknown
index 256a6025de..774c2ea70c 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/pdf.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/png.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/png.unknown
index d61ac7e3a6..461c5f80df 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/png.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/png.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/unknown.zip b/readium/shared/src/test/resources/org/readium/r2/shared/format/unknown.zip
index 265628c625..0047faeb23 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/unknown.zip and b/readium/shared/src/test/resources/org/readium/r2/shared/format/unknown.zip differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/webpub-package.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/webpub-package.unknown
index f5907ad8ec..1820d4fc2e 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/webpub-package.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/webpub-package.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/xhtml.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/xhtml.unknown
index beee54c715..294b175bc1 100644
--- a/readium/shared/src/test/resources/org/readium/r2/shared/format/xhtml.unknown
+++ b/readium/shared/src/test/resources/org/readium/r2/shared/format/xhtml.unknown
@@ -1,3 +1,15 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1148c51d27bc54f40a9b8e9ad72ef90418274b72a1b209fc43fdfd0d9965950f
-size 559
+
+
+
+
+
+ Sample XHTML Document
+
+
+
+
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/format/zab.unknown b/readium/shared/src/test/resources/org/readium/r2/shared/format/zab.unknown
index 7094bb4c4f..0b9a12f0c7 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/format/zab.unknown and b/readium/shared/src/test/resources/org/readium/r2/shared/format/zab.unknown differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/publication/services/cover.jpg b/readium/shared/src/test/resources/org/readium/r2/shared/publication/services/cover.jpg
index 9c60f0d3de..6b1de7d793 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/publication/services/cover.jpg and b/readium/shared/src/test/resources/org/readium/r2/shared/publication/services/cover.jpg differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub.epub b/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub.epub
index 83c314f46a..9f037a1b6e 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub.epub and b/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub.epub differ
diff --git a/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub/EPUB/images/cover.png b/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub/EPUB/images/cover.png
index 1042f116fd..88849397e4 100644
Binary files a/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub/EPUB/images/cover.png and b/readium/shared/src/test/resources/org/readium/r2/shared/util/archive/epub/EPUB/images/cover.png differ
diff --git a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.adb.woff b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.adb.woff
index da37c6fa43..566728a10f 100644
Binary files a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.adb.woff and b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.adb.woff differ
diff --git a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.obf.woff b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.obf.woff
index bff848e84e..07517f6a46 100644
Binary files a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.obf.woff and b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.obf.woff differ
diff --git a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.woff b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.woff
index 158d80adbc..598f03b002 100644
Binary files a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.woff and b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/epub/deobfuscation/cut-cut.woff differ
diff --git a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.cbz b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.cbz
index 530f11e944..48da598b30 100644
Binary files a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.cbz and b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.cbz differ
diff --git a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.jpg b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.jpg
index 24967ecffa..8455b3d4ad 100644
Binary files a/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.jpg and b/readium/streamer/src/test/resources/org/readium/r2/streamer/parser/image/futuristic_tales.jpg differ
diff --git a/test-app/src/main/assets/Samples/1.cbz b/test-app/src/main/assets/Samples/1.cbz
deleted file mode 100644
index a6f663752b..0000000000
--- a/test-app/src/main/assets/Samples/1.cbz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1ef2c54a5f45df24d9ba037a16823d2b5b0d967726074823572d46301f3aa90b
-size 30981367
diff --git a/test-app/src/main/assets/Samples/1.epub b/test-app/src/main/assets/Samples/1.epub
deleted file mode 100644
index 88f770c2b6..0000000000
--- a/test-app/src/main/assets/Samples/1.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6a930018ee038d4ef4259954cabe756e3fd26e4c3be3098e92b06b742d41d845
-size 735329
diff --git a/test-app/src/main/assets/Samples/2.epub b/test-app/src/main/assets/Samples/2.epub
deleted file mode 100644
index 9597b725c5..0000000000
--- a/test-app/src/main/assets/Samples/2.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:bdc2cd0cc7a01f634b4d7f33253063a6bbdadf113396c8f4b45ec758f22d15be
-size 1462834
diff --git a/test-app/src/main/assets/Samples/3.epub b/test-app/src/main/assets/Samples/3.epub
deleted file mode 100644
index 33a3db9704..0000000000
--- a/test-app/src/main/assets/Samples/3.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e328050794e47841b91d37a4bd00ff936e170411db78df8577a22fc6f9e3666c
-size 732234
diff --git a/test-app/src/main/assets/Samples/4.epub b/test-app/src/main/assets/Samples/4.epub
deleted file mode 100644
index 17bbeaa7d8..0000000000
--- a/test-app/src/main/assets/Samples/4.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:bfc2953c8e1c9234def522169afcee56aa00d426cc7d77b71d02f8e43c58044c
-size 997373
diff --git a/test-app/src/main/assets/Samples/5.epub b/test-app/src/main/assets/Samples/5.epub
deleted file mode 100644
index a11f1ad94a..0000000000
--- a/test-app/src/main/assets/Samples/5.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b53edb27eb1f79c64ee89d110bd09de7524bc924d74863fe7b8f821f54091ca4
-size 932463
diff --git a/test-app/src/main/assets/Samples/6.epub b/test-app/src/main/assets/Samples/6.epub
deleted file mode 100644
index 6e93688490..0000000000
--- a/test-app/src/main/assets/Samples/6.epub
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:acea80e1f4fe2ec1f80dd1072f4d85488bd8b19102f8d398d0ac84ddd6debafa
-size 1039881
diff --git a/test-app/src/main/assets/Samples/flatland.json b/test-app/src/main/assets/Samples/flatland.json
deleted file mode 100644
index 1f35895495..0000000000
--- a/test-app/src/main/assets/Samples/flatland.json
+++ /dev/null
@@ -1,143 +0,0 @@
-{
- "@context": "https://readium.org/webpub-manifest/context.jsonld",
- "metadata": {
- "@type": "http://schema.org/Audiobook",
- "identifier": "https://librivox.org/flatland-a-romance-of-many-dimensions-by-edwin-abbott-abbott/",
- "title": "Flatland",
- "subtitle": "A Romance of Many Dimensions",
- "author": {"name": "Edwin Abbott Abbott", "sortAs": "Abbott, Abbott Edwin"},
- "narrator": "Ruth Golding",
- "language": "en",
- "description": "Flatland: A Romance of Many Dimensions is an 1884 science fiction novella by the English schoolmaster Edwin Abbott Abbott. As a satire, Flatland offered pointed observations on the social hierarchy of Victorian culture. However, the novella's more enduring contribution is its examination of dimensions; in a foreword to one of the many publications of the novella, noted science writer Isaac Asimov described Flatland as \"The best introduction one can find into the manner of perceiving dimensions.\" As such, the novella is still popular amongst mathematics, physics and computer science students. (Summary by Wikipedia)",
- "publisher": "Librivox",
- "subject": ["General Fiction", "Satire", "Science Fiction"],
- "modified": "2016-08-11T19:32:18Z",
- "published": "2008-10-12",
- "duration": 15153,
- "abridged": false,
- "schema:license": "https://creativecommons.org/publicdomain/zero/1.0/"
- },
-
- "links": [
- {"rel": "self", "href": "https://readium.org/webpub-manifest/examples/Flatland/manifest.json", "type": "application/audiobook+json"},
- {"rel": "cover", "href": "https://www.archive.org/download/LibrivoxCdCoverArt12/Flatland_1109.jpg", "type": "image/jpeg", "height": 300, "width": 300},
- {"rel": "alternate", "href": "https://archive.org/download/flatland_rg_librivox/Flatland_64kb_librivox.m4b", "type": "audio/x-m4b", "bitrate": 64},
- {"rel": "alternate", "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_rg_librivox_64kb_mp3.zip", "type": "application/zip"},
- {"rel": "alternate", "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_rg_librivox_archive.torrent", "type": "application/x-bittorrent"}
- ],
-
- "readingOrder": [
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_1_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1371, "title": "Part 1, Sections 1 - 3"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_2_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1669, "title": "Part 1, Sections 4 - 5"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_3_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1506, "title": "Part 1, Sections 6 - 7"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_4_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1798, "title": "Part 1, Sections 8 - 10"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_5_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1225, "title": "Part 1, Sections 11 - 12"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_6_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1659, "title": "Part 2, Sections 13 - 14"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_7_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 2086, "title": "Part 2, Sections 15 - 17"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_8_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 2662, "title": "Part 2, Sections 18 - 20"},
- {"href": "http://www.archive.org/download/flatland_rg_librivox/flatland_9_abbott.mp3", "type": "audio/mpeg", "bitrate": 128, "duration": 1177, "title": "Part 2, Sections 21 - 22"}
- ],
-
- "toc": [
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_1_abbott.mp3#t=71",
- "title": "Part 1 - This World",
- "children": [
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_1_abbott.mp3#t=80",
- "title": "Section 1 - Of the Nature of Flatland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_1_abbott.mp3#t=415",
- "title": "Section 2 - Of the Climate and Houses in Flatland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_1_abbott.mp3#t=789",
- "title": "Section 3 - Concerning the Inhabitants of Flatland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_2_abbott.mp3#t=18",
- "title": "Section 4 - Concerning the Women"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_2_abbott.mp3#t=882",
- "title": "Section 5 - Of our Methods of Recognizing one another"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_3_abbott.mp3#t=17",
- "title": "Section 6 - Of Recognition by Sight"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_3_abbott.mp3#t=948",
- "title": "Section 7 - Concerning Irregular Figures"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_4_abbott.mp3#t=17",
- "title": "Section 8 - Of the Ancient Practice of Painting"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_4_abbott.mp3#t=465",
- "title": "Section 9 - Of the Universal Colour Bill"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_4_abbott.mp3#t=1124",
- "title": "Section 10 - Of the Suppression of the Chromatic Sedition"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_5_abbott.mp3#t=17",
- "title": "Section 11 - Concerning our Priests"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_5_abbott.mp3#t=452",
- "title": "Section 12 - Of the Doctrine of our Priests"
- }
- ]
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_6_abbott.mp3#t=17",
- "title": "Part 2 - Other Worlds",
- "children": [
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_6_abbott.mp3#t=25",
- "title": "Section 13 - How I had a Vision of Lineland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_6_abbott.mp3#t=802",
- "title": "Section 14 - How I vainly tried to explain the nature of Flatland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_7_abbott.mp3#t=564",
- "title": "Section 15 - Concerning a Stranger from Spaceland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_7_abbott.mp3#t=564",
- "title": "Section 16 - How the Stranger vainly endeavoured to reveal to me in words the mysteries of Spaceland"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_7_abbott.mp3#t=1728",
- "title": "Section 17 - How the Sphere, having in vain tried words, resorted to deeds"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_8_abbott.mp3#t=16",
- "title": "Section 18 - How I came to Spaceland, and what I saw there"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_8_abbott.mp3#t=981",
- "title": "Section 19 - How, though the Sphere shewed me other mysteries of Spaceland, I still desire more; and what came of it"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_8_abbott.mp3#t=2098",
- "title": "Section 20 - How the Sphere encouraged me in a Vision"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_9_abbott.mp3#t=18",
- "title": "Section 21 - How I tried to teach the Theory of Three Dimensions to my Grandson, and with what success"
- },
- {
- "href": "http://www.archive.org/download/flatland_rg_librivox/flatland_9_abbott.mp3#t=455",
- "title": "Section 22 - How I then tried to diffuse the Theory of Three Dimensions by other means, and of the result"
- }
- ]
- }
- ]
-}
diff --git a/test-app/src/main/ic_launcher-web.png b/test-app/src/main/ic_launcher-web.png
index 231eddf282..c34225da1f 100644
Binary files a/test-app/src/main/ic_launcher-web.png and b/test-app/src/main/ic_launcher-web.png differ
diff --git a/test-app/src/main/res/drawable/cnl.png b/test-app/src/main/res/drawable/cnl.png
index 03c840be70..6dfe3affed 100644
Binary files a/test-app/src/main/res/drawable/cnl.png and b/test-app/src/main/res/drawable/cnl.png differ
diff --git a/test-app/src/main/res/drawable/cover.png b/test-app/src/main/res/drawable/cover.png
index 6a15469a98..c7f6957bda 100644
Binary files a/test-app/src/main/res/drawable/cover.png and b/test-app/src/main/res/drawable/cover.png differ
diff --git a/test-app/src/main/res/drawable/icon_font_decrease.png b/test-app/src/main/res/drawable/icon_font_decrease.png
index 0680d965cf..7330622b23 100644
Binary files a/test-app/src/main/res/drawable/icon_font_decrease.png and b/test-app/src/main/res/drawable/icon_font_decrease.png differ
diff --git a/test-app/src/main/res/drawable/icon_font_increase.png b/test-app/src/main/res/drawable/icon_font_increase.png
index 6500b319de..5192b45195 100644
Binary files a/test-app/src/main/res/drawable/icon_font_increase.png and b/test-app/src/main/res/drawable/icon_font_increase.png differ
diff --git a/test-app/src/main/res/drawable/icon_overflow.png b/test-app/src/main/res/drawable/icon_overflow.png
index 3ed210fb04..9fe1da8c27 100755
Binary files a/test-app/src/main/res/drawable/icon_overflow.png and b/test-app/src/main/res/drawable/icon_overflow.png differ
diff --git a/test-app/src/main/res/drawable/repfr.png b/test-app/src/main/res/drawable/repfr.png
index 3fd92ff0bf..26fddf5fd4 100644
Binary files a/test-app/src/main/res/drawable/repfr.png and b/test-app/src/main/res/drawable/repfr.png differ
diff --git a/test-app/src/main/res/mipmap-hdpi/ic_launcher.png b/test-app/src/main/res/mipmap-hdpi/ic_launcher.png
index 5a7062541a..14bfe31ecc 100644
Binary files a/test-app/src/main/res/mipmap-hdpi/ic_launcher.png and b/test-app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/test-app/src/main/res/mipmap-hdpi/ic_launcher_background.png b/test-app/src/main/res/mipmap-hdpi/ic_launcher_background.png
index c5e595e23c..be6198d045 100644
Binary files a/test-app/src/main/res/mipmap-hdpi/ic_launcher_background.png and b/test-app/src/main/res/mipmap-hdpi/ic_launcher_background.png differ
diff --git a/test-app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/test-app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
index 53661ae101..f9eff93226 100644
Binary files a/test-app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and b/test-app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png differ
diff --git a/test-app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/test-app/src/main/res/mipmap-hdpi/ic_launcher_round.png
index 9a3df1b087..a8fa77d215 100644
Binary files a/test-app/src/main/res/mipmap-hdpi/ic_launcher_round.png and b/test-app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/test-app/src/main/res/mipmap-mdpi/ic_launcher.png b/test-app/src/main/res/mipmap-mdpi/ic_launcher.png
index 925cdaace0..c9760a62a8 100644
Binary files a/test-app/src/main/res/mipmap-mdpi/ic_launcher.png and b/test-app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/test-app/src/main/res/mipmap-mdpi/ic_launcher_background.png b/test-app/src/main/res/mipmap-mdpi/ic_launcher_background.png
index c085452414..d5afce8c9b 100644
Binary files a/test-app/src/main/res/mipmap-mdpi/ic_launcher_background.png and b/test-app/src/main/res/mipmap-mdpi/ic_launcher_background.png differ
diff --git a/test-app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/test-app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
index 9a0847a07b..1fa12fe98b 100644
Binary files a/test-app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and b/test-app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png differ
diff --git a/test-app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/test-app/src/main/res/mipmap-mdpi/ic_launcher_round.png
index 76d4df1fee..cd237502d0 100644
Binary files a/test-app/src/main/res/mipmap-mdpi/ic_launcher_round.png and b/test-app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/test-app/src/main/res/mipmap-xhdpi/ic_launcher.png b/test-app/src/main/res/mipmap-xhdpi/ic_launcher.png
index e61088ccda..2a740d3c8c 100644
Binary files a/test-app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/test-app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_background.png b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_background.png
index 5f6e01bf66..ba70604015 100644
Binary files a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_background.png and b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_background.png differ
diff --git a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
index 2c89c40917..f5b9612c11 100644
Binary files a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png differ
diff --git a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
index cf1423cb09..f6d49bbf04 100644
Binary files a/test-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and b/test-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher.png
index b1b7c3d00a..d3a296ff05 100644
Binary files a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png
index 5ffa10e0c9..29d5717ee8 100644
Binary files a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png and b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png differ
diff --git a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
index ff123cb325..1c1d8b9913 100644
Binary files a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png differ
diff --git a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
index 40a8a92377..cc955418f4 100644
Binary files a/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and b/test-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
index f6fc96060b..121be937fe 100644
Binary files a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png
index 43dc6c2e50..8b70d79773 100644
Binary files a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png and b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png differ
diff --git a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
index 2526d4295f..1d53082535 100644
Binary files a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ
diff --git a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
index 6cc9318706..ce7b6208a7 100644
Binary files a/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and b/test-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ