File tree 8 files changed +10
-45
lines changed
src/main/java/com/stardust/autojs/runtime
8 files changed +10
-45
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ autoxjs 整个项目的的一些更新日志。
5
5
优化以下特性:
6
6
* 修复console 界面未创建,修改过程产生空指针问题
7
7
* 默认可以不修改console 原标题
8
+ * 关闭console的提示,修改为系统消息
8
9
9
10
10
11
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ android {
89
89
90
90
}
91
91
92
+
92
93
}
93
94
94
95
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ repositories {
36
36
flatDir {
37
37
dirs ' libs'
38
38
}
39
- google()
40
39
}
41
40
42
41
dependencies {
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ public void onExit() {
403
403
try {
404
404
405
405
events .emit ("exit" );
406
- console .log ("任务结束,3秒后该窗口关闭" );
406
+ console .log ("系统消息: 任务结束,3秒后该窗口关闭" );
407
407
uiHandler .postDelayed ( console ::hide ,4000 );
408
408
} catch (Throwable e ) {
409
409
console .error ("exception on exit: " , e );
Original file line number Diff line number Diff line change @@ -42,6 +42,6 @@ dependencies {
42
42
exclude group : ' com.android.support' , module : ' support-annotations'
43
43
})
44
44
testImplementation ' junit:junit:4.12'
45
- api ' androidx.appcompat:appcompat:1.0.2 '
45
+ api ' androidx.appcompat:appcompat:1.2.0 '
46
46
api project(path : ' :common' )
47
47
}
Original file line number Diff line number Diff line change 1
1
import groovy.json.JsonSlurper
2
-
3
2
// Top-level build file where you can add configuration options common to all sub-projects/modules.
4
-
5
-
6
3
buildscript {
7
-
8
-
9
-
10
4
ext. kotlin_version = ' 1.3.72'
11
5
repositories {
6
+ mavenLocal()
7
+ mavenCentral()
12
8
google()
13
9
jcenter()
14
10
}
15
11
dependencies {
16
12
classpath ' com.android.tools.build:gradle:4.1.0'
17
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
18
14
classpath ' com.jakewharton:butterknife-gradle-plugin:10.2.1'
15
+ classpath ' org.codehaus.groovy:groovy-json:3.0.6'
16
+
19
17
20
18
}
21
19
}
22
20
23
21
allprojects {
24
22
repositories {
23
+ mavenLocal()
25
24
jcenter()
26
25
maven {
27
26
url " https://jitpack.io"
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ dependencies {
32
32
})
33
33
testImplementation ' junit:junit:4.12'
34
34
api " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
35
- api ' androidx.annotation:annotation:1.0 .0'
35
+ api ' androidx.annotation:annotation:1.1 .0'
36
36
api ' com.github.hyb1996:settingscompat:1.1.5'
37
37
}
You can’t perform that action at this time.
0 commit comments