config(project): 更新项目配置和资源文件

- 添加 .gitignore 文件忽略 IDE 和 Xcode 用户特定文件
- 重命名应用图标文件从 app_logo.png 到 logo.png
- 更新 GoogleService-Info.plist 中的 Firebase 配置信息
- 修改 MacroDefine.h 中的 NowUserId 常量值
- 注释掉 MainOldViewController.m 中的 home2 和 noti2 菜单项
- 更新项目文件名、Bundle ID 和显示名称等项目配置
- 在 README.md 中添加通讯录权限维护说明和图标隐藏说明
- 更新 Xcode scheme 配置中的应用名称
This commit is contained in:
JiaJun
2026-07-30 17:22:20 +08:00
parent 5b116ab2eb
commit e3dfd93fad
14 changed files with 126 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "app_logo.png",
"filename" : "logo.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 541 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "app_logo.png",
"filename" : "logo.png",
"idiom" : "universal",
"scale" : "1x"
},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 541 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -3,17 +3,17 @@
<plist version="1.0">
<dict>
<key>API_KEY</key>
<string>AIzaSyAf2aoBSP5qZE6A4XVkCTGL_LayRqAnhCY</string>
<string>AIzaSyDaNgTnrrFkK5b9i3DyIu2p-M1E2Vewlz8</string>
<key>GCM_SENDER_ID</key>
<string>541726336017</string>
<string>324671180568</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>noti.pantas3342</string>
<string>noti.jpot9</string>
<key>PROJECT_ID</key>
<string>pantas3342</string>
<string>jpot9-d02d7</string>
<key>STORAGE_BUCKET</key>
<string>pantas3342.firebasestorage.app</string>
<string>jpot9-d02d7.firebasestorage.app</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
@@ -25,6 +25,6 @@
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:541726336017:ios:4df0bdf58876ea8e7b7db0</string>
<string>1:324671180568:ios:60ef228c6713b81230986d</string>
</dict>
</plist>

View File

@@ -228,7 +228,7 @@
#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
#define NowUserId @"142"
#define NowUserId @"309"
#endif /* MacroDefine_h */

View File

@@ -92,13 +92,13 @@
// height = 60;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuHomeType]];
//
height = height + 60;
LinkConfig *config = [[LinkConfig alloc] init];
config.isGoBack = YES;
config.icon = @"home2";
config.name = @"HOME2";
config.linkUrl = appDelegate.mainURLString;
[menuArray addObject:config];
// height = height + 60;
// LinkConfig *config = [[LinkConfig alloc] init];
// config.isGoBack = YES;
// config.icon = @"home2";
// config.name = @"HOME2";
// config.linkUrl = appDelegate.mainURLString;
// [menuArray addObject:config];
//
// if (!ISNULLSTR(appDelegate.data.linkConfig)) {
@@ -130,8 +130,8 @@
// height = height + 70;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuRefreshType]];
//
height = height + 70;
[menuArray addObject:[NSNumber numberWithInteger:DSWebMenuNotiType]];
// height = height + 70;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuNotiType]];
// }
self.webMenuCollectionView.shareArray = menuArray;