blob: 71da36545929fa0b8df91304355cb4472af4b088 (
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
|
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
defaultConfig {
minSdkVersion 18
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
// Used to customize the name of generated AAR file.
libraryVariants.all { variant ->
variant.outputs.all { output ->
output.outputFileName = "HelloWorld.${variant.name}.aar"
}
}
}
dependencies {
/*
Used to provide dependency on the Godot Android library. A version of that
library will be made available for each stable release of Godot.
`compileOnly` is used instead of `implementation` to ensure that the
godot library is not bundled with the generated plugin AAR file. This is
necessary since the Godot editor will also provide a version of the godot
library when building the final binary.
*/
compileOnly fileTree(dir: '../libs', include: ['godot-lib*.aar'])
}
|