Skip to content
This repository was archived by the owner on Jan 6, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
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 All @@ -16,5 +20,9 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Apr 10 15:27:10 PDT 2013
#Fri May 26 21:15:53 IST 2017
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
11 changes: 7 additions & 4 deletions rangeseekbar-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ repositories {
}

android {
compileSdkVersion 21
buildToolsVersion "20.0.0"
compileSdkVersion 26
buildToolsVersion "27.0.1"
lintOptions {
abortOnError false
}

defaultConfig {
applicationId "com.yahoo.mobile.client.android.util.rangeseekbar"
minSdkVersion 15
targetSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand All @@ -26,6 +29,6 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.0'
compile 'com.android.support:appcompat-v7:27.0.1'
compile 'com.yahoo.mobile.client.android.util.rangeseekbar:rangeseekbar-library:0.2.0-SNAPSHOT'
}
2 changes: 1 addition & 1 deletion rangeseekbar-sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher">
android:icon="@mipmap/ic_launcher">
<activity
android:name=".DemoActivity"
android:label="@string/app_name">
Expand Down
14 changes: 8 additions & 6 deletions rangeseekbar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:3.0.1'
}
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 21
buildToolsVersion "20.0.0"

compileSdkVersion 26
buildToolsVersion "27.0.1"
lintOptions {
abortOnError false
}
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -36,7 +38,7 @@ dependencies {
}

compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:appcompat-v7:27.0.1'

// Robolectric
testCompile 'org.robolectric:robolectric:3.0+'
Expand Down
2 changes: 1 addition & 1 deletion rangeseekbar/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest
package="com.yahoo.mobile.client.android.util.rangeseekbar">

</manifest>
Loading