Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2. upgrade version (gradle build Tools)
  • Loading branch information
lorizhixuing committed Jul 30, 2024
1 parent c8a05f6 commit f496f73
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '24.0.3'
buildToolsVersion '25.0.2'

defaultConfig {
applicationId "com.chad.baserecyclerviewadapterhelper"
minSdkVersion 14
targetSdkVersion 23
targetSdkVersion 25
versionCode 4
versionName "2.0"
}
Expand All @@ -27,9 +27,9 @@ dependencies {
compile project(path: ':library')
compile project(':material-spinner-1.0.5')
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:design:25.1.0'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:cardview-v7:25.2.0'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.kyleduo.switchbutton:library:1.4.4'
compile 'com.orhanobut:logger:1.15'

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.android.tools.build:gradle:2.3.0'
}
}

Expand Down
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 @@
#Thu Oct 20 18:08:12 CST 2016
#Wed Mar 08 09:33:00 CST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 11
Expand Down Expand Up @@ -49,5 +49,5 @@ artifacts {
dependencies {

compile fileTree(include: ['*.jar'], dir: 'libs')
provided 'com.android.support:recyclerview-v7:25.1.0'
provided 'com.android.support:recyclerview-v7:25.2.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ public boolean onSingleTapUp(MotionEvent e) {

private void resetPressedView(final View pressedView) {
if (pressedView!=null){
pressedView.postDelayed(new Runnable() {
pressedView.post(new Runnable() {
@Override
public void run() {
if (pressedView!=null){
pressedView.setPressed(false);
}

}
}, 100);
});
}

mIsPrepressed = false;
Expand Down

0 comments on commit f496f73

Please sign in to comment.