24 lines
541 B
Groovy
24 lines
541 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'expo-module-gradle-plugin'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
android {
|
|
namespace "expo.modules.kioskmode"
|
|
compileSdkVersion findProperty("expo.compileSdkVersion") ?: 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion findProperty("expo.minSdkVersion") ?: 23
|
|
targetSdkVersion findProperty("expo.targetSdkVersion") ?: 34
|
|
versionCode 1
|
|
versionName "1.0.0"
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.facebook.react:react-android'
|
|
}
|