summaryrefslogtreecommitdiff
path: root/platform/android/java/app/config.gradle
blob: 862a954fac12ab72f344229d69f1aabba8ae72f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ext.versions = [
        androidGradlePlugin : '3.4.2',
        compileSdk : 28,
        minSdk : 18,
        targetSdk : 28,
        buildTools : '28.0.3',

]

ext.libraries = [
        androidGradlePlugin : "com.android.tools.build:gradle:$versions.androidGradlePlugin"
]

ext.getExportPackageName = { ->
	// Retrieve the app id from the project property set by the Godot build command.
	String appId = project.hasProperty("export_package_name") ? project.property("export_package_name") : ""
	// Check if the app id is valid, otherwise use the default.
	if (appId == null || appId.isEmpty()) {
		appId = "com.godot.game"
	}
	return appId
}