feat: add pokiesplay module with updated configurations and resources

- Introduced build.gradle for the pokiesplay module with application ID and output name changes.
- Updated google-services.json to reflect new project settings and Firebase configuration.
- Added new selection state for pokiesplay in deploymentTargetSelector.xml.
- Included pokiesplay in settings.gradle and gradle.xml for project integration.
- Updated application branding resources and user ID in build.gradle.
- Modified APK and image resources for the new module.
This commit is contained in:
2026-05-07 09:47:48 +08:00
parent 7da0e6d1b9
commit 573a953d66
8 changed files with 18 additions and 12 deletions

View File

@@ -3,7 +3,7 @@ plugins {
id 'com.google.gms.google-services'
}
def appOutPutName = "live22"
def appOutPutName = "pokiesplay"
android {
namespace rootProject.ext.namespace
@@ -15,18 +15,18 @@ android {
versionName rootProject.ext.versionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
applicationId "com.daidn.live22"
applicationId "com.jsdkada.pokiesplay"
//app大背景色
resValue('color', 'windows_color', '#440F6F')
resValue('color', 'windows_color', '#000000')
//底部导航栏颜色 大背景颜色为 windows_color——style_color的上下渐变色
resValue('color', 'style_color', '#360B58')
resValue('color', 'style_color', '#000000')
//app 名字
resValue('string', 'app_name', 'LIVE22')
resValue('string', 'app_name', 'POKIESPLAY')
buildConfigField "String", "BASE_URL", "\"https://live22x.com/\""
buildConfigField "int", "USERID", "262"
buildConfigField "int", "USERID", "280"
buildConfigField "boolean", "IS_WHITE", "false"
buildConfigField "boolean", "IS_ROUND", "true"
buildConfigField "int", "ROUND_RADIUS", "10"