You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
998 B
Groovy
41 lines
998 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 31 // 确保在后台预览时不崩溃。。。
|
|
versionCode 13190817
|
|
versionName "1.3.19.0817"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.13.2'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'androidx.lifecycle:lifecycle-reactivestreams:2.4.1'
|
|
annotationProcessor 'androidx.lifecycle:lifecycle-compiler:2.0.0'
|
|
|
|
implementation(name: 'libuvccamera-release', ext: 'aar') {
|
|
exclude module: 'support-v4'
|
|
exclude module: 'appcompat-v7'
|
|
}
|
|
}
|