Utility to load key from a folder
This library aims to provide an API in kotlin to load Android signing key from a folder
build.gradle:
repositories {
maven { url "https://nexus.coppernic.fr/repository/libs-release" }
}
dependencies {
implementation 'fr.coppernic.lib:key-loader:1.0.0'
}
This library uses SLF4J for logging. Please use android binding to log into logcat. More info on Android binding
dependencies {
// https://mvnrepository.com/artifact/org.slf4j/slf4j-android
implementation 'org.slf4j:slf4j-android:1.7.30'
}
You can also bind SLF4J to timber. In this case please use this dependency
dependencies {
implementation 'com.arcao:slf4j-timber:3.1'
}
To activate verbose logging, please add this into your code :
KeyLoaderDefines.verbose = true
One TAG
is used for all logging from lib. It would be easy to filter on this tag if you
want to disable all logging from lib. Filtering can be done with Timber
and a Tree
from Treessence
dependencies {
implementation 'com.github.bastienpaulfr:Treessence:1.0.5'
}
Copyright (C) 2021 Coppernic
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.