SafetyNet Helper

A small library that wraps the Google Play Services SafetyNet API.

License

License

Categories

Categories

Net
GroupId

GroupId

com.jrummyapps
ArtifactId

ArtifactId

safetynethelper
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

aar
Description

Description

SafetyNet Helper
A small library that wraps the Google Play Services SafetyNet API.
Project URL

Project URL

https://github.com/jrummyapps/SafetyNetHelper
Source Code Management

Source Code Management

https://github.com/jrummyapps/SafetyNetHelper

Download safetynethelper

How to add to project

<!-- https://jarcasting.com/artifacts/com.jrummyapps/safetynethelper/ -->
<dependency>
    <groupId>com.jrummyapps</groupId>
    <artifactId>safetynethelper</artifactId>
    <version>1.0.1</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.jrummyapps/safetynethelper/
implementation 'com.jrummyapps:safetynethelper:1.0.1'
// https://jarcasting.com/artifacts/com.jrummyapps/safetynethelper/
implementation ("com.jrummyapps:safetynethelper:1.0.1")
'com.jrummyapps:safetynethelper:aar:1.0.1'
<dependency org="com.jrummyapps" name="safetynethelper" rev="1.0.1">
  <artifact name="safetynethelper" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.jrummyapps', module='safetynethelper', version='1.0.1')
)
libraryDependencies += "com.jrummyapps" % "safetynethelper" % "1.0.1"
[com.jrummyapps/safetynethelper "1.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.google.android.gms » play-services-safetynet jar 10.2.6

Project Modules

There are no modules declared in this project.

SafetyNetHelper

A small library that wraps the Google Play Services SafetyNet API.

Usage

SafetyNetHelper.with(this)
    .addSafetyNetListener(new SafetyNetHelper.SafetyNetListener() {

      @Override public void onError(int errorCode, String reason) {

      }

      @Override public void onFinished(SafetyNetHelper.SafetyNetResponse response,
                                       SafetyNetHelper.SafetyNetVerification verification) {
        if (response.ctsProfileMatch) {
          // The device passed the Android compatibility test.
        }
      }
    })
    .run();

Download

API License Maven Central

Add the dependency to your app level build.gradle file:

compile 'com.jrummyapps:safetynethelper:{latest-version}'

License

Copyright (C) 2016, JRummy Apps Inc.

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.
com.jrummyapps

JRummy Apps Inc.

Versions

Version
1.0.1
1.0.0