Skip to content

Commit 435a958

Browse files
committed
check
1 parent 376071b commit 435a958

3 files changed

Lines changed: 28 additions & 13 deletions

File tree

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22

3-
ext.kotlin_version = '1.1.3'
3+
ext.kotlin_version = '1.2.50'
44

55
repositories {
66
mavenCentral()
@@ -53,18 +53,18 @@ intellij {
5353
group 'com.developerphil.intellij.plugin.adbidea'
5454

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

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

6969
}
7070

gradle.properties.change_me

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Copy this file as gradle.properties
2+
# It will be used for both compiling and running the adb-idea plugin.
3+
4+
5+
# Path to a downloaded instance of Android Studio
6+
# This is used to add the android plugin dependencies to the project.
7+
# must point to the latest version of Android Studio.
8+
# You'll know it's right if you can find "$StudioCompilePath/lib/idea.jar"
9+
StudioCompilePath=/Applications/Android Studio.app/Contents
10+
11+
12+
# Determines which IDE to run when using the "./gradlew runIdea" command.
13+
# This is useful to test the plugin on older versions of Android Studio or Intellij
14+
# Default value: $StudioCompilePath
15+
#StudioRunPath=/Applications/Android Studio.app/Contents

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<id>com.developerphil.adbidea</id>
33
<name>ADB Idea</name>
44
<version>1.6.3</version>
5-
<vendor url="http://www.developerphil.com">Philippe Breault</vendor>
5+
<vendor url="https://github.com/longforus">Philippe Breault and Void Young</vendor>
66

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

3535

3636
<change-notes><![CDATA[
3737
<b>1.6.3</b>
38-
<ul>
39-
<li>BUGFIX: Show all connected devices on Android Studio 3.4+</li>
38+
<ul>
39+
<li>update to origin : BUGFIX: Show all connected devices on Android Studio 3.4+</li>
4040
</ul>
4141
<b>1.6.2</b>
4242
<ul>

0 commit comments

Comments
 (0)