Skip to content

Commit

Permalink
Upgrade gradle to 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanth committed Aug 14, 2021
1 parent c460b24 commit 5d4d656
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
//applicationId "dev.ukanth.ufirewall.donate"
minSdkVersion 21
targetSdkVersion 30
versionCode 20210526
versionName "3.5.3"
versionCode 20210813
versionName "3.5.3-BETA"
//buildConfigField 'boolean', 'DONATE', 'true'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Created by ukanth on 21/10/17.
*/

public class RootCommand implements Cloneable, Serializable {
public class RootCommand4 implements Cloneable, Serializable {
public Callback cb = null;
public int successToast = NO_TOAST;
public int failureToast = NO_TOAST;
Expand Down Expand Up @@ -193,6 +193,6 @@ public static abstract class Callback {
/**
* Optional user-specified callback
*/
public abstract void cbFunc(RootCommand state);
public abstract void cbFunc(RootCommand4 state);
}
}
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'me.tatarka:gradle-retrolambda:3.2.0'
}
}
Expand All @@ -17,13 +17,13 @@ allprojects {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
maven { url "http://dl.bintray.com/drummer-aidan/maven" }
maven { url "http://dl.bintray.com/drummer-aidan/maven/com/afollestad" }
maven { url "https://dl.bintray.com/drummer-aidan/maven" }
maven { url "https://dl.bintray.com/drummer-aidan/maven/com/afollestad" }
maven {
url "https://maven.google.com"
}
jcenter {
url "http://jcenter.bintray.com/"
url "https://jcenter.bintray.com/"
}
google()
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
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-6.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

0 comments on commit 5d4d656

Please sign in to comment.