Strict Mode Compat

Android Strict Mode Compat

Лицензия

Лицензия

Группа

Группа

com.github.kirich1409
Идентификатор

Идентификатор

strict-mode-compat-ktx
Последняя версия

Последняя версия

30.2.0
Дата

Дата

Тип

Тип

pom.sha512
Описание

Описание

Strict Mode Compat
Android Strict Mode Compat
Ссылка на сайт

Ссылка на сайт

https://github.com/kirich1409/StrictModeCompat
Система контроля версий

Система контроля версий

https://github.com/kirich1409/StrictModeCompat.git

Скачать strict-mode-compat-ktx

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.github.kirich1409 : strict-mode-compat jar 30.2.0
org.jetbrains.kotlin : kotlin-stdlib jar 1.4.31

Модули Проекта

Данный проект не имеет модулей.

Android Arsenal Maven Central

Android StrictMode Compat

Wrapper of StrictMode API that can be safely called on any version of Android. You must apply version of library for you project base on compileSdkVersion:

android {
    compileSdkVersion 30 // 30 is required minimum
}

dependencies {    
    implementation "com.kirich1409:strict-mode-compat:30.2.0"

    // Kotlin Extensions
    implementation "com.kirich1409:strict-mode-compat-ktx:30.2.0"
}

Sample

build.gradle
android {
    buildTypes {
        debug {
            buildConfigField 'boolean', 'DEVELOPER_MODE', 'true'
        }
        
        release {
            buildConfigField 'boolean', 'DEVELOPER_MODE', 'false'
        }
    }
}
SampleApplication.java
public class SampleApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        if (BuildConfig.DEVELOPER_MODE) {
            StrictMode.ThreadPolicy threadPolicy = new StrictModeCompat.ThreadPolicy.Builder()
                        .detectResourceMismatches()
                        .detectCustomSlowCalls()
                        .detectUnbufferedIo()  // Available only on Android 8.0+
                        .penaltyLog()
                        .build();

            StrictMode.VmPolicy vmPolicy = new StrictModeCompat.VmPolicy.Builder()
                    .detectFileUriExposure()
                    .detectLeakedRegistrationObjects()
                    .detectCleartextNetwork()
                    .detectUntaggedSockets() // Available only on Android 8.0+
                    .detectContentUriWithoutPermission()  // Available only on Android 8.0+
                    .penaltyLog()
                    .build();

            StrictModeCompat.setPolicies(threadPolicy, vmPolicy);
        }
    }
}

Or you can use Kotlin extension and configure StrictModeCompat via DSL

SampleApplication.kt
class SampleApplicationKt : Application() {

    override fun onCreate() {
        super.onCreate()
        initStrictMode(enable = BuildConfig.DEVELOPER_MODE, enableDefaults = false) {
            threadPolicy {
                resourceMismatches = true
                customSlowCalls = true
                unbufferedIo = true

                penalty {
                    log = true
                }
            }

            vmPolicy {
                fileUriExposure = true
                leakedRegistrationObjects = true
                cleartextNetwork = true
                cleartextNetwork = true
                untaggedSockets = true
                contentUriWithoutPermission = true

                penalty {
                    log = true
                }
            }
        }
    }
}

License

Copyright 2017-2021 Kirill Rozov

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.

Версии библиотеки

Версия
30.2.0