1 Star 1 Fork 0

xingfengwxx/OpenCVFaceDetect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gradlew.bat 2.21 KB
一键复制 编辑 原始数据 按行查看 历史
xingfengwxx 提交于 2020-04-10 15:36 . OpenCV人脸识别demo
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.ashd.keystone"
minSdkVersion 21
targetSdkVersion 29
versionCode 100
versionName "1.0.0"
flavorDimensions "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
releaseSign {
keyAlias 'aishang.keystore'
keyPassword 'rswzjq!@#$'
storeFile file('D:\\GitWorkspace\\AshdKeystone\\keystore\\rk7.1_rger.jks')
storePassword 'rswzjq!@#$'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
signingConfig signingConfigs.releaseSign
}
}
productFlavors {
ashd {}
}
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "AshdKeystone_${variant.productFlavors[0].name}_c${defaultConfig.versionCode}_v${defaultConfig.versionName}_${buildType.name}_${releaseTime()}.apk"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
def releaseTime() {
return new Date().format("yyyyMMdd-HHmmss", TimeZone.getDefault())
}
dependencies {
// implementation fileTree(dir: 'libs', include: ['*.jar'])
compileOnly files("libs/layoutlib.jar")
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.nostra13.u
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xingfengwxx/OpenCVFaceDetect.git
[email protected]:xingfengwxx/OpenCVFaceDetect.git
xingfengwxx
OpenCVFaceDetect
OpenCVFaceDetect
master

搜索帮助