react-native-vision-camera/android/build.gradle

145 lines
4.0 KiB
Groovy
Raw Normal View History

2021-02-19 08:07:53 -07:00
buildscript {
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['VisionCamera_kotlinVersion']
repositories {
google()
jcenter()
2021-02-19 12:36:49 -07:00
maven {
url "https://plugins.gradle.org/m2/"
}
2021-02-19 08:07:53 -07:00
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
2021-02-19 08:07:53 -07:00
// noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2021-02-19 12:36:49 -07:00
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
2021-02-19 08:07:53 -07:00
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
2021-02-19 12:36:49 -07:00
apply plugin: 'kotlin-android-extensions'
2021-02-19 08:07:53 -07:00
def getExtOrDefault(name) {
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['VisionCamera_' + name]
}
def getExtOrIntegerDefault(name) {
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['VisionCamera_' + name]).toInteger()
}
android {
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
buildToolsVersion getExtOrDefault('buildToolsVersion')
defaultConfig {
2021-02-19 12:54:55 -07:00
minSdkVersion 21
2021-02-19 08:07:53 -07:00
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 1
versionName "1.0"
}
2021-02-19 12:36:49 -07:00
2021-02-19 08:07:53 -07:00
buildTypes {
release {
minifyEnabled false
}
}
lintOptions {
disable 'GradleCompatible'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
mavenCentral()
jcenter()
google()
def found = false
def defaultDir = null
def androidSourcesName = 'React Native sources'
if (rootProject.ext.has('reactNativeAndroidRoot')) {
defaultDir = rootProject.ext.get('reactNativeAndroidRoot')
} else {
defaultDir = new File(
projectDir,
'/../../../node_modules/react-native/android'
)
}
if (defaultDir.exists()) {
maven {
url defaultDir.toString()
name androidSourcesName
}
logger.info(":${project.name}:reactNativeAndroidRoot ${defaultDir.canonicalPath}")
found = true
} else {
def parentDir = rootProject.projectDir
1.upto(5, {
if (found) return true
parentDir = parentDir.parentFile
def androidSourcesDir = new File(
parentDir,
'node_modules/react-native'
)
def androidPrebuiltBinaryDir = new File(
parentDir,
'node_modules/react-native/android'
)
if (androidPrebuiltBinaryDir.exists()) {
maven {
url androidPrebuiltBinaryDir.toString()
name androidSourcesName
}
logger.info(":${project.name}:reactNativeAndroidRoot ${androidPrebuiltBinaryDir.canonicalPath}")
found = true
} else if (androidSourcesDir.exists()) {
maven {
url androidSourcesDir.toString()
name androidSourcesName
}
logger.info(":${project.name}:reactNativeAndroidRoot ${androidSourcesDir.canonicalPath}")
found = true
}
})
}
if (!found) {
throw new GradleException(
"${project.name}: unable to locate React Native android sources. " +
"Ensure you have you installed React Native as a dependency in your project and try again."
)
}
}
def kotlin_version = getExtOrDefault('kotlinVersion')
dependencies {
// noinspection GradleDynamicVersion
api 'com.facebook.react:react-native:+'
2021-02-19 12:36:49 -07:00
2021-02-19 08:07:53 -07:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2021-02-19 12:36:49 -07:00
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.4.2"
implementation "androidx.camera:camera-core:1.1.0-alpha01"
implementation "androidx.camera:camera-camera2:1.1.0-alpha01"
implementation "androidx.camera:camera-lifecycle:1.1.0-alpha01"
implementation "androidx.camera:camera-extensions:1.0.0-alpha21"
implementation "androidx.camera:camera-view:1.0.0-alpha21"
implementation "androidx.exifinterface:exifinterface:1.3.2"
2021-02-19 08:07:53 -07:00
}