summaryrefslogtreecommitdiff
path: root/plugins/hello_world/build.gradle
blob: b948b11b63a86ad93453111dbe16dfd4c7569d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
plugins {
    id 'com.android.library'
    id 'org.jetbrains.kotlin.android'
}

android {
    compileSdk versions.compileSdk

    defaultConfig {
        minSdk versions.minSdk
        targetSdk versions.targetSdk
        versionCode 1
        versionName "1.0"
    }

    namespace = "fhuyakou.godot.plugin.android.helloworld"

    // Used to customize the name of generated AAR file.
    libraryVariants.configureEach { variant ->
        variant.outputs.configureEach { output ->
            output.outputFileName = "HelloWorld.${variant.name}.aar"
        }
    }

}

dependencies {
    // TODO: Update the godot dep when 4.2 is stable
    compileOnly "io.github.m4gr3d:godot:4.2.0.dev-SNAPSHOT"
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlinVersion"
}

tasks.register('copyDebugAARToAddons', Copy) {
    from 'build/outputs/aar'
    include 'HelloWorld.debug.aar'
    into 'src/main/assets/addons/hello_world_plugin/.bin/debug'
}

tasks.register('copyReleaseAARToAddons', Copy) {
    from 'build/outputs/aar'
    include 'HelloWorld.release.aar'
    into 'src/main/assets/addons/hello_world_plugin/.bin/release'
}

tasks.register('copyAddonsToDemo', Copy) {
    dependsOn(copyDebugAARToAddons)
    dependsOn(copyReleaseAARToAddons)

    doFirst {
        delete('demo/addons/hello_world_plugin')
    }
    from 'src/main/assets/addons/hello_world_plugin'
    into 'demo/addons/hello_world_plugin'
}

assemble.finalizedBy(copyDebugAARToAddons)
assemble.finalizedBy(copyReleaseAARToAddons)
assemble.finalizedBy(copyAddonsToDemo)