Browse Source

feat: display Apple sweepstakes disclaimer directly on dimension room list header for iOS

zbb 1 month ago
parent
commit
05512b3a1a
2 changed files with 10 additions and 1 deletions
  1. 1 1
      app.json
  2. 9 0
      app/dimension/room.tsx

+ 1 - 1
app.json

@@ -12,7 +12,7 @@
       "supportsTablet": false,
       "bundleIdentifier": "com.asios",
       "appleTeamId": "Y9ZVX3FRX6",
-      "buildNumber": "21",
+      "buildNumber": "22",
       "infoPlist": {
         "CFBundleDisplayName": "艾斯潮盒",
         "ITSAppUsesNonExemptEncryption": false,

+ 9 - 0
app/dimension/room.tsx

@@ -143,6 +143,15 @@ export default function RoomScreen() {
         >
           <View style={{ height: 90 + insets.top }} />
 
+          {/* iOS 特有免责声明 (应 Apple 审核要求显眼展示) */}
+          {Platform.OS === 'ios' && (
+             <View style={{ paddingHorizontal: 15, marginBottom: 15, alignItems: 'center' }}>
+               <Text style={{ color: 'rgba(255,255,255,0.4)', fontSize: 10, textAlign: 'center' }}>
+                 特别声明:本平台所有活动与苹果公司(Apple Inc.)无关
+               </Text>
+             </View>
+          )}
+
           {/* 搜索栏和功能按钮 */}
           <View style={styles.topSection}>
             <ImageBackground source={{ uri: Images.welfare.roomInputBg }} style={styles.searchBox} resizeMode="stretch">