Skip to content

Commit e41b2f3

Browse files
committed
Add AdvancedAsyncTaskCompat class
1 parent dc5fbdd commit e41b2f3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

demo/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 24
5-
buildToolsVersion "24.0.0"
5+
buildToolsVersion "24.0.1"
66

77
defaultConfig {
88
applicationId 'net.sjava.advancedasynctask.demo'
@@ -31,6 +31,6 @@ android {
3131
dependencies {
3232
compile fileTree(dir: 'libs', include: ['*.jar'])
3333
compile project(':library')
34-
compile 'com.android.support:appcompat-v7:24.0.0'
34+
compile 'com.android.support:appcompat-v7:24.2.0'
3535
//compile 'net.sjava:advancedasynctask:1.0.0'
3636
}

library/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish {
55
userOrg = 'mcsong'
66
groupId = 'net.sjava'
77
artifactId = 'advancedasynctask'
8-
publishVersion = '1.0.2'
8+
publishVersion = '1.0.3'
99
desc = 'Advanced Asynctask library for Android'
1010
website = 'https://github.com/mcsong/AdvancedAsyncTask'
1111
issueTracker = "${website}/issues"
@@ -31,10 +31,10 @@ android {
3131
}
3232

3333
defaultConfig {
34-
minSdkVersion 8
34+
minSdkVersion 9
3535
targetSdkVersion 24
3636
versionCode 2
37-
versionName "1.0.1"
37+
versionName "1.0.3"
3838
}
3939

4040
buildTypes {
@@ -51,10 +51,11 @@ android {
5151
}
5252
}
5353

54+
/*
5455
compileOptions {
5556
sourceCompatibility JavaVersion.VERSION_1_7
5657
targetCompatibility JavaVersion.VERSION_1_7
57-
}
58+
} */
5859
}
5960

6061
dependencies {

0 commit comments

Comments
 (0)