Files
TTUtils/viewlibrary/build.gradle
tongtongstudio dfb81fa39a feat(aoleyuntest): 接入 Allwinner CubeMdm 管理能力
在 AoleyunTestActivity 中集成 AllwinnerCubeMdmManager,为全志平台设备添加 MDM 管控支持,包括 USB 模式、默认桌面、SD 卡、开发者模式、导航栏、状态栏、热点、蓝牙、恢复出厂、默认输入法和浏览器等设置,并新增随机通知与电源键长按管控功能。
2026-08-14 11:36:58 +08:00

80 lines
2.0 KiB
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
productFlavors {
official {
flavorDimensions "default"
}
beta {
flavorDimensions "default"
}
}
buildTypes {
MT6789Debug {}
MT6789Release {}
QZ15Debug {}
QZ15Release {}
seewoDebug {}
seewoRelease {}
zhanruiG10ZUserDebug {}
Huaruian8768Debug {}
Huaruian8768Release {}
iPlay50PDebug {}
iPlay50PRelease {}
UnisocS6688Debug {}
UnisocS6688Release {}
U807Debug {}
U807Release {}
tuiXinDebug {}
teclastUnisocdebug {}
teclastUnisocrelease {}
teclastMTKDebug {}
teclastMTKRelease {}
G11Userdebug {}
G10PDebug {}
G10PRelease {}
G10PUserDebug {}
Teclast8515Debug {}
Teclast8515Release {}
TeclastP20SDebug {}
TeclastP20SRelease {}
zhanRuiDebug {}
zhanRuiRelease {}
zhanRuiUserdebug {}
zhanruiG10ZDebug {}
zhanruiG10ZRelease {}
zhanRui12Debug {}
zhanRui12Release {}
debug {}
release {}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.2.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'com.facebook.rebound:rebound:0.3.6'
// implementation 'com.zcw:togglebutton-library:1.0.0'
implementation 'com.github.zcweng:switch-button:0.0.3@aar'
}