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:
@@ -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 |
BIN
ShenQi/Assets.xcassets/AppIcon.appiconset/logo.png
Normal file
BIN
ShenQi/Assets.xcassets/AppIcon.appiconset/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "app_logo.png",
|
||||
"filename" : "logo.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
|
||||
BIN
ShenQi/Assets.xcassets/appLogo.imageset/app_logo.png
vendored
BIN
ShenQi/Assets.xcassets/appLogo.imageset/app_logo.png
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 541 KiB |
BIN
ShenQi/Assets.xcassets/appLogo.imageset/logo.png
vendored
Normal file
BIN
ShenQi/Assets.xcassets/appLogo.imageset/logo.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
@@ -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>
|
||||
@@ -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 */
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user