Update libccrtp to 2.0.7

Android app is now using the most recent verison of libccrtp

Refs #41441
diff --git a/jni/libccrtp/sources/CMakeLists.txt b/jni/libccrtp/sources/CMakeLists.txt
index 9545910..1c55da5 100644
--- a/jni/libccrtp/sources/CMakeLists.txt
+++ b/jni/libccrtp/sources/CMakeLists.txt
@@ -14,20 +14,20 @@
 cmake_minimum_required(VERSION 2.6)
 
 PROJECT(libccrtp)
+set (VERSION 2.0.7)
+set (SOVERSION ${VERSION})
+STRING(REGEX REPLACE "[.].*$" "" SOVERSION ${SOVERSION})
+set (REQUIRES 5.0.0)
+set (PACKAGE ccrtp)
 
 # for debug and trace during CMakeList development
 set(CMAKE_VERBOSE_MAKEFILE FALSE)
 
 SET(CPACK_PACKAGE_VERSION_MAJOR 2)
 SET(CPACK_PACKAGE_VERSION_MINOR 0)
-SET(CPACK_PACKAGE_VERSION_PATCH 4)
+SET(CPACK_PACKAGE_VERSION_PATCH 7)
 
 # set some global variables, in particular version variables
-set (VERSION 2.0.4)
-set (SOVERSION ${VERSION})
-STRING(REGEX REPLACE "[.].*$" "" SOVERSION ${SOVERSION})
-set (REQUIRES 5.0.0)
-set (PACKAGE ccrtp)
 
 # Set library postfix in case of 64 bit architecture
 # this caused problems in debian where it has to always be lib....