Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin
This plugin converts the trustbadge-config.json file for Trustbadge into a set of resources that the Trustbadge library can use.
https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin
Last synced: 1 day ago
JSON representation
This plugin converts the trustbadge-config.json file for Trustbadge into a set of resources that the Trustbadge library can use.
- Host: GitHub
- URL: https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin
- Owner: trustedshops-public
- License: mit
- Created: 2023-02-11T06:59:39.000Z (almost 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-09T02:09:37.000Z (about 1 month ago)
- Last Synced: 2024-11-09T03:20:47.861Z (about 1 month ago)
- Language: Kotlin
- Size: 95.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Trustbadge Config Gradle Plugin
[![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin/blob/main/LICENSE)
![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/de.trustedshops.gradle.trustbadge.config.produce)
[![codecov](https://codecov.io/gh/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin/branch/main/graph/badge.svg?token=xhHiZ1MCYz)](https://codecov.io/gh/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin)> This project is currently work in progress and only used by a few
> customers. Tasks might not be stable yet and could change without
> further notice.This plugin converts the trustbadge-config.json file for Trustbadge into a set of resources that the Trustbadge library can use. It is primarily used for the Trustbadge library on Android.
## Usage
### Plugins DSL
Add the following to your project's settings.gradle:
```
pluginManagement {
repositories {
gradlePluginPortal()
}
}
```Apply the plugin in your app's build.gradle:
```
plugins {
id("de.trustedshops.gradle.trustbadge.config.produce") version "(insert version here)"
}
```