This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/Android/doric/build.gradle

73 lines
2.1 KiB
Groovy
Raw Normal View History

2019-07-18 13:29:28 +08:00
apply plugin: 'com.android.library'
def projectHome = project.rootDir.getParent() + "/demo"
2019-07-18 13:29:28 +08:00
android {
compileSdkVersion 29
2019-10-15 13:26:43 +08:00
buildToolsVersion '29.0.2'
2019-07-18 13:29:28 +08:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
2019-07-18 13:29:28 +08:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-07-18 13:29:28 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
consumerProguardFiles 'proguard-rules.pro'
}
debug {
buildConfigField "String", "PROJECT_HOME", "\"${projectHome}\""
}
2019-07-18 13:29:28 +08:00
}
}
2019-07-22 11:22:19 +08:00
afterEvaluate {
buildJSBundle.exec()
2019-08-13 14:31:12 +08:00
buildDemo.exec()
//buildDebugger.exec()
2019-07-22 11:22:19 +08:00
}
task buildJSBundle(type: Exec) {
workingDir project.rootDir.getParent() + "/js-framework"
commandLine 'npm', 'run', 'build'
}
2019-08-13 14:31:12 +08:00
task buildDemo(type: Exec) {
workingDir project.rootDir.getParent() + "/demo"
commandLine 'npm', 'run', 'build'
}
2019-08-09 19:57:11 +08:00
task buildDebugger(type: Exec) {
workingDir project.rootDir.getParent() + "/debugger"
commandLine 'npm', 'run', 'build'
}
2019-07-18 13:29:28 +08:00
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2019-10-21 10:03:09 +08:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2019-07-22 11:22:19 +08:00
api 'com.github.pengfeizhou:jsc4a:0.1.0'
implementation 'com.squareup.okhttp3:okhttp:4.2.1'
2019-11-11 17:09:48 +08:00
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.2.0'
2019-08-09 16:32:38 +08:00
api 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'com.google.code.gson:gson:2.8.6'
2019-10-31 20:22:00 +08:00
api "com.google.android.material:material:1.0.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2019-11-09 16:57:45 +08:00
implementation 'cn.bingoogolapple:bga-qrcode-zxing:1.3.7'
implementation 'com.github.tbruyelle:rxpermissions:0.10.2'
implementation "io.reactivex.rxjava2:rxjava:2.2.14"
api 'org.greenrobot:eventbus:3.1.1'
2019-11-12 15:40:01 +08:00
implementation 'com.lahm.library:easy-protector-release:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2019-07-18 13:29:28 +08:00
}