Skip to content

Commit

Permalink
Merge pull request Tibolte#35 from PGMacDesign/patch-1
Browse files Browse the repository at this point in the history
Added the ability to set the background color

Signed-off-by: f7d <vp7@usa.com>
  • Loading branch information
F7D committed May 1, 2018
1 parent dbf3e22 commit d542056
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.1'
classpath 'com.android.tools.build:gradle:3.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
20 changes: 13 additions & 7 deletions example/build.gradle
@@ -1,15 +1,20 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
compileSdkVersion 26
buildToolsVersion "26.0.2"

defaultConfig {
applicationId "is.arontibo.sample"
minSdkVersion 8
targetSdkVersion 22
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
}
buildTypes {
release {
Expand All @@ -20,9 +25,10 @@ android {
}

dependencies {
compile project(':elasticdownload')

// compile project(':elasticdownload')
compile 'com.github.tibolte:elasticdownload:1.0.+'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:appcompat-v7:26.+'

compile 'com.jakewharton:butterknife:6.1.0'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1 +1 @@
include ':example', ':elasticdownload'
include ':example'//, ':elasticdownload'

0 comments on commit d542056

Please sign in to comment.