在 AoleyunTestActivity 中集成 AllwinnerCubeMdmManager,为全志平台设备添加 MDM 管控支持,包括 USB 模式、默认桌面、SD 卡、开发者模式、导航栏、状态栏、热点、蓝牙、恢复出厂、默认输入法和浏览器等设置,并新增随机通知与电源键长按管控功能。
60 lines
1.3 KiB
Groovy
60 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
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 'com.android.support:appcompat-v7:28.0.0'
|
|
}
|