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"] } } 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.2.1" debugImplementation "pub.doric:core:0.2.1" } } afterEvaluate { buildJSBundle.exec() } task buildJSBundle(type: Exec) { workingDir project.rootDir.getParent() + "/js" commandLine 'doric', 'build' }