apply plugin: 'com.android.library' | |
android { | |
compileSdkVersion 29 | |
defaultConfig { | |
minSdkVersion 29 | |
targetSdkVersion 29 | |
versionCode 1 | |
versionName "1.0" | |
consumerProguardFiles 'consumer-rules.pro' | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
implementation "androidx.annotation:annotation:1.1.0" | |
api project(":camera-common") | |
} |