Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/sourcepoint_unified_cmp_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

Expand All @@ -21,6 +22,10 @@ rootProject.allprojects {
}

apply plugin: 'com.android.library'
// Without this the `kotlin` extension below does not exist, and the module
// only builds where the flutter tool happens to apply the kotlin plugin for
// it, which it does not do on every flutter version.
apply plugin: 'kotlin-android'

android {
compileSdk 34
Expand Down