Private
Public Access
1
0

Add 'android/' from commit '5d26ea956906cd31a6cc37e79b0a4cac77b3118b'

git-subtree-dir: android
git-subtree-mainline: 7fe2701272
git-subtree-split: 5d26ea9569
This commit is contained in:
2025-09-06 19:37:14 -07:00
101 changed files with 5387 additions and 0 deletions

16
android/build.gradle Normal file
View File

@@ -0,0 +1,16 @@
buildscript {
ext {
kotlin_version = '1.8.22'
realm_version = '1.10.0'
hilt_version = '2.44'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version "${kotlin_version}" apply false
id 'io.realm.kotlin' version "${realm_version}" apply false
id 'com.google.dagger.hilt.android' version "${hilt_version}" apply false
}