File tree 8 files changed +243
-147
lines changed
8 files changed +243
-147
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - name : Validate gradle wrapper
12
+ uses : gradle/wrapper-validation-action@v1
13
+ - name : Set up JDK 11
14
+ uses : actions/setup-java@v1
15
+ with :
16
+ java-version : 11
17
+ - name : Build with Gradle
18
+ run : ./gradlew build test
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdkVersion 32
8
8
9
9
defaultConfig {
10
10
applicationId " com.android.example.lint_usage"
11
11
minSdkVersion 21
12
- targetSdkVersion 31
12
+ targetSdkVersion 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
- kotlinVersion = ' 1.6.10 '
3
+ kotlinVersion = ' 1.6.21 '
4
4
// Current release: Bumblebee / AGP 7.1
5
- gradlePluginVersion = ' 7.1.0 '
6
- lintVersion = ' 30.1.0 '
5
+ gradlePluginVersion = ' 7.1.3 '
6
+ lintVersion = ' 30.1.3 '
7
7
// Upcoming lint target: Chipmunk / AGP 7.2
8
- // gradlePluginVersion = '7.2.0'
9
- // lintVersion = '30.2.0'
8
+ // gradlePluginVersion = '7.2.0-rc02'
9
+ // lintVersion = '30.2.0-rc02'
10
+ // Upcoming lint target: Dolphin / AGP 7.3
11
+ // gradlePluginVersion = '7.3.0-alpha09'
12
+ // lintVersion = '30.3.0-alpha09'
13
+ // Upcoming lint target: Electric Eel / AGP 7.4
14
+ // gradlePluginVersion = '7.4.0-alpha01'
15
+ // lintVersion = '30.4.0-alpha01'
10
16
}
11
17
12
18
repositories {
Original file line number Diff line number Diff line change 1
- # Fri Sep 01 06:52:38 PDT 2017
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.2-bin.zip
You can’t perform that action at this time.
0 commit comments