Skip to content

Commit 3250c07

Browse files
committed
chore: vscode gradle support
1 parent 9ffe62e commit 3250c07

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apply plugin: 'java'
2+
3+
// Use maven repository
4+
repositories {
5+
mavenCentral()
6+
google()
7+
}
8+
9+
apply from: 'plugin/platforms/android/include.gradle'
10+
dependencies {
11+
implementation files('/Volumes/dev/androidSDK/platforms/android-28/android.jar')
12+
}
13+
sourceSets {
14+
main {
15+
java {
16+
srcDirs = ["plugin/platforms/android/java"]
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)