Browse Source

Add a flag and update kt version to get more info on the JobCancellationException crash

pipelines/135724
Nicolas Pomepuy 6 years ago
parent
commit
568788e6c8
  1. 3
      application/app/src/main/java/org/videolan/mobile/app/AppSetupDelegate.kt
  2. 2
      build.gradle

3
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)

2
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"

Loading…
Cancel
Save