diff --git a/build.gradle b/build.gradle index 342e05a..ed14973 100644 --- a/build.gradle +++ b/build.gradle @@ -18,17 +18,13 @@ buildscript { exoPlayerVersion = '1.1.1' analyticsVersion = '2.0.2' } - - dependencies { - classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion" - } } plugins { - id 'com.android.application' version '7.4.2' apply false - id 'com.android.library' version '7.4.2' apply false + id 'com.android.application' version '8.1.2' apply false + id 'com.android.library' version '8.1.2' apply false id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false + id 'org.jetbrains.dokka' version "$dokkaVersion" } -apply plugin: 'org.jetbrains.dokka' tasks.register('clean', Delete) { delete rootProject.buildDir diff --git a/common_library.gradle b/common_library.gradle index 5381a78..5dc3cd8 100644 --- a/common_library.gradle +++ b/common_library.gradle @@ -17,6 +17,10 @@ android { viewBinding true } + kotlinOptions { + jvmTarget = '1.8' + } + testOptions { unitTests.returnDefaultValues = true } diff --git a/examples/view/build.gradle b/examples/view/build.gradle index ec6645e..a01e364 100644 --- a/examples/view/build.gradle +++ b/examples/view/build.gradle @@ -33,6 +33,7 @@ android { buildFeatures { viewBinding true } + namespace 'video.api.player.example' } dependencies { diff --git a/examples/view/src/main/AndroidManifest.xml b/examples/view/src/main/AndroidManifest.xml index 6a0657e..c23e42e 100644 --- a/examples/view/src/main/AndroidManifest.xml +++ b/examples/view/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ - + - +