Skip to content

Commit

Permalink
add dependencies that may be needed
Browse files Browse the repository at this point in the history
These were not in my files and everything ran ok, but adding them in case they are actually needed
  • Loading branch information
nan-li committed May 2, 2022
1 parent 9582c16 commit 2c6b7d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
group 'com.example'
version '1.0-SNAPSHOT'

sourceCompatibility = 11

repositories {
mavenCentral()
}
Expand All @@ -14,10 +16,21 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2020.3.3'
plugins = ['android']
}

//runIde {
// ideDir = file('/Users/PERSON/Library/Android/sdk')
//}

patchPluginXml {
changeNotes = """
Add change notes here.<br>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.android</depends>

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
Expand Down

0 comments on commit 2c6b7d3

Please sign in to comment.