增加天气显示

This commit is contained in:
2026-03-06 09:50:58 +08:00
parent 962a022bf9
commit 0f2adad060
30 changed files with 5567 additions and 64 deletions

View File

@@ -63,9 +63,6 @@ android {
}
}
buildConfigField "String", "QweatherId", "\"${qweatherConfigs.credential.id}\""
buildConfigField "String", "QweatherKey", "\"${qweatherConfigs.credential.key}\""
manifestPlaceholders = [
JPUSH_PKGNAME : applicationId,
JPUSH_APPKEY : "d779178d9900d4fb5d633678", //JPush 上注册的包名对应的 Appkey.
@@ -84,6 +81,12 @@ android {
]
}
externalNativeBuild {
cmake {
path file('CMakeLists.txt')
}
}
signingConfigs {
keypub {
storeFile file(rootProject.ext.signingConfigs.keypub.storeFile)
@@ -177,7 +180,8 @@ ext {
dependencies {
// implementation fileTree(dir: 'libs', include: ['*.jar'])
//Android 4.4+
implementation files('libs/QWeather_Public_Android_V4.20.jar')
implementation files('libs/QWeather_Public_Android_V5.1.2.jar')
implementation 'net.i2p.crypto:eddsa:0.3.0'
implementation project(path: ':niceimageview')
implementation project(path: ':iconloader')
@@ -311,6 +315,7 @@ dependencies {
implementation 'com.gitee.zackratos:UltimateBarX:0.8.0'
//指示器
implementation 'com.github.hackware1993:MagicIndicator:1.7.0'
implementation 'com.opencsv:opencsv:5.5.2'
// 吐司框架https://github.com/getActivity/Toaster
implementation 'com.github.getActivity:Toaster:12.6'
@@ -320,5 +325,4 @@ dependencies {
//https://github.com/JessYanCoding/AndroidAutoSize
implementation 'me.jessyan:autosize:1.2.1'
}