diff --git a/application/app/src/main/java/org/videolan/mobile/app/AppSetupDelegate.kt b/application/app/src/main/java/org/videolan/mobile/app/AppSetupDelegate.kt index 70c942072..3e8ccab2c 100644 --- a/application/app/src/main/java/org/videolan/mobile/app/AppSetupDelegate.kt +++ b/application/app/src/main/java/org/videolan/mobile/app/AppSetupDelegate.kt @@ -25,6 +25,8 @@ import android.content.Context import android.content.pm.PackageManager import android.os.Build import android.util.Log +import kotlinx.coroutines.DEBUG_PROPERTY_NAME +import kotlinx.coroutines.DEBUG_PROPERTY_VALUE_ON import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch import org.videolan.libvlc.Dialog @@ -69,6 +71,7 @@ class AppSetupDelegate : AppDelegate, Log.i("AppSetupDelegate", "Registering factories") FactoryManager.registerFactory(IMediaFactory.factoryId, MediaFactory()) FactoryManager.registerFactory(ILibVLCFactory.factoryId, LibVLCFactory()) + System.setProperty(DEBUG_PROPERTY_NAME, DEBUG_PROPERTY_VALUE_ON) if (BuildConfig.DEBUG) { Settings.getInstance(this) diff --git a/build.gradle b/build.gradle index 784f4e30e..e2e943558 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.android_plugin_version = '4.0.1' - ext.kotlin_version = '1.3.72' + ext.kotlin_version = '1.4.10' ext.kotlinx_version = '1.3.6' repositories { flatDir dirs: "gradle/plugins"