假如管控

This commit is contained in:
2019-11-30 18:38:32 +08:00
parent fe96be1ac6
commit 8f194481af
78 changed files with 5707 additions and 692 deletions

View File

@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
def appName() {
return "应用市场"
return "UIUIAPPStore"
}
def releaseTime() {
@@ -18,6 +18,18 @@ android {
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
//极光
ndk {
//选择要添加的对应 cpu 类型的 .so 库。
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a'
// 还可以添加 'x86', 'x86_64', 'mips', 'mips64'
}
manifestPlaceholders = [
JPUSH_PKGNAME: applicationId,
JPUSH_APPKEY : "d7ad4da7d65687b32cacbdb1", //JPush 上注册的包名对应的 Appkey.
JPUSH_CHANNEL: "developer-default", //暂时填写默认值即可.
]
}
lintOptions {
checkReleaseBuilds false
@@ -25,16 +37,16 @@ android {
//签名
signingConfigs {
debug {
storeFile file("src/keys/SchoolEbaiFeng.jks")
storeFile file("src/keys/xueshibaoos.jks")
storePassword "123456"
keyAlias "key0"
keyAlias "xueshibaoos"
keyPassword "123456"
v2SigningEnabled false
}
release {// 签名文件
storeFile file("src/keys/SchoolEbaiFeng.jks")
storeFile file("src/keys/xueshibaoos.jks")
storePassword "123456"
keyAlias "key0"
keyAlias "xueshibaoos"
keyPassword "123456"
v2SigningEnabled false
}
@@ -98,13 +110,16 @@ dependencies {
implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
//aria
implementation 'com.arialyy.aria:core:3.7.7'
annotationProcessor 'com.arialyy.aria:compiler:3.7.7'
//OKGO
implementation 'com.lzy.net:okgo:2.1.4'
implementation 'com.lzy.net:okrx:0.1.2'
implementation 'com.lzy.net:okserver:1.1.3'
//必须使用
implementation 'com.lzy.net:okgo:3.0.4'
//以下三个选择添加okrx和okrx2不能同时使用
implementation 'com.lzy.net:okrx:1.0.2'
// compile 'com.lzy.net:okrx2:2.0.2'
implementation 'com.lzy.net:okserver:2.0.5'
implementation 'com.alibaba:fastjson:1.2.21'
@@ -123,4 +138,8 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'androidx.cardview:cardview:1.0.0'
//极光推送
implementation 'cn.jiguang.sdk:jpush:3.4.1' // 此处以JPush 3.4.1 版本为例。
implementation 'cn.jiguang.sdk:jcore:2.2.4' // 此处以JCore 2.2.4 版本为例。
}