adding library support for the android-stem plugin

This commit is contained in:
Adam Brown 2022-08-02 16:33:55 +01:00
parent f0bc18d5ca
commit 2e81056b1e
3 changed files with 7 additions and 0 deletions

View file

@ -8,6 +8,7 @@ apply plugin: 'kotlin-parcelize'
apply plugin: 'kotlin-kapt'
apply plugin: 'dagger.hilt.android.plugin'
apply plugin: 'kotlinx-knit'
apply plugin: 'com.likethesalad.stem'
if (project.hasProperty("coverage")) {
apply plugin: 'jacoco'

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- The https://github.com/LikeTheSalad/android-stem requires a non empty strings.xml -->
<string name="ignored_placeholder" tools:ignore="UnusedResources">ignored</string>
</resources>

View file

@ -3,6 +3,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'kotlin-kapt'
apply plugin: 'dagger.hilt.android.plugin'
apply plugin: 'com.likethesalad.stem-library'
if (project.hasProperty("coverage")) {
apply plugin: 'jacoco'