mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-17 04:10:45 +01:00
updating commons and kotlin
This commit is contained in:
parent
127c62a9c9
commit
757718ca2f
@ -50,7 +50,7 @@ android {
|
||||
|
||||
flavorDimensions "variants"
|
||||
productFlavors {
|
||||
basic {}
|
||||
core {}
|
||||
fdroid {}
|
||||
}
|
||||
|
||||
@ -69,9 +69,9 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:14033f9b50'
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:fb636d1297'
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||
implementation "androidx.print:print:1.0.0"
|
||||
|
||||
|
4
app/src/fdroid/res/values/bools.xml
Normal file
4
app/src/fdroid/res/values/bools.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<bool name="show_donate_in_about">true</bool>
|
||||
</resources>
|
@ -540,7 +540,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
||||
if (it) {
|
||||
SetRemindersDialog(this, BIRTHDAY_EVENT) {
|
||||
val reminders = it
|
||||
val privateCursor = getMyContactsCursor(false, false)?.loadInBackground()
|
||||
val privateCursor = getMyContactsCursor(false, false)
|
||||
|
||||
ensureBackgroundThread {
|
||||
val privateContacts = MyContactsContentProvider.getSimpleContacts(this, privateCursor)
|
||||
@ -570,7 +570,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
||||
if (it) {
|
||||
SetRemindersDialog(this, ANNIVERSARY_EVENT) {
|
||||
val reminders = it
|
||||
val privateCursor = getMyContactsCursor(false, false)?.loadInBackground()
|
||||
val privateCursor = getMyContactsCursor(false, false)
|
||||
|
||||
ensureBackgroundThread {
|
||||
val privateContacts = MyContactsContentProvider.getSimpleContacts(this, privateCursor)
|
||||
@ -600,7 +600,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
||||
return
|
||||
}
|
||||
|
||||
val privateCursor = getMyContactsCursor(false, false)?.loadInBackground()
|
||||
val privateCursor = getMyContactsCursor(false, false)
|
||||
|
||||
ensureBackgroundThread {
|
||||
val privateContacts = MyContactsContentProvider.getSimpleContacts(this, privateCursor)
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.5.31'
|
||||
ext.kotlin_version = '1.6.10'
|
||||
|
||||
repositories {
|
||||
google()
|
||||
|
Loading…
x
Reference in New Issue
Block a user