Using ApnUtils causes crash on newer Android versions (https://github.com/SimpleMobileTools/Simple-SMS-Messenger/pull/683#issuecomment-1637036718) This reverts this part of changes from https://github.com/SimpleMobileTools/Simple-SMS-Messenger/pull/687, since other changes have fixed the issue. This part is not as important (required to send reception ACK to MMSC, which is apparently not needed for all carriers)
11 lines
257 B
Kotlin
11 lines
257 B
Kotlin
package com.simplemobiletools.smsmessenger
|
|
|
|
import android.app.Application
|
|
import com.simplemobiletools.commons.extensions.checkUseEnglish
|
|
|
|
class App : Application() {
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
checkUseEnglish()
|
|
}
|
|
}
|