Skip to content

Commit

Permalink
Apply latest Flutter config for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Jun 8, 2024
1 parent b1ee067 commit 21c25c4
Showing 1 changed file with 36 additions and 38 deletions.
74 changes: 36 additions & 38 deletions flutter_ffi_plugin/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,70 +1,68 @@
// The Android Gradle Plugin builds the native code with the Android NDK.

group 'com.cunarist.rinf'
version '1.0'
group = "com.cunarist.rinf"
version = "1.0-SNAPSHOT"

buildscript {
ext.kotlin_version = "1.7.10"
repositories {
google()
mavenCentral()
}

dependencies {
// The Android Gradle Plugin knows how to build native code with the NDK.
classpath 'com.android.tools.build:gradle:7.3.0'
classpath("com.android.tools.build:gradle:7.3.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
}
}

rootProject.allprojects {
allprojects {
repositories {
google()
mavenCentral()
}
}

apply plugin: 'com.android.library'
apply plugin: "com.android.library"
apply plugin: "kotlin-android"

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.cunarist.rinf'
namespace = "com.cunarist.rinf"
}

// Bumping the plugin compileSdkVersion requires all clients of this plugin
// to bump the version in their app.
compileSdkVersion 31

// Simply use the `android.ndkVersion`
// declared in the `./android/app/build.gradle` file of the Flutter project.
ndkVersion android.ndkVersion
compileSdk = 34

// Invoke the shared CMake build with the Android Gradle Plugin.
externalNativeBuild {
cmake {
path "../src/CMakeLists.txt"
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

// The default CMake version for the Android Gradle Plugin is 3.10.2.
// https://developer.android.com/studio/projects/install-ndk#vanilla_cmake
//
// The Flutter tooling requires that developers have CMake 3.10 or later
// installed. You should not increase this version, as doing so will cause
// the plugin to fail to compile for some customers of the plugin.
// version "3.10.2"
}
kotlinOptions {
jvmTarget = "1.8"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceSets {
main.java.srcDirs += "src/main/kotlin"
test.java.srcDirs += "src/test/kotlin"
}

defaultConfig {
minSdkVersion 16
minSdk = 21
}
}

// Include Rust crates in the build process
apply from: "../cargokit/gradle/plugin.gradle"
cargokit {
manifestDir = "${rootProject.projectDir}/../native/hub"
libname = "hub"
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.mockito:mockito-core:5.0.0")
}

testOptions {
unitTests.all {
useJUnitPlatform()

testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false}
showStandardStreams = true
}
}
}
}

0 comments on commit 21c25c4

Please sign in to comment.