Skip to content

Commit c9e7d9f

Browse files
taekoongNeibce
andauthored
feat: 스트레칭 화면 구현 (#165)
* feat: 타가족 걸음수 랭킹 화면 * feat: 타가족 걸음수 랭킹 화면 연결 * feat: 타가족 걸음수 랭킹 화면 연결 * feat: 타가족 걸음수 랭킹 화면 연결 * feat: 도넛 차트 api 연결 * feat: 서비스 파일 pr * feat: 운동 스트레칭 화면 구현 * fix: 스트레칭 관련 오류 수정 * feat: 운동 스트레칭 화면 구현 --------- Co-authored-by: Junyoung Yang <y@jun0.dev>
1 parent ddd0401 commit c9e7d9f

File tree

5 files changed

+511
-217
lines changed

5 files changed

+511
-217
lines changed

frontend/ongi/android/app/src/main/AndroidManifest.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22

3+
<uses-permission android:name="android.permission.INTERNET" />
34
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
45
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
56

@@ -51,5 +52,14 @@
5152
<action android:name="android.intent.action.PROCESS_TEXT"/>
5253
<data android:mimeType="text/plain"/>
5354
</intent>
55+
<!-- url_launcher를 위한 쿼리 설정 -->
56+
<intent>
57+
<action android:name="android.intent.action.VIEW" />
58+
<data android:scheme="https" />
59+
</intent>
60+
<intent>
61+
<action android:name="android.intent.action.VIEW" />
62+
<data android:scheme="http" />
63+
</intent>
5464
</queries>
5565
</manifest>

frontend/ongi/ios/Runner/Info.plist

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,23 @@
7070
<string>This app needs access to location when in the background.</string>
7171
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
7272
<string>This app needs access to location when in the background.</string>
73+
<key>NSAppTransportSecurity</key>
74+
<dict>
75+
<key>NSAllowsArbitraryLoads</key>
76+
<true/>
77+
</dict>
78+
<!-- url_launcher를 위한 URL 스킴 설정 -->
79+
<key>LSApplicationQueriesSchemes</key>
80+
<array>
81+
<string>https</string>
82+
<string>http</string>
83+
<string>youtube</string>
84+
<string>youtu.be</string>
85+
</array>
86+
<!-- 네트워크 관련 설정 (경고 방지용) -->
87+
<key>NSBonjourServices</key>
88+
<array></array>
89+
<key>NSLocalNetworkUsageDescription</key>
90+
<string>This app does not use local network.</string>
7391
</dict>
7492
</plist>

0 commit comments

Comments
 (0)