Update copyright notices

This commit is contained in:
jannis 2019-12-08 12:43:46 +01:00
parent d35c8a7428
commit a186308ba8
2 changed files with 24 additions and 1 deletions

View File

@ -24,6 +24,7 @@
Current owners and lead developers are: Ludwig Brinckmann, devemux86 Current owners and lead developers are: Ludwig Brinckmann, devemux86
<https://github.com/PhilJay/MPAndroidChart> <https://github.com/PhilJay/MPAndroidChart>
Copyright 2019 Philipp Jahoda Copyright 2019 Philipp Jahoda
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
@ -33,6 +34,7 @@
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
<https://github.com/Clans/FloatingActionButton> <https://github.com/Clans/FloatingActionButton>
Copyright 2015 Dmytro Tarianyk Copyright 2015 Dmytro Tarianyk
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
@ -47,6 +49,24 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
<https://github.com/westnordost/osmapi>
© 2016-2019 Tobias Zwick. This library is released under the terms of the GNU Lesser General Public License (LGPL).
<https://github.com/mttkay/signpost>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
<https://github.com/FasterXML/jackson-core> <https://github.com/FasterXML/jackson-core>
This copy of Jackson JSON processor streaming parser/generator is licensed under the This copy of Jackson JSON processor streaming parser/generator is licensed under the

View File

@ -67,20 +67,23 @@ dependencies {
implementation 'org.mapsforge:mapsforge-map-android:0.11.0' implementation 'org.mapsforge:mapsforge-map-android:0.11.0'
implementation 'com.caverock:androidsvg:1.3' implementation 'com.caverock:androidsvg:1.3'
// Charts
implementation 'net.sf.kxml:kxml2:2.3.0' implementation 'net.sf.kxml:kxml2:2.3.0'
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
implementation 'com.github.clans:fab:1.6.4' implementation 'com.github.clans:fab:1.6.4'
// XML
implementation 'stax:stax-api:1.0.1' implementation 'stax:stax-api:1.0.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.8' implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.8'
// Upload to OSM
implementation ('de.westnordost:osmapi-traces:1.0') implementation ('de.westnordost:osmapi-traces:1.0')
configurations { configurations {
compile.exclude group: 'net.sf.kxml', module: 'kxml2' // already included in Android compile.exclude group: 'net.sf.kxml', module: 'kxml2' // already included in Android
} }
implementation 'oauth.signpost:signpost-commonshttp4:1.2.1.2' implementation 'oauth.signpost:signpost-commonshttp4:1.2.1.2'
// Android Room // Android Room Database
def room_version = "2.2.0" def room_version = "2.2.0"
annotationProcessor "androidx.room:room-compiler:$room_version" annotationProcessor "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-runtime:$room_version"