File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
src/main/java/com/duy/ide/javaide Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -27,5 +27,6 @@ dependencies {
27
27
api group : ' org.gradle' , name : ' gradle-core' , version : ' 3.0'
28
28
29
29
testImplementation ' junit:junit:4.12'
30
- testImplementation ' commons-io:commons-io:2.4'
30
+ // noinspection GradleDependency
31
+ testImplementation ' commons-io:commons-io:2.3'
31
32
}
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ android {
11
11
minSdkVersion rootProject. ext. minSdkVersion
12
12
targetSdkVersion rootProject. ext. targetSdkVersion
13
13
multiDexEnabled true
14
- versionCode 43
15
- versionName " 1.4.3 "
14
+ versionCode 44
15
+ versionName " 1.4.4 "
16
16
vectorDrawables. useSupportLibrary = true
17
17
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
18
18
}
@@ -112,7 +112,8 @@ dependencies {
112
112
api ' com.makeramen:roundedimageview:2.2.1'
113
113
api ' com.yqritc:recyclerview-flexibledivider:1.2.9'
114
114
api ' com.sothree.slidinguppanel:library:3.4.0'
115
- api ' commons-io:commons-io:2.6'
115
+ // noinspection GradleDependency newer version cause crash
116
+ api ' commons-io:commons-io:2.3'
116
117
api ' com.simplecityapps:recyclerview-fastscroll:1.0.18'
117
118
api ' org.apache.commons:commons-lang3:3.7'
118
119
api ' com.google.guava:guava:25.1-android'
Original file line number Diff line number Diff line change @@ -121,9 +121,11 @@ public void onEditorViewDestroyed(@NonNull IEditorDelegate editorDelegate) {
121
121
122
122
}
123
123
124
- private void populateAutoCompleteService (SuggestionProvider provider ) {
124
+ private void populateAutoCompleteService (@ NonNull SuggestionProvider provider ) {
125
125
for (IEditorDelegate delegate : getTabManager ().getEditorPagerAdapter ().getAllEditor ()) {
126
- delegate .setSuggestionProvider (provider );
126
+ if (delegate != null ) {
127
+ delegate .setSuggestionProvider (provider );
128
+ }
127
129
}
128
130
}
129
131
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ dependencies {
52
52
api " com.android.support:support-v4:$supportLibVersion "
53
53
54
54
api ' com.google.guava:guava:25.1-android'
55
- api ' commons-io:commons-io:2.6'
55
+ // noinspection GradleDependency newer version cause crash
56
+ api ' commons-io:commons-io:2.3'
56
57
api ' commons-codec:commons-codec:1.10'
57
58
api ' org.apache.maven:maven-project:2.2.1'
58
59
api ' org.codehaus.plexus:plexus-archiver:3.6.0'
You can’t perform that action at this time.
0 commit comments