mirror of
https://github.com/google/blockly.git
synced 2026-01-12 19:37:08 +01:00
51 lines
1.5 KiB
Groovy
51 lines
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
defaultConfig {
|
|
applicationId 'com.google.blockly.android.webview.demo'
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
task copyBlocklyHtmlFile(type: Copy) {
|
|
from('../../html') {
|
|
include 'index.html', 'toolbox_standard.js'
|
|
}
|
|
into project(':app').file('./src/main/assets/blockly')
|
|
rename('index.html', 'webview.html')
|
|
}
|
|
|
|
task copyBlocklyMoreFiles(type: Copy) {
|
|
from('../../../..') {
|
|
include 'blockly_compressed.js', 'blocks_compressed.js', 'msg/js/**', 'media/**'
|
|
exclude 'media/test_*'
|
|
}
|
|
into project(':app').file('./src/main/assets/blockly')
|
|
}
|
|
|
|
project.afterEvaluate {
|
|
preBuild.dependsOn(copyBlocklyHtmlFile, copyBlocklyMoreFiles)
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
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'
|
|
}
|