mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 08:31:18 +00:00
18 lines
506 B
Kotlin
18 lines
506 B
Kotlin
import com.soywiz.korge.gradle.*
|
|
|
|
apply<KorgeGradlePlugin>()
|
|
|
|
korge {
|
|
id = "com.soywiz.sample1"
|
|
name = "Sample1"
|
|
description = "A sample using Korge and the gradle plugin"
|
|
orientation = com.soywiz.korge.gradle.Orientation.LANDSCAPE
|
|
jvmMainClassName = "Sample1Kt"
|
|
|
|
//admob("ca-app-pub-xxxxxxxx~yyyyyy")
|
|
|
|
bundle("https://github.com/korlibs/korge-bundles.git::korge-box2d::7439e5c7de7442f2cd33a1944846d44aea31af0a##9fd9d54abd8abc4736fd3439f0904141d9b6a26e9e2f1e1f8e2ed10c51f490fd")
|
|
|
|
targetDefault()
|
|
}
|