File tree Expand file tree Collapse file tree 10 files changed +36
-253
lines changed
Expand file tree Collapse file tree 10 files changed +36
-253
lines changed Original file line number Diff line number Diff line change 1- # Built application files
2- * .apk
3- * .ap_
1+ .classpath
2+ .project
3+ .settings
4+ eclipsebin
45
5- # Files for the Dalvik VM
6- * .dex
6+ bin
7+ gen
8+ build
9+ out
10+ lib
711
8- # Java class files
9- * .class
12+ .idea
13+ * .iml
14+ classes
1015
11- # Generated files
12- bin /
13- gen /
16+ obj
1417
15- # Gradle files
16- .gradle /
17- build /
18+ .DS_Store
1819
19- # Local configuration file (sdk path, etc)
20+ # Gradle
21+ .gradle
22+ jniLibs
23+ build
2024local.properties
21-
22- # Proguard folder generated by Eclipse
23- proguard /
24-
25- # Log Files
26- * .log
27-
28- .idea
25+ reports
Original file line number Diff line number Diff line change 1+ Version 1.2.1 * (2015-12-10)*
2+ ----------------------------
3+
4+ Margin bug fixes.
5+
16Version 1.2.0 * (2015-10-30)*
27----------------------------
38
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ You can grab the library via Maven Central. Just add a proper dependency inside
3939
4040``` xml
4141dependencies {
42- compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.2.0 '
42+ compile 'com.bartoszlipinski:viewpropertyobjectanimator:1.2.1 '
4343}
4444```
4545
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
55 jcenter()
66 }
77 dependencies {
8- classpath ' com.android.tools.build:gradle:1.3 .0'
8+ classpath ' com.android.tools.build:gradle:1.5 .0'
99
1010 // NOTE: Do not place your application dependencies here; they belong
1111 // in the individual module build.gradle files
Original file line number Diff line number Diff line change 1- VERSION_NAME =1.2.0
2- VERSION_CODE =3
1+ VERSION_NAME =1.2.1
2+ VERSION_CODE =4
33GROUP =com.bartoszlipinski
44
55POM_DESCRIPTION =Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator
Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ apply plugin: 'com.android.library'
22
33android {
44 compileSdkVersion 23
5- buildToolsVersion " 23.0.1 "
5+ buildToolsVersion " 23.0.2 "
66
77 defaultConfig {
88 minSdkVersion 14
99 targetSdkVersion 23
10- versionCode 3
11- versionName " 1.2.0 "
10+ versionCode 4
11+ versionName " 1.2.1 "
1212 }
1313 buildTypes {
1414 release {
@@ -20,7 +20,7 @@ android {
2020
2121dependencies {
2222 compile fileTree(dir : ' libs' , include : [' *.jar' ])
23- compile ' com.android.support:support-v4:23.0 .1'
23+ compile ' com.android.support:support-v4:23.1 .1'
2424}
2525
2626apply from : ' https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
22
33android {
44 compileSdkVersion 23
5- buildToolsVersion " 23.0.1 "
5+ buildToolsVersion " 23.0.2 "
66
77 defaultConfig {
88 applicationId " com.bartoszlipinski.viewpropertyobjectanimator.sample"
99 minSdkVersion 14
1010 targetSdkVersion 23
11- versionCode 3
12- versionName " 1.2.0 "
11+ versionCode 4
12+ versionName " 1.2.1 "
1313 }
1414 buildTypes {
1515 release {
@@ -22,5 +22,5 @@ android {
2222dependencies {
2323 compile fileTree(dir : ' libs' , include : [' *.jar' ])
2424 compile project(' :library' )
25- compile ' com.android.support:appcompat-v7:23.0 .1'
25+ compile ' com.android.support:appcompat-v7:23.1 .1'
2626}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments