This repository was archived by the owner on Mar 11, 2022. It is now read-only.
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ buildscript {
3
3
mavenCentral()
4
4
}
5
5
dependencies {
6
- classpath ' com.android.tools.build:gradle:2.1 .0'
6
+ classpath ' com.android.tools.build:gradle:2.2 .0'
7
7
}
8
8
}
9
9
apply plugin : ' com.android.application'
@@ -24,11 +24,11 @@ dependencies {
24
24
}
25
25
26
26
android {
27
- compileSdkVersion 19
27
+ compileSdkVersion 21
28
28
defaultConfig {
29
29
minSdkVersion 14
30
30
}
31
- buildToolsVersion " 19.1 "
31
+ buildToolsVersion " 21.0 "
32
32
33
33
packagingOptions {
34
34
exclude ' META-INF/LICENSE.txt'
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ public class TaskAdapter extends BaseAdapter implements ListAdapter {
34
34
35
35
public TaskAdapter (Context context , List <Task > tasks ) {
36
36
if (context == null ) {
37
- throw new IllegalArgumentException ("Context must not be null." )
37
+ throw new IllegalArgumentException ("Context must not be null." );
38
38
}
39
39
if (tasks == null ) {
40
- throw new IllegalArgumentException ("List of tasks must not be null." )
40
+ throw new IllegalArgumentException ("List of tasks must not be null." );
41
41
}
42
42
this .context = context ;
43
43
this .tasks = tasks ;
You can’t perform that action at this time.
0 commit comments