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

60 lines
1.6 KiB
Groovy
Raw Normal View History

2019-07-18 13:29:28 +08:00
apply plugin: 'com.android.library'
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'
}
}
}
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'
2019-11-22 17:59:52 +08:00
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
2019-11-21 14:15:43 +08:00
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.3.1'
implementation 'com.google.code.gson:gson:2.8.6'
2019-11-22 20:43:44 +08:00
implementation "com.google.android.material:material:1.0.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
}