Compare commits

...

2 Commits

@ -1,6 +1,9 @@
# Changelog # Changelog
*NOTE:* may be removed in the future in favor of the fastlane changelog. *NOTE:* may be removed in the future in favor of the fastlane changelog.
## Version 2.4.1
* Fix sync with Tasks.org and OpenTasks - many thanks to @Sch1nken!
## Version 2.4.0 ## Version 2.4.0
* Update compile and target SDK versions * Update compile and target SDK versions

@ -19,8 +19,8 @@ android {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode 20400 versionCode 20401
versionName "2.4.0" versionName "2.4.1"
buildConfigField "boolean", "customCerts", "true" buildConfigField "boolean", "customCerts", "true"
} }
@ -117,7 +117,7 @@ android {
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
implementation "org.jetbrains.anko:anko-commons:0.10.4" implementation "org.jetbrains.anko:anko-commons:0.10.4"

@ -10,6 +10,10 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:installLocation="internalOnly"> android:installLocation="internalOnly">
<queries>
<package android:name="org.dmfs.tasks" />
<package android:name="org.tasks" />
</queries>
<!-- normal permissions --> <!-- normal permissions -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

Loading…
Cancel
Save