Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/expo-application/android/build.gradle
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

30 lines
769 B
Groovy

apply plugin: 'com.android.library'
group = 'host.exp.exponent'
version = '5.9.1'
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
apply from: expoModulesCorePlugin
applyKotlinExpoModulesCorePlugin()
useCoreDependencies()
useDefaultAndroidSdkVersions()
useExpoPublishing()
android {
namespace "expo.modules.application"
defaultConfig {
versionCode 12
versionName '5.9.1'
}
}
dependencies {
implementation 'com.android.installreferrer:installreferrer:2.2'
if (project.findProject(':expo-modules-test-core')) {
testImplementation project(':expo-modules-test-core')
}
testImplementation "org.robolectric:robolectric:4.10"
testImplementation 'junit:junit:4.13.2'
}