23 lines
430 B
Groovy
23 lines
430 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'expo-module-gradle-plugin'
|
|
}
|
|
|
|
apply from: "../scripts/get-app-config-android.gradle"
|
|
|
|
group = 'host.exp.exponent'
|
|
version = '55.0.7'
|
|
|
|
expoModule {
|
|
// We can't prebuild the module because we need to apply `get-app-config-android.gradle` script.
|
|
canBePublished false
|
|
}
|
|
|
|
android {
|
|
namespace "expo.modules.constants"
|
|
defaultConfig {
|
|
versionCode 33
|
|
versionName "55.0.7"
|
|
}
|
|
}
|