Skip to content

Commit

Permalink
Update readme, change drawable png images to webp, add split apks
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomanaia committed Apr 16, 2023
1 parent 4754dd2 commit a3d5325
Show file tree
Hide file tree
Showing 302 changed files with 89 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,5 @@ jobs:
with:
name: artifacts.zip
path: |
app/build/outputs/apk/debug/app-debug.apk
app/build/outputs/apk/debug/app-universal-debug.apk
newquiz_uploads/build/outputs/aar
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# New Quiz

[![Version](https://img.shields.io/badge/Version-1.5.2-blueviolet)](https://github.com/joaomanaia/newquiz/releases/tag/1.5.2)
[![Version](https://img.shields.io/badge/Version-1.5.3-blueviolet)](https://github.com/joaomanaia/newquiz/releases/tag/1.5.3)
[![Android CI](https://github.com/joaomanaia/newquiz/actions/workflows/android.yml/badge.svg?branch=main)](https://github.com/joaomanaia/newquiz/actions/workflows/android.yml)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
[![Translation status](https://hosted.weblate.org/widgets/newquiz/-/android-strings/svg-badge.svg)](https://hosted.weblate.org/engage/newquiz)
Expand All @@ -13,7 +13,7 @@ Do you like to challenge your knowledge? So NewQuiz is the ideal game for you.

New quiz is optimized to material you, the theme of new quiz will adapt to your background.

![NewQuiz green night](pictures/NewQuiz-Promotion-green.png)
![NewQuiz green night](pictures/NewQuiz-Promotion-green-night.png)

# Features

Expand Down
14 changes: 14 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,20 @@ android {

addJavaSourceFoldersToModel(File(buildDir, "generated/ksp/${name}/kotlin"))
}
splits {
abi {
isEnable = true
reset()
include("x86", "x86_64", "arm64-v8a", "armeabi-v7a")

// Generate universal APK
isUniversalApk = true
}
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class MainActivity : ComponentActivity() {

installSplashScreen()


setContent {
NewQuizTheme {
val windowSize = calculateWindowSizeClass(activity = this)
Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/java/ProjectConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ object ProjectConfig {
val javaVersionCompatibility = JavaVersion.VERSION_17

const val jvmTargetVersion = "17"

const val jvmToolchainVersion = 17
}
5 changes: 5 additions & 0 deletions comparison-quiz/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Comparison quiz

This is the code for the comparison game mode.

![NewQuiz purple light](../pictures/comparison_quiz.jpg)
4 changes: 4 additions & 0 deletions comparison-quiz/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
23 changes: 2 additions & 21 deletions comparison-quiz/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,21 +1,2 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
# Temporary fix
-dontwarn java.lang.invoke.StringConcatFactory
4 changes: 4 additions & 0 deletions core-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
4 changes: 4 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
testImplementation(Testing.junit.jupiter)
testImplementation(libs.truth)
Expand Down
Binary file removed core/src/main/res/drawable-hdpi/animals.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/animals.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/art.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/art.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/books.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/books.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/celebrities.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/celebrities.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/films.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/films.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/geography.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/geography.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/history.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/history.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/music.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/music.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/mythology.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/mythology.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/politics.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/politics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/science_gadgets.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/sports.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/sports.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-hdpi/vehicles.png
Binary file not shown.
Binary file added core/src/main/res/drawable-hdpi/vehicles.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/animals.png
Binary file not shown.
Binary file added core/src/main/res/drawable-mdpi/animals.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/art.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/art.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/books.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/books.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/celebrities.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/celebrities.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/films.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/films.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/geography.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/geography.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/history.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/history.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/music.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/music.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/mythology.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/mythology.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/politics.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/politics.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/science_gadgets.png
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/sports.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/sports.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-mdpi/vehicles.png
Diff not rendered.
Binary file added core/src/main/res/drawable-mdpi/vehicles.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/animals.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/animals.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/art.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/art.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/books.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/books.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/celebrities.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/celebrities.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/films.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/films.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/geography.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/geography.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/history.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/history.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/music.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/music.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/mythology.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/mythology.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/politics.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/politics.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/science_gadgets.png
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/sports.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/sports.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xhdpi/vehicles.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xhdpi/vehicles.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/animals.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/animals.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/art.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/art.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/books.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/books.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/celebrities.png
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/films.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/films.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/geography.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/geography.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/history.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/history.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/music.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/music.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/mythology.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/mythology.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/politics.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/politics.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/sports.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/sports.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxhdpi/vehicles.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxhdpi/vehicles.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/animals.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/animals.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/art.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/art.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/books.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/books.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/celebrities.png
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/films.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/films.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/geography.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/geography.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/history.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/history.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/music.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/music.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/mythology.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/mythology.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/politics.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/politics.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/sports.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/sports.webp
Binary file not shown.
Binary file removed core/src/main/res/drawable-xxxhdpi/vehicles.png
Diff not rendered.
Binary file added core/src/main/res/drawable-xxxhdpi/vehicles.webp
Binary file not shown.
Binary file removed core/src/main/res/mipmap-hdpi/ic_launcher.png
Diff not rendered.
Binary file added core/src/main/res/mipmap-hdpi/ic_launcher.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-hdpi/ic_launcher_round.png
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-mdpi/ic_launcher.png
Diff not rendered.
Binary file added core/src/main/res/mipmap-mdpi/ic_launcher.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-mdpi/ic_launcher_round.png
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-xhdpi/ic_launcher.png
Diff not rendered.
Binary file added core/src/main/res/mipmap-xhdpi/ic_launcher.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Diff not rendered.
Binary file not shown.
Binary file removed core/src/main/res/mipmap-xxhdpi/ic_launcher.png
Diff not rendered.
Binary file added core/src/main/res/mipmap-xxhdpi/ic_launcher.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
4 changes: 4 additions & 0 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)
implementation(AndroidX.appCompat)
Expand Down
4 changes: 4 additions & 0 deletions domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
androidTestImplementation(AndroidX.test.ext.junit)
androidTestImplementation(AndroidX.test.espresso.core)
Expand Down
4 changes: 4 additions & 0 deletions home-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
4 changes: 4 additions & 0 deletions maze-quiz/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
4 changes: 4 additions & 0 deletions model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
testImplementation(Testing.junit.jupiter)
testImplementation(libs.truth)
Expand Down
5 changes: 5 additions & 0 deletions multi-choice-quiz/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Multi choice quiz

This is the code for the multi choice quiz game mode.

![NewQuiz purple light](../pictures/multichoicequiz.jpg)
4 changes: 4 additions & 0 deletions multi-choice-quiz/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
5 changes: 5 additions & 0 deletions online_services/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ plugins {
id("dagger.hilt.android.plugin")
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
}

android {
namespace = "com.infinitepower.newquiz.online_services"
compileSdk = ProjectConfig.compileSdk
Expand Down Expand Up @@ -54,6 +55,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
Binary file added pictures/NewQuiz-Promotion-green-night.png
Binary file removed pictures/NewQuiz-Promotion-green.png
Diff not rendered.
Binary file modified pictures/NewQuiz-Promotion-purple-light.png
Binary file added pictures/comparison_quiz.jpg
Binary file removed pictures/maze.png
Diff not rendered.
Binary file removed pictures/multichoice1.png
Diff not rendered.
Binary file removed pictures/multichoice2.png
Diff not rendered.
Binary file added pictures/multichoicequiz.jpg
Binary file added pictures/wordle.jpg
Binary file removed pictures/wordle1.png
Diff not rendered.
Binary file removed pictures/wordle2.png
Diff not rendered.
Binary file removed pictures/wordle3.png
Diff not rendered.
4 changes: 4 additions & 0 deletions settings-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(AndroidX.core.ktx)

Expand Down
4 changes: 4 additions & 0 deletions translation_dynamic_feature/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ android {
}
}

kotlin {
jvmToolchain(ProjectConfig.jvmToolchainVersion)
}

dependencies {
implementation(project(Modules.core))

Expand Down
Loading

0 comments on commit a3d5325

Please sign in to comment.