File tree 3 files changed +66
-2
lines changed
core/analytics/analyticsLib
3 files changed +66
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## :loudspeaker : Type of change
2
+ <!-- - Put an `x` in the boxes that apply, remove checkboxes from remaining -->
3
+
4
+ - [ ] Bugfix
5
+ - [ ] New feature
6
+ - [ ] Enhancement
7
+ - [ ] Refactoring
8
+
9
+ ## :scroll : Description
10
+ <!-- - Describe your changes in detail -->
11
+
12
+ ## :bulb : Motivation and Context
13
+ <!-- - Why is this change required? What problem does it solve? -->
14
+ <!-- - If it fixes an open issue, please link to the issue here. -->
15
+
16
+ ## :green_heart : How did you test it?
17
+ <!-- - Describe how the changes were tested -->
18
+
19
+ ## :pencil : Checklist
20
+ <!-- - Put an `x` in the boxes that apply, remove checkboxes from remaining -->
21
+
22
+ - [ ] I reviewed submitted code
23
+ - [ ] I added tests to verify changes
24
+ - [ ] All tests passing
25
+ - [ ] All linters passing
26
+ - [ ] There are no code climate issues
27
+
28
+ ## :crystal_ball : Next steps
29
+ <!-- - Describe any changes that need to be made after merging this PR -->
30
+ <!-- - Describe any changes that you would like to make after merging this PR -->
31
+
32
+ ## :camera_flash : Screenshots / GIFs
33
+ <!-- - Mandatory for UI changes -->
34
+ <!-- Uncomment the next line and replace it with links to your screenshots. -->
35
+ <!--
36
+ <img src="https://placekitten.com/260/260" width="260"> 
37
+ <img src="https://placekitten.com/300/300" width="260"> 
38
+ →
Original file line number Diff line number Diff line change
1
+ name : Android CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "multi_module" ]
6
+ pull_request :
7
+ branches : [ "multi_module" ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - name : set up JDK 17
17
+ uses : actions/setup-java@v3
18
+ with :
19
+ java-version : ' 17'
20
+ distribution : ' temurin'
21
+ cache : gradle
22
+
23
+ - name : Grant execute permission for gradlew
24
+ run : chmod +x gradlew
25
+ - name : Build with Gradle
26
+ run : ./gradlew build
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ plugins {
6
6
}
7
7
8
8
java {
9
- sourceCompatibility = JavaVersion .VERSION_11
10
- targetCompatibility = JavaVersion .VERSION_11
9
+ sourceCompatibility = JavaVersion .VERSION_17
10
+ targetCompatibility = JavaVersion .VERSION_17
11
11
}
12
12
val test by tasks.getting(Test ::class ) {
13
13
useJUnitPlatform { }
You can’t perform that action at this time.
0 commit comments