Skip to content

Commit 9c5978f

Browse files
committed
rely on ContactsHelper from Simple Commons
1 parent c94caef commit 9c5978f

File tree

3 files changed

+1
-454
lines changed

3 files changed

+1
-454
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ android {
6363
}
6464

6565
dependencies {
66-
implementation 'com.github.SimpleMobileTools:Simple-Commons:52fd420d35'
66+
implementation 'com.github.SimpleMobileTools:Simple-Commons:fc000291b0'
6767
implementation 'org.greenrobot:eventbus:3.3.1'
6868
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
6969
implementation 'com.github.tibbi:android-smsmms:33fcaf94d9'

app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Config.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ class Config(context: Context) : BaseConfig(context) {
6868
pinnedConversations = pinnedConversations.minus(conversations.map { it.threadId.toString() })
6969
}
7070

71-
var lastExportPath: String
72-
get() = prefs.getString(LAST_EXPORT_PATH, "")!!
73-
set(lastExportPath) = prefs.edit().putString(LAST_EXPORT_PATH, lastExportPath).apply()
74-
7571
var exportSms: Boolean
7672
get() = prefs.getBoolean(EXPORT_SMS, true)
7773
set(exportSms) = prefs.edit().putBoolean(EXPORT_SMS, exportSms).apply()

0 commit comments

Comments
 (0)