You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.intel.realsense.capture'
|
|
compileSdk defaultCompileSdkVersion
|
|
|
|
defaultConfig {
|
|
applicationId "com.intel.realsense.capture"
|
|
minSdk defaultMinSdkVersion
|
|
targetSdk defaultTargetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':librealsense')
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion"
|
|
testImplementation "junit:junit:$junitVersion"
|
|
androidTestImplementation "androidx.test.ext:junit:$androidextjunitVersion"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoCoreVersion"
|
|
}
|