Skip to content

Commit 7f1b4ba

Browse files
committed
Merge pull request #3 from tus/remove-appcombat
Remove appcompat-v7 dependency
2 parents 0622859 + 2480d12 commit 7f1b4ba

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ language: android
33
android:
44
components:
55
# SDK version
6-
- android-21
6+
- android-22
77
# Build tools version
8-
- build-tools-21.1.1
8+
- build-tools-22.0.1
99
script:
1010
- ./gradlew test
1111
deploy:

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "io.tus.android.example"
9-
minSdkVersion 15
9+
minSdkVersion 7
1010
targetSdkVersion 21
1111
versionCode 1
1212
versionName "1.0"

tus-android-client/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
22
apply plugin: 'maven'
33

44
android {
5-
compileSdkVersion 21
5+
compileSdkVersion 22
66
buildToolsVersion "21.1.2"
77

88
defaultConfig {
9-
minSdkVersion 7
10-
targetSdkVersion 21
9+
minSdkVersion 4
10+
targetSdkVersion 22
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -21,7 +21,6 @@ android {
2121

2222
dependencies {
2323
compile fileTree(dir: 'libs', include: ['*.jar'])
24-
compile 'com.android.support:appcompat-v7:21.0.3'
2524
compile 'io.tus.java.client:tus-java-client:0.1.1'
2625
testCompile 'org.robolectric:robolectric:2.4'
2726
testCompile 'junit:junit:4.12'

0 commit comments

Comments
 (0)