Skip to content

Commit fda5234

Browse files
committed
Updated to v0.3.3
1 parent 8d64898 commit fda5234

File tree

9 files changed

+42
-38
lines changed

9 files changed

+42
-38
lines changed

.idea/gradle.xml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 25 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.5.0'
8+
classpath 'com.android.tools.build:gradle:2.2.0'
99
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
10-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
10+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Oct 21 11:34:03 PDT 2015
1+
#Fri Oct 14 17:00:06 CST 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

library/build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

55
// This is the library version used when deploying the artifact.
6-
version = "0.3.2"
6+
version = "0.3.3"
77

88
android {
9-
compileSdkVersion 23
10-
buildToolsVersion "23.0.2"
9+
compileSdkVersion 24
10+
buildToolsVersion '24.0.0'
1111
resourcePrefix "waveloadingview"
1212
defaultConfig {
1313
minSdkVersion 14
14-
targetSdkVersion 23
15-
versionCode 3
14+
targetSdkVersion 24
15+
versionCode 4
1616
versionName "3.0"
1717
}
1818
buildTypes {
@@ -25,12 +25,14 @@ android {
2525
lintOptions {
2626
abortOnError false
2727
}
28+
productFlavors {
29+
}
2830
}
2931

3032
dependencies {
3133
compile fileTree(include: ['*.jar'], dir: 'libs')
3234
testCompile 'junit:junit:4.12'
33-
compile 'com.android.support:appcompat-v7:23.2.0'
35+
compile 'com.android.support:appcompat-v7:24.2.1'
3436
}
3537

3638
def siteUrl = 'https://github.com/tangqi92/WaveLoadingView'

sample/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.2"
4+
compileSdkVersion 24
5+
buildToolsVersion '24.0.0'
66
defaultConfig {
77
applicationId "me.itangqi.waveloadingview"
88
minSdkVersion 14
9-
targetSdkVersion 23
9+
targetSdkVersion 24
1010
versionCode 3
1111
versionName '3.0'
1212
}
@@ -23,9 +23,8 @@ android {
2323
dependencies {
2424
compile fileTree(include: ['*.jar'], dir: 'libs')
2525
testCompile 'junit:junit:4.12'
26-
compile 'com.android.support:appcompat-v7:23.2.0'
2726
compile 'com.larswerkman:lobsterpicker:1.0.0'
2827
compile 'org.adw.library:discrete-seekbar:1.0.0'
2928
compile project(path: ':library')
30-
29+
compile 'com.android.support:appcompat-v7:24.2.1'
3130
}

0 commit comments

Comments
 (0)