Log app version name and code, build type and package
This commit is contained in:
parent
46b9478bf5
commit
85e0f18616
1 changed files with 8 additions and 0 deletions
|
@ -49,6 +49,7 @@ import javax.crypto.SecretKey
|
|||
import javax.crypto.spec.GCMParameterSpec
|
||||
import kotlin.math.abs
|
||||
import kotlinx.coroutines.*
|
||||
import org.linphone.BuildConfig
|
||||
import org.linphone.LinphoneApplication.Companion.corePreferences
|
||||
import org.linphone.R
|
||||
import org.linphone.activities.call.CallActivity
|
||||
|
@ -289,6 +290,13 @@ class CoreContext(val context: Context, coreConfig: Config) {
|
|||
Log.i("[Context] Crashlytics enabled, register logging service listener")
|
||||
}
|
||||
|
||||
Log.i("=========================================")
|
||||
Log.i("==== Linphone-android information dump ====")
|
||||
Log.i("VERSION=${BuildConfig.VERSION_NAME} / ${BuildConfig.VERSION_CODE}")
|
||||
Log.i("PACKAGE=${BuildConfig.APPLICATION_ID}")
|
||||
Log.i("BUILD TYPE=${BuildConfig.BUILD_TYPE}")
|
||||
Log.i("=========================================")
|
||||
|
||||
core = Factory.instance().createCoreWithConfig(coreConfig, context)
|
||||
|
||||
stopped = false
|
||||
|
|
Loading…
Reference in a new issue