Skip to content

gwef/PermissionGen

This branch is up to date with lovedise/PermissionGen:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b23c870 · Feb 25, 2016

History

20 Commits
Nov 18, 2015
Nov 20, 2015
Feb 25, 2016
Nov 18, 2015
Nov 20, 2015
Nov 18, 2015
Nov 20, 2015
Nov 20, 2015
Nov 19, 2015
Nov 18, 2015
Nov 18, 2015
Nov 18, 2015
Nov 18, 2015

Repository files navigation

PermissionGen (한글)

Download

PermissionGen can easily handle the permissions in the Android M.

##Download

Grab via Maven:

<dependency>
        <groupId>com.lovedise</groupId>
        <artifactId>permissiongen</artifactId>
        <version>0.0.6</version>
</dependency>

or Gradle:

compile 'com.lovedise:permissiongen:0.0.6'

##Usage When you request permissions

PermissionGen.with(MainActivity.this)
	.addRequestCode(100)
	.permissions(
		Manifest.permission.READ_CONTACTS,
		Manifest.permission.RECEIVE_SMS,
		Manifest.permission.WRITE_CONTACTS)
	.request();

or

PermissionGen.needPermission(ContactFragment.this, 100, 
	new String[] {
		Manifest.permission.READ_CONTACTS, 
		Manifest.permission.RECEIVE_SMS,
		Manifest.permission.WRITE_CONTACTS
	}
);

Override the onRequestPermissionsResult in activity or fragment and input this code.

@Override public void onRequestPermissionsResult(int requestCode, String[] permissions,
      int[] grantResults) {
	PermissionGen.onRequestPermissionsResult(this, requestCode, permissions, grantResults);
}

When it succeeded in obtaining permission

@PermissionSuccess(requestCode = 100)
public void doSomething(){
	Toast.makeText(this, "Contact permission is granted", Toast.LENGTH_SHORT).show();
}

When it failed in obtaining permission

@PermissionFail(requestCode = 100)
public void doFailSomething(){
	Toast.makeText(this, "Contact permission is not granted", t.LENGTH_SHORT).show();
}

##License

Copyright 2015 Seunghwan Kim

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.

About

Android API easy to use permission for Android M

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%