chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+32
View File
@@ -0,0 +1,32 @@
plugins {
id 'com.android.library'
id 'expo-module-gradle-plugin'
}
group = 'host.exp.exponent'
version = '17.0.10'
android {
namespace "expo.modules.imagepicker"
defaultConfig {
versionCode 22
versionName "17.0.10"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
testOptions {
unitTests.includeAndroidResources = true
}
}
dependencies {
implementation "androidx.activity:activity-ktx:1.10.0"
implementation "androidx.appcompat:appcompat:1.7.0"
implementation "androidx.exifinterface:exifinterface:1.3.7"
implementation "com.vanniktech:android-image-cropper:4.6.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.3"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
if (project.findProject(':expo-modules-test-core')) {
androidTestImplementation project(':expo-modules-test-core')
}
}