This repository was archived by the owner on Oct 3, 2024. It is now read-only.
File tree 5 files changed +24
-43
lines changed
5 files changed +24
-43
lines changed Original file line number Diff line number Diff line change
1
+ name : test
2
+
3
+ on :
4
+ - pull_request
5
+ - push
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : set up JDK 1.8
13
+ uses : actions/setup-java@v1
14
+ with :
15
+ java-version : 1.8
16
+ - name : Build with Gradle
17
+ run : |
18
+ ./gradlew build :easypermissions:test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # EasyPermissions [ ![ Build Status] [ 1 ]] [ 2 ] [ ![ Code Coverage ] [ 3 ]] [ 4 ] [ ![ Android Weekly] [ 5 ]] [ 6 ]
1
+ # EasyPermissions [ ![ Build Status] [ 1 ]] [ 2 ] [ ![ Android Weekly] [ 3 ]] [ 4 ]
2
2
3
3
EasyPermissions is a wrapper library to simplify basic system permissions logic when targeting
4
4
Android M or higher.
@@ -200,9 +200,7 @@ Rationale callbacks don't necessarily imply permission changes. To check for tho
200
200
201
201
```
202
202
203
- [ 1 ] : https://travis-ci.org/googlesamples/easypermissions.svg?branch=master
204
- [ 2 ] : https://travis-ci.org/googlesamples/easypermissions
205
- [ 3 ] : https://codecov.io/gh/googlesamples/easypermissions/branch/master/graph/badge.svg
206
- [ 4 ] : https://codecov.io/gh/googlesamples/easypermissions
207
- [ 5 ] : https://img.shields.io/badge/Android%20Weekly-%23185-2CB3E5.svg?style=flat
208
- [ 6 ] : http://androidweekly.net/issues/issue-185
203
+ [ 1 ] : https://github.com/googlesamples/easypermissions/workflows/test/badge.svg
204
+ [ 2 ] : https://github.com/googlesamples/easypermissions/actions
205
+ [ 3 ] : https://img.shields.io/badge/Android%20Weekly-%23185-2CB3E5.svg?style=flat
206
+ [ 4 ] : http://androidweekly.net/issues/issue-185
Original file line number Diff line number Diff line change @@ -6,9 +6,8 @@ buildscript {
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:4.0.0 '
9
+ classpath ' com.android.tools.build:gradle:4.1.3 '
10
10
classpath ' com.vanniktech:gradle-maven-publish-plugin:0.14.2'
11
- classpath ' com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0'
12
11
}
13
12
}
14
13
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
- apply plugin : " com.vanniktech.android.junit.jacoco"
3
2
4
3
// See: https://github.com/vanniktech/gradle-maven-publish-plugin/issues/206
5
4
ext {
@@ -38,10 +37,6 @@ android {
38
37
39
38
}
40
39
41
- junitJacoco {
42
- includeNoLocationClasses = true
43
- }
44
-
45
40
dependencies {
46
41
api " androidx.appcompat:appcompat:1.1.0"
47
42
api " androidx.annotation:annotation:1.1.0"
You can’t perform that action at this time.
0 commit comments