Repository: googlesamples/easypermissions Branch: master Commit: 2b2b5c40d11c Files: 60 Total size: 163.6 KB Directory structure: gitextract_zbuou_b2/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PUBLISHING.md ├── README.md ├── app/ │ ├── build.gradle │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ └── pub/ │ │ └── devrel/ │ │ └── easypermissions/ │ │ └── sample/ │ │ ├── MainActivity.java │ │ └── MainFragment.java │ └── res/ │ ├── layout/ │ │ ├── activity_basic.xml │ │ ├── activity_main.xml │ │ └── fragment_main.xml │ ├── values/ │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── values-w820dp/ │ └── dimens.xml ├── build.gradle ├── easypermissions/ │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.pro │ └── src/ │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── pub/ │ │ │ └── devrel/ │ │ │ └── easypermissions/ │ │ │ ├── AfterPermissionGranted.java │ │ │ ├── AppSettingsDialog.java │ │ │ ├── AppSettingsDialogHolderActivity.java │ │ │ ├── EasyPermissions.java │ │ │ ├── PermissionRequest.java │ │ │ ├── RationaleDialogClickListener.java │ │ │ ├── RationaleDialogConfig.java │ │ │ ├── RationaleDialogFragment.java │ │ │ ├── RationaleDialogFragmentCompat.java │ │ │ └── helper/ │ │ │ ├── ActivityPermissionHelper.java │ │ │ ├── AppCompatActivityPermissionsHelper.java │ │ │ ├── BaseSupportPermissionsHelper.java │ │ │ ├── LowApiPermissionsHelper.java │ │ │ ├── PermissionHelper.java │ │ │ ├── SupportFragmentPermissionHelper.java │ │ │ └── package-info.java │ │ └── res/ │ │ └── values/ │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test/ │ └── java/ │ └── pub/ │ └── devrel/ │ └── easypermissions/ │ ├── AppSettingsDialogTest.java │ ├── EasyPermissionsLowApiTest.java │ ├── EasyPermissionsTest.java │ ├── RationaleDialogClickListenerTest.java │ └── testhelper/ │ ├── ActivityController.java │ ├── FragmentController.java │ ├── TestActivity.java │ ├── TestAppCompatActivity.java │ ├── TestFragment.java │ └── TestSupportFragmentActivity.java ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE.md ================================================ ## Basic Information Device type: ________ OS version: ________ EasyPermissions version: ________ ## Describe the problem What happened? What did you expect to happen? ## Code and logs ``` // TODO(you): show the code that produces the problem, // and any relevant logs. ``` ================================================ FILE: .github/workflows/test.yml ================================================ name: test 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 :easypermissions:test ================================================ FILE: .gitignore ================================================ # Gradle files .gradle build # Local configuration file (sdk path, etc) local.properties # IntelliJ project files **.iml .idea # Android Studio captures folder captures/ # Misc .DS_Store .classpath .project .settings .vscode ================================================ FILE: CONTRIBUTING.md ================================================ Not Found ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2017 Google Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: PUBLISHING.md ================================================ ## Publishing ### Credentials The library is published to Maven Central by the firebase-sonatype account, Googlers can find the password for this account in [Valentine](http://valentine/) ### GPG Key You will need to create a private GPG keyring on your machine, if you don't have one do the following steps: 1. Run `gpg --full-generate-key` 1. Choose `RSA and RSA` for the key type 1. Use `4096` for the key size 1. Use `0` for the expiration (never) 1. Use any name, email address, and password This creates your key in `~/.gnupg/openpgp-revocs.d/` with `.rev` format. The last 8 characters before the `.rev` extension are your **Key ID**. To export the key, run: ``` gpg --export-secret-keys -o $HOME/sonatype.gpg ``` Finally upload your key to the keyserver: ``` gpg --keyserver hkp://keys.openpgp.org --send-keys ``` ### Local Properties Open your `$HOME/.gradle/gradle.properties` file at and fill in the values: ``` signing.keyId= signing.password= signing.secretKeyRingFile= mavenCentralRepositoryUsername=firebase-sonatype mavenCentralRepositoryUsername= ``` ### Publish To publish, run: ``` ./gradlew publish ``` ### Release Follow [the instructions here](https://central.sonatype.org/pages/releasing-the-deployment.html): 1. Navigate to https://s01.oss.sonatype.org/ and **Log In** 1. On the left side click **Build Promotion** and look for the `com.firebase` repo 1. Click **Close** ... wait a few minutes (you can check status with **Refresh**) 1. Click **Release** ================================================ FILE: README.md ================================================ # EasyPermissions [![Build Status][1]][2] [![Android Weekly][3]][4] EasyPermissions is a wrapper library to simplify basic system permissions logic when targeting Android M or higher. **Note:** If your app is written in Kotlin consider the [easypermissions-ktx](https://github.com/VMadalin/easypermissions-ktx) library which adds Kotlin extensions to the core EasyPermissions library. ## Installation EasyPermissions is installed by adding the following dependency to your `build.gradle` file: ```groovy dependencies { // For developers using AndroidX in their applications    implementation 'pub.devrel:easypermissions:3.0.0' // For developers using the Android Support Library implementation 'pub.devrel:easypermissions:2.0.1' } ``` ## Usage ### Basic To begin using EasyPermissions, have your `Activity` (or `Fragment`) override the `onRequestPermissionsResult` method: ```java public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } @Override public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); // Forward results to EasyPermissions EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this); } } ``` ### Request Permissions The example below shows how to request permissions for a method that requires both `CAMERA` and `ACCESS_FINE_LOCATION` permissions. There are a few things to note: * Using `EasyPermissions#hasPermissions(...)` to check if the app already has the required permissions. This method can take any number of permissions as its final argument. * Requesting permissions with `EasyPermissions#requestPermissions`. This method will request the system permissions and show the rationale string provided if necessary. The request code provided should be unique to this request, and the method can take any number of permissions as its final argument. * Use of the `AfterPermissionGranted` annotation. This is optional, but provided for convenience. If all of the permissions in a given request are granted, *all* methods annotated with the proper request code will be executed(be sure to have an unique request code). The annotated method needs to be *void* and *without input parameters* (instead, you can use *onSaveInstanceState* in order to keep the state of your suppressed parameters). This is to simplify the common flow of needing to run the requesting method after all of its permissions have been granted. This can also be achieved by adding logic on the `onPermissionsGranted` callback. ```java @AfterPermissionGranted(RC_CAMERA_AND_LOCATION) private void methodRequiresTwoPermission() { String[] perms = {Manifest.permission.CAMERA, Manifest.permission.ACCESS_FINE_LOCATION}; if (EasyPermissions.hasPermissions(this, perms)) { // Already have permission, do the thing // ... } else { // Do not have permissions, request them now EasyPermissions.requestPermissions(this, getString(R.string.camera_and_location_rationale), RC_CAMERA_AND_LOCATION, perms); } } ``` Or for finer control over the rationale dialog, use a `PermissionRequest`: ```java EasyPermissions.requestPermissions( new PermissionRequest.Builder(this, RC_CAMERA_AND_LOCATION, perms) .setRationale(R.string.camera_and_location_rationale) .setPositiveButtonText(R.string.rationale_ask_ok) .setNegativeButtonText(R.string.rationale_ask_cancel) .setTheme(R.style.my_fancy_style) .build()); ``` Optionally, for a finer control, you can have your `Activity` / `Fragment` implement the `PermissionCallbacks` interface. ```java public class MainActivity extends AppCompatActivity implements EasyPermissions.PermissionCallbacks { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } @Override public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); // Forward results to EasyPermissions EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this); } @Override public void onPermissionsGranted(int requestCode, List list) { // Some permissions have been granted // ... } @Override public void onPermissionsDenied(int requestCode, List list) { // Some permissions have been denied // ... } } ``` ### Required Permissions In some cases your app will not function properly without certain permissions. If the user denies these permissions with the "Never Ask Again" option, you will be unable to request these permissions from the user and they must be changed in app settings. You can use the method `EasyPermissions.somePermissionPermanentlyDenied(...)` to display a dialog to the user in this situation and direct them to the system setting screen for your app: **Note**: Due to a limitation in the information provided by the Android framework permissions API, the `somePermissionPermanentlyDenied` method only works after the permission has been denied and your app has received the `onPermissionsDenied` callback. Otherwise the library cannot distinguish permanent denial from the "not yet denied" case. ```java @Override public void onPermissionsDenied(int requestCode, List perms) { Log.d(TAG, "onPermissionsDenied:" + requestCode + ":" + perms.size()); // (Optional) Check whether the user denied any permissions and checked "NEVER ASK AGAIN." // This will display a dialog directing them to enable the permission in app settings. if (EasyPermissions.somePermissionPermanentlyDenied(this, perms)) { new AppSettingsDialog.Builder(this).build().show(); } } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == AppSettingsDialog.DEFAULT_SETTINGS_REQ_CODE) { // Do something after user returned from app settings screen, like showing a Toast. Toast.makeText(this, R.string.returned_from_app_settings_to_activity, Toast.LENGTH_SHORT) .show(); } } ``` ### Interacting with the rationale dialog Implement the `EasyPermissions.RationaleCallbacks` if you want to interact with the rationale dialog. ```java @Override public void onRationaleAccepted(int requestCode) { // Rationale accepted to request some permissions // ... } @Override public void onRationaleDenied(int requestCode) { // Rationale denied to request some permissions // ... } ``` Rationale callbacks don't necessarily imply permission changes. To check for those, see the `EasyPermissions.PermissionCallbacks`. ## LICENSE ``` Copyright 2017 Google Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ``` [1]: https://github.com/googlesamples/easypermissions/workflows/test/badge.svg [2]: https://github.com/googlesamples/easypermissions/actions [3]: https://img.shields.io/badge/Android%20Weekly-%23185-2CB3E5.svg?style=flat [4]: http://androidweekly.net/issues/issue-185 ================================================ FILE: app/build.gradle ================================================ apply plugin: 'com.android.application' android { compileSdkVersion 30 testOptions.unitTests.includeAndroidResources = true defaultConfig { applicationId "pub.devrel.easypermissions.sample" minSdkVersion 14 targetSdkVersion 30 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { // Flag to enable support for the new language APIs coreLibraryDesugaringEnabled false // Sets Java compatibility to Java 8 sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:1.1.0' implementation "androidx.annotation:annotation:1.1.0" implementation project(':easypermissions') } ================================================ FILE: app/proguard-rules.pro ================================================ # Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} ================================================ FILE: app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: app/src/main/java/pub/devrel/easypermissions/sample/MainActivity.java ================================================ /* * Copyright Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package pub.devrel.easypermissions.sample; import android.Manifest; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import java.util.List; import pub.devrel.easypermissions.AfterPermissionGranted; import pub.devrel.easypermissions.AppSettingsDialog; import pub.devrel.easypermissions.EasyPermissions; public class MainActivity extends AppCompatActivity implements EasyPermissions.PermissionCallbacks, EasyPermissions.RationaleCallbacks{ private static final String TAG = "MainActivity"; private static final String[] LOCATION_AND_CONTACTS = {Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.READ_CONTACTS}; private static final int RC_CAMERA_PERM = 123; private static final int RC_LOCATION_CONTACTS_PERM = 124; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Button click listener that will request one permission. findViewById(R.id.button_camera).setOnClickListener(v -> cameraTask()); // Button click listener that will request two permissions. findViewById(R.id.button_location_and_contacts).setOnClickListener(v -> locationAndContactsTask()); } private boolean hasCameraPermission() { return EasyPermissions.hasPermissions(this, Manifest.permission.CAMERA); } private boolean hasLocationAndContactsPermissions() { return EasyPermissions.hasPermissions(this, LOCATION_AND_CONTACTS); } private boolean hasSmsPermission() { return EasyPermissions.hasPermissions(this, Manifest.permission.READ_SMS); } private boolean hasStoragePermission() { return EasyPermissions.hasPermissions(this, Manifest.permission.WRITE_EXTERNAL_STORAGE); } @AfterPermissionGranted(RC_CAMERA_PERM) public void cameraTask() { if (hasCameraPermission()) { // Have permission, do the thing! Toast.makeText(this, "TODO: Camera things", Toast.LENGTH_LONG).show(); } else { // Ask for one permission EasyPermissions.requestPermissions( this, getString(R.string.rationale_camera), RC_CAMERA_PERM, Manifest.permission.CAMERA); } } @AfterPermissionGranted(RC_LOCATION_CONTACTS_PERM) public void locationAndContactsTask() { if (hasLocationAndContactsPermissions()) { // Have permissions, do the thing! Toast.makeText(this, "TODO: Location and Contacts things", Toast.LENGTH_LONG).show(); } else { // Ask for both permissions EasyPermissions.requestPermissions( this, getString(R.string.rationale_location_contacts), RC_LOCATION_CONTACTS_PERM, LOCATION_AND_CONTACTS); } } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); // EasyPermissions handles the request result. EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this); } @Override public void onPermissionsGranted(int requestCode, @NonNull List perms) { Log.d(TAG, "onPermissionsGranted:" + requestCode + ":" + perms.size()); } @Override public void onPermissionsDenied(int requestCode, @NonNull List perms) { Log.d(TAG, "onPermissionsDenied:" + requestCode + ":" + perms.size()); // (Optional) Check whether the user denied any permissions and checked "NEVER ASK AGAIN." // This will display a dialog directing them to enable the permission in app settings. if (EasyPermissions.somePermissionPermanentlyDenied(this, perms)) { new AppSettingsDialog.Builder(this).build().show(); } } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == AppSettingsDialog.DEFAULT_SETTINGS_REQ_CODE) { String yes = getString(R.string.yes); String no = getString(R.string.no); // Do something after user returned from app settings screen, like showing a Toast. Toast.makeText( this, getString(R.string.returned_from_app_settings_to_activity, hasCameraPermission() ? yes : no, hasLocationAndContactsPermissions() ? yes : no, hasSmsPermission() ? yes : no), Toast.LENGTH_LONG) .show(); } } @Override public void onRationaleAccepted(int requestCode) { Log.d(TAG, "onRationaleAccepted:" + requestCode); } @Override public void onRationaleDenied(int requestCode) { Log.d(TAG, "onRationaleDenied:" + requestCode); } } ================================================ FILE: app/src/main/java/pub/devrel/easypermissions/sample/MainFragment.java ================================================ package pub.devrel.easypermissions.sample; import android.Manifest; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import java.util.List; import pub.devrel.easypermissions.AfterPermissionGranted; import pub.devrel.easypermissions.EasyPermissions; /** * Created in {@link R.layout#activity_main} */ public class MainFragment extends Fragment implements EasyPermissions.PermissionCallbacks { private static final String TAG = "MainFragment"; private static final int RC_SMS_PERM = 122; @Override public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { super.onCreateView(inflater, container, savedInstanceState); // Create view View v = inflater.inflate(R.layout.fragment_main, container); // Button click listener v.findViewById(R.id.button_sms).setOnClickListener(v1 -> smsTask()); return v; } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); // EasyPermissions handles the request result. EasyPermissions.onRequestPermissionsResult(requestCode, permissions, grantResults, this); } @AfterPermissionGranted(RC_SMS_PERM) private void smsTask() { if (EasyPermissions.hasPermissions(requireContext(), Manifest.permission.READ_SMS)) { // Have permission, do the thing! Toast.makeText(getActivity(), "TODO: SMS things", Toast.LENGTH_LONG).show(); } else { // Request one permission EasyPermissions.requestPermissions(this, getString(R.string.rationale_sms), RC_SMS_PERM, Manifest.permission.READ_SMS); } } @Override public void onPermissionsGranted(int requestCode, @NonNull List perms) { Log.d(TAG, "onPermissionsGranted:" + requestCode + ":" + perms.size()); } @Override public void onPermissionsDenied(int requestCode, @NonNull List perms) { Log.d(TAG, "onPermissionsDenied:" + requestCode + ":" + perms.size()); } } ================================================ FILE: app/src/main/res/layout/activity_basic.xml ================================================