Android: rename module name to jse

This commit is contained in:
pengfei.zhou
2021-11-05 22:34:39 +08:00
committed by osborn
parent 7eb8287f04
commit a3738859aa
23 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 30
buildToolsVersion '30.0.1'
defaultConfig {
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
consumerProguardFiles 'proguard-rules.pro'
}
}
}
if (new File('scripts/upload.gradle').exists()) {
apply from: rootProject.file('scripts/upload.gradle')
}