mirror of
https://github.com/PaddlePaddle/PaddleClas.git
synced 2025-06-03 13:33:51 +08:00
94 lines
3.3 KiB
Groovy
94 lines
3.3 KiB
Groovy
import java.security.MessageDigest
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
defaultConfig {
|
|
applicationId "com.baidu.paddle.lite.demo.pp_shitu"
|
|
minSdkVersion 15
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments '-DANDROID_PLATFORM=android-23', '-DANDROID_STL=c++_shared', "-DANDROID_TOOLCHAIN="
|
|
abiFilters 'arm64-v8a'
|
|
cppFlags "-std=c++11"
|
|
}
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "src/main/cpp/CMakeLists.txt"
|
|
version "3.18.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
}
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
def archives = [
|
|
[
|
|
'src' : 'https://paddlelite-demo.bj.bcebos.com/libs/android/paddle_lite_libs_v2_10_gpu.tar.gz',
|
|
'dest': 'PaddleLite'
|
|
],
|
|
[
|
|
'src' : 'https://paddlelite-demo.bj.bcebos.com/libs/android/opencv-4.2.0-android-sdk.tar.gz',
|
|
'dest': 'OpenCV'
|
|
],
|
|
[
|
|
'src' : 'https://paddlelite-demo.bj.bcebos.com/demo/PP_shitu/models/ppshitu_lite_models_v1.0.tar.gz',
|
|
'dest' : 'src/main/assets/models'
|
|
]
|
|
]
|
|
|
|
task downloadAndExtractArchives(type: DefaultTask) {
|
|
doFirst {
|
|
println "Downloading and extracting archives including libs and models"
|
|
}
|
|
doLast {
|
|
// Prepare cache folder for archives
|
|
String cachePath = "cache"
|
|
if (!file("${cachePath}").exists()) {
|
|
mkdir "${cachePath}"
|
|
}
|
|
archives.eachWithIndex { archive, index ->
|
|
MessageDigest messageDigest = MessageDigest.getInstance('MD5')
|
|
messageDigest.update(archive.src.bytes)
|
|
String cacheName = new BigInteger(1, messageDigest.digest()).toString(32)
|
|
// Download the target archive if not exists
|
|
boolean copyFiles = !file("${archive.dest}").exists()
|
|
if (!file("${cachePath}/${cacheName}.tar.gz").exists()) {
|
|
ant.get(src: archive.src, dest: file("${cachePath}/${cacheName}.tar.gz"))
|
|
copyFiles = true; // force to copy files from the latest archive files
|
|
}
|
|
// Extract the target archive if its dest path does not exists
|
|
if (copyFiles) {
|
|
copy {
|
|
from tarTree("${cachePath}/${cacheName}.tar.gz")
|
|
into "${archive.dest}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
preBuild.dependsOn downloadAndExtractArchives
|