Fix Android WebView API access and mobile shell layout

This commit is contained in:
yoyuzh
2026-04-03 14:37:21 +08:00
parent f02ff9342f
commit 56f2a9fe0d
121 changed files with 4751 additions and 700 deletions

View File

@@ -0,0 +1,31 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
def googleMirror = 'https://maven.aliyun.com/repository/google'
repositories {
maven { url googleMirror }
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply from: "variables.gradle"
allprojects {
def googleMirror = 'https://maven.aliyun.com/repository/google'
repositories {
maven { url googleMirror }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}