65 lines
1.9 KiB
Groovy
65 lines
1.9 KiB
Groovy
import groovy.json.JsonSlurper
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
def model = new JsonSlurper().parse(new File(project.rootDir.getParent() + File.separator + "package.json"))
|
|
def doricSDKVersion = model.dependencies.doric.replace("^", "")
|
|
|
|
println("Doric Version:" + doricSDKVersion)
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "29.0.2"
|
|
defaultConfig {
|
|
applicationId "pub.doric.android.__$appKey__"
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
assets.srcDirs = [project.getRootDir().getParent() + "/bundle"]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation "pub.doric:core:$doricSDKVersion"
|
|
implementation "pub.doric:devkit:$doricSDKVersion"
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
buildJSBundle.exec()
|
|
}
|
|
|
|
task buildJSBundle(type: Exec) {
|
|
workingDir project.rootDir.getParent()
|
|
commandLine 'npm', 'run', 'build'
|
|
}
|
|
|
|
def nodeModuleDir = new File(rootDir.getParent() + File.separator + "node_modules")
|
|
if (nodeModuleDir.isDirectory()) {
|
|
nodeModuleDir.listFiles().each {
|
|
if (new File(it.getAbsolutePath() + File.separator + "__doric_library__").exists()) {
|
|
println("Find doric plugin library ${it.name} in ${it}")
|
|
def name = it.name
|
|
android {
|
|
dependencies {
|
|
implementation project(":${name}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |