build: Upgrade underlying NFD/ndn-cxx to 0.7.1
Change-Id: I4d12cc9e30be57c9a2fd3a33732fba3f6616a24a
diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst
index 6c76122..c23a72b 100644
--- a/RELEASE_NOTES.rst
+++ b/RELEASE_NOTES.rst
@@ -1,3 +1,8 @@
+Version 0.7.1-1
+---------------
+
+NFD and ndn-cxx updated to version 0.7.1
+
Version 0.7.0-1
---------------
diff --git a/app/build.gradle b/app/build.gradle
index ed87e86..5debc31 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -9,8 +9,8 @@
applicationId "net.named_data.nfd"
minSdkVersion 23
targetSdkVersion 29
- versionCode 4018
- versionName "0.7.0-1 (NFD 0.7.0)"
+ versionCode 4019
+ versionName "0.7.1-1 (NFD 0.7.1)"
multiDexEnabled true
}
compileOptions {
@@ -148,23 +148,23 @@
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation('com.google.android.material:material:1.2.0-alpha06') {
+ implementation('com.google.android.material:material:1.4.0-alpha02') {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
- implementation('androidx.appcompat:appcompat:1.1.0') {
+ implementation('androidx.appcompat:appcompat:1.2.0') {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
- implementation 'com.android.volley:volley:1.1.1'
+ implementation 'com.android.volley:volley:1.2.0'
implementation('net.named-data.jndn-extra:jndn-management:1.3.0') {
exclude group: 'net.named-data', module: 'jndn'
}
- implementation('net.named-data:jndn-android:0.24') {
+ implementation('net.named-data:jndn-android:0.25') {
exclude group: 'org.xerial'
exclude group: 'com.google.android'
}
implementation 'net.named-data.jndn-extra:jndn-xx-util:0.0.3'
- implementation 'joda-time:joda-time:2.10.6'
+ implementation 'joda-time:joda-time:2.10.10'
}
Properties properties = new Properties()
diff --git a/app/src/main/jni/Android.mk b/app/src/main/jni/Android.mk
index c1c96d0..f54e466 100644
--- a/app/src/main/jni/Android.mk
+++ b/app/src/main/jni/Android.mk
@@ -10,8 +10,8 @@
include $(BUILD_SHARED_LIBRARY)
# Explicitly define versions of precompiled modules
-$(call import-module,../packages/nfd/0.7.0)
-$(call import-module,../packages/ndn_cxx/0.7.0)
+$(call import-module,../packages/nfd/0.7.1)
+$(call import-module,../packages/ndn_cxx/0.7.1)
$(call import-module,../packages/boost/1.73.0)
$(call import-module,../packages/sqlite/3.32.1)
$(call import-module,../packages/openssl/1.1.1g)