aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'sample/build.gradle')
-rw-r--r--sample/build.gradle15
1 files changed, 4 insertions, 11 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index 78c374c..6dccc7b 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -2,15 +2,12 @@ apply plugin: 'com.android.application'
allprojects {
repositories {
- maven {
- url 'https://github.com/suckgamony/RapidDecoder/raw/master/repository'
- }
+ google()
}
}
android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
+ compileSdkVersion 26
sourceSets {
main {
@@ -38,10 +35,6 @@ android {
}
dependencies {
- compile fileTree(dir: 'libs', include: '*.jar')
- compile project(':library')
- compile 'com.android.support:support-v4:25.3.1'
- compile 'rapid.decoder:library:0.3.0'
- compile 'rapid.decoder:jpeg-decoder:0.3.0'
- compile 'rapid.decoder:png-decoder:0.3.0'
+ implementation project(':library')
+ implementation 'com.android.support:support-v4:26.1.0'
}