43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "29.0.2"
|
|
defaultConfig {
|
|
applicationId "pub.doric.example"
|
|
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() + "/js/bundle/src"]
|
|
}
|
|
}
|
|
|
|
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:0.1.2"
|
|
debugImplementation "pub.doric:core:0.1.2"
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
buildJSBundle.exec()
|
|
}
|
|
|
|
task buildJSBundle(type: Exec) {
|
|
workingDir project.rootDir.getParent() + "/js"
|
|
commandLine 'doric', 'build'
|
|
} |