forked from googlesamples/easypermissions
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Put in defense for issue 278 (googlesamples#290) * Updating project to support Android Studio 4.0 (googlesamples#307) * Updating module 'app' to Java 8 syntax (googlesamples#308) * Changed getContext() to requireContext(), to ensure it is not null. (googlesamples#309) * Add link to easypermissions-ktx * Move from JCenter to Maven Central (googlesamples#323) * Add the @IntRange annotation to requestCode to prevent invalid input (googlesamples#325) Co-authored-by: gaopengfei <[email protected]> * Move to GitHub Actions (googlesamples#326) * Start migrating project to maven central * Fix build * Update with correct maven central links Co-authored-by: Sam Stern <[email protected]> Co-authored-by: Fung <[email protected]> Co-authored-by: Fung <[email protected]> Co-authored-by: coder1024 <[email protected]> Co-authored-by: gaopengfei <[email protected]>
- Loading branch information
1 parent
2237948
commit bf97578
Showing
13 changed files
with
133 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: build | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Build with Gradle | ||
run: | | ||
./gradlew build spotlessCheck :easypermissions:spotlessCheck :easypermissions:ktlintCheck :easypermissions:detekt :easypermissions:test jacocoTestReportRelease |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
GROUP=com.vmadalin | ||
POM_ARTIFACT_ID=easypermissions-ktx | ||
VERSION_NAME=1.0.0 | ||
|
||
POM_NAME=EasyPermissions-ktx | ||
POM_PACKAGING=aar | ||
|
||
POM_DESCRIPTION=A Kotlin wrapper library for basic Android M system permissions logic | ||
|
||
POM_URL=https://github.com/VMadalin/easypermissions-ktx | ||
POM_SCM_URL=https://github.com/VMadalin/easypermissions-ktx | ||
POM_SCM_CONNECTION=https://github.com/VMadalin/easypermissions-ktx.git | ||
|
||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
|
||
POM_DEVELOPER_NAME=VMadalin |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Sun Sep 01 17:03:01 CEST 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.