Update to 1.17.0.
diff --git a/Makefile b/Makefile
index 8b24448..5d67c05 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
archive: generate
./gradlew --warning-mode=all uploadArchives
sync: archive
- rsync -av MAVEN/com/ ghostscript.com:/var/www/maven.ghostscript.com/com/
+ rsync -av $(HOME)/MAVEN/com/ ghostscript.com:/var/www/maven.ghostscript.com/com/
run: install
adb shell am start -n com.artifex.mupdf.viewer.app/.LibraryActivity
diff --git a/app/build.gradle b/app/build.gradle
index 9d282be..2fa8201 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'
group = 'com.artifex.mupdf'
-version = '1.16.1'
+version = '1.17.0'
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.+'
if (file('../lib/build.gradle').isFile())
api project(':lib')
else
- api 'com.artifex.mupdf:viewer:1.16.1'
+ api 'com.artifex.mupdf:viewer:1.17.0'
}
android {
@@ -16,8 +16,8 @@
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
- versionName '1.16.1'
- versionCode 70
+ versionName '1.17.0'
+ versionCode 80
}
splits {
diff --git a/jni b/jni
index 38ec1f9..88714df 160000
--- a/jni
+++ b/jni
@@ -1 +1 @@
-Subproject commit 38ec1f9ff4610de5f66d6d98a5e8b7d8f9f286f8
+Subproject commit 88714df8c7e0ae4b7d009fc7ce6e10885d31aaf6
diff --git a/lib/build.gradle b/lib/build.gradle
index 1dba8f2..167810d 100644
--- a/lib/build.gradle
+++ b/lib/build.gradle
@@ -2,14 +2,14 @@
apply plugin: 'maven'
group = 'com.artifex.mupdf'
-version = '1.16.1'
+version = '1.17.0'
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.+'
if (file('../jni/build.gradle').isFile())
api project(':jni')
else
- api 'com.artifex.mupdf:fitz:1.16.1'
+ api 'com.artifex.mupdf:fitz:1.17.0'
}
android {
@@ -26,7 +26,7 @@
if (project.hasProperty('MAVEN_REPO')) {
repository(url: MAVEN_REPO)
} else {
- repository(url: 'file://MAVEN')
+ repository(url: "file://${System.properties['user.home']}/MAVEN")
}
pom {
artifactId = 'viewer'