mirror of
http://gitea.winboll.cc/Studio/WinBoLL.git
synced 2026-06-29 20:12:23 +08:00
Compare commits
7 Commits
appbase-v1
...
appbase-v1
| Author | SHA1 | Date | |
|---|---|---|---|
| 048433b422 | |||
|
|
1b02e96088 | ||
| fd45d0de01 | |||
| 9b2e5f152b | |||
| 3b6e7586be | |||
| 13f5ad2a6b | |||
| 2b2fb495b6 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -97,8 +97,8 @@ lint-results.html
|
|||||||
## WinBoLL 基础应用(避免上传敏感配置)
|
## WinBoLL 基础应用(避免上传敏感配置)
|
||||||
/winboll.properties
|
/winboll.properties
|
||||||
/local.properties
|
/local.properties
|
||||||
/settings.gradle
|
#/settings.gradle
|
||||||
/gradle.properties
|
#/gradle.properties
|
||||||
|
|
||||||
## APPBase 项目配置
|
## APPBase 项目配置
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ WinBoLL 安卓手机端安卓应用开发基础类库。
|
|||||||
|
|
||||||
1. Fork 本仓库
|
1. Fork 本仓库
|
||||||
2. 新建 Feat_xxx 分支
|
2. 新建 Feat_xxx 分支
|
||||||
3. 提交代码 : ZhanGSKen(ZhanGSKen<zhangsken@188.com>)
|
3. 提交代码 : ZhanGSKen(ZhanGSKen<ZhanGSKen@QQ.COM>)
|
||||||
4. 新建 Pull Request
|
4. 新建 Pull Request
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Wed May 20 03:13:41 HKT 2026
|
#Wed May 20 16:12:13 HKT 2026
|
||||||
stageCount=19
|
stageCount=21
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.20
|
baseVersion=15.20
|
||||||
publishVersion=15.20.18
|
publishVersion=15.20.20
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.20.19
|
baseBetaVersion=15.20.21
|
||||||
|
|||||||
21
gradle.properties
Normal file
21
gradle.properties
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Project-wide Gradle settings.
|
||||||
|
# IDE (e.g. Android Studio) users:
|
||||||
|
# Gradle settings configured through the IDE *will override*
|
||||||
|
# any settings specified in this file.
|
||||||
|
# For more details on how to configure your build environment visit
|
||||||
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
||||||
|
# Specifies the JVM arguments used for the daemon process.
|
||||||
|
# The setting is particularly useful for tweaking memory settings.
|
||||||
|
org.gradle.jvmargs=-Xmx2048m
|
||||||
|
# When configured, Gradle will run in incubating parallel mode.
|
||||||
|
# This option should only be used with decoupled projects. More details, visit
|
||||||
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||||
|
# org.gradle.parallel=true
|
||||||
|
# AndroidX package structure to make it clearer which packages are bundled with the
|
||||||
|
# Android operating system, and which are packaged with your app"s APK
|
||||||
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
||||||
|
android.useAndroidX=false
|
||||||
|
# Automatically convert third-party libraries to use AndroidX
|
||||||
|
android.enableJetifier=false
|
||||||
|
# 保持与旧版Gradle插件的兼容
|
||||||
|
android.disableAutomaticComponentCreation=true
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Wed May 20 03:13:41 HKT 2026
|
#Wed May 20 16:12:13 HKT 2026
|
||||||
stageCount=19
|
stageCount=21
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.20
|
baseVersion=15.20
|
||||||
publishVersion=15.20.18
|
publishVersion=15.20.20
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.20.19
|
baseBetaVersion=15.20.21
|
||||||
|
|||||||
@@ -60,4 +60,7 @@
|
|||||||
<!-- DebugLogStyle 应用调试日志样式属性 -->
|
<!-- DebugLogStyle 应用调试日志样式属性 -->
|
||||||
<attr name="debugTextColor" format="color"/>
|
<attr name="debugTextColor" format="color"/>
|
||||||
|
|
||||||
|
<!-- 边框圆角属性 -->
|
||||||
|
<attr name="borderCornerRadius" format="dimension"/>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
5
settings.gradle
Normal file
5
settings.gradle
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
// APPBase 项目编译设置
|
||||||
|
include ':appbase'
|
||||||
|
include ':libappbase'
|
||||||
|
rootProject.name = "appbase"
|
||||||
|
|
||||||
Reference in New Issue
Block a user