Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
longforus committed Apr 3, 2019
1 parent 376071b commit 435a958
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 13 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {

ext.kotlin_version = '1.1.3'
ext.kotlin_version = '1.2.50'

repositories {
mavenCentral()
Expand Down Expand Up @@ -53,18 +53,18 @@ intellij {
group 'com.developerphil.intellij.plugin.adbidea'

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
compile "org.jetbrains.kotlin:kotlin-runtime:${kotlin_version}"
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
implementation "org.jetbrains.kotlin:kotlin-runtime:${kotlin_version}"
compileOnly fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar'])
compileOnly fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar'])
compile 'com.google.dagger:dagger:2.6'
implementation 'com.google.dagger:dagger:2.6'
kapt "com.google.dagger:dagger-compiler:2.6"

testCompile 'junit:junit:4.12'
testCompile fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar'])
testCompile fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar'])
testCompile "org.mockito:mockito-core:1.+"
testCompile "com.google.truth:truth:0.30"
testImplementation 'junit:junit:4.12'
testImplementation fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar'])
testImplementation fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar'])
testImplementation "org.mockito:mockito-core:1.+"
testImplementation "com.google.truth:truth:0.30"

}

Expand Down
15 changes: 15 additions & 0 deletions gradle.properties.change_me
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copy this file as gradle.properties
# It will be used for both compiling and running the adb-idea plugin.


# Path to a downloaded instance of Android Studio
# This is used to add the android plugin dependencies to the project.
# must point to the latest version of Android Studio.
# You'll know it's right if you can find "$StudioCompilePath/lib/idea.jar"
StudioCompilePath=/Applications/Android Studio.app/Contents


# Determines which IDE to run when using the "./gradlew runIdea" command.
# This is useful to test the plugin on older versions of Android Studio or Intellij
# Default value: $StudioCompilePath
#StudioRunPath=/Applications/Android Studio.app/Contents
8 changes: 4 additions & 4 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<id>com.developerphil.adbidea</id>
<name>ADB Idea</name>
<version>1.6.3</version>
<vendor url="http://www.developerphil.com">Philippe Breault</vendor>
<vendor url="https://github.com/longforus">Philippe Breault and Void Young</vendor>

<description><![CDATA[
Adds the following ADB commands to Android Studio and Intellij:<br />
Expand All @@ -28,15 +28,15 @@
There are two basic ways to invoke a command:
<ul>
<li>Through the Tools->Android->ADB Idea menu</li>
<li>By searching for "ADB" in "Find Actions" (osx: cmd+shift+a, windows/linux: ctrl+shift+a)</li>
<li>By searching for "ADB" in "Find Actions" (osx: cmd+shift+a, windows/linux: ctrl+shift+a) </li>
</ul>
]]></description>


<change-notes><![CDATA[
<b>1.6.3</b>
<ul>
<li>BUGFIX: Show all connected devices on Android Studio 3.4+</li>
<ul>
<li>update to origin : BUGFIX: Show all connected devices on Android Studio 3.4+</li>
</ul>
<b>1.6.2</b>
<ul>
Expand Down

0 comments on commit 435a958

Please sign in to comment.