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

52 lines
1.4 KiB
Groovy
Raw Normal View History

2019-07-18 13:29:28 +08:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
consumerProguardFiles 'proguard-rules.pro'
}
}
}
2019-07-22 11:22:19 +08:00
afterEvaluate {
buildJSBundle.exec()
2019-08-09 19:57:11 +08:00
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-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'])
implementation 'com.android.support:appcompat-v7: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'
2019-07-22 11:22:19 +08:00
api 'com.github.pengfeizhou:jsc4a:0.1.0'
2019-08-06 19:37:08 +08:00
implementation "com.squareup.okhttp3:okhttp:3.11.0"
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.0.1'
2019-08-09 16:32:38 +08:00
api 'org.nanohttpd:nanohttpd:2.3.1'
2019-07-18 13:29:28 +08:00
}