30 lines
769 B
Groovy
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'
|
|
}
|