일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- s4a
- 아두이노
- Spring Security
- 잡토이
- 강좌
- tomcat
- 스크래치
- 리브레캐드
- 라즈베리파이
- 코딩
- MSSQL
- jobtoy
- 유니티
- jsp
- 안드로이드
- librecad
- Unity
- 톰캣
- oracle
- 설정
- 운정
- 예제
- 시작하기
- html5
- 설치
- 파주
- Android
- 오라클
- 잡토이 메이킹 코딩 학원
- mysql
Archives
- Today
- Total
랩제이
HttpURLConnection 연결 오류 본문
AndroidManifest.xml 의 application에 android:usesCleartextTraffic="true" 추가함
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication"
android:usesCleartextTraffic="true"
>
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
'programming > android' 카테고리의 다른 글
activity_main 화면 디자인1 (0) | 2021.10.09 |
---|---|
[android] 안드로이드 스튜디오 AVD 한글 깨짐 (0) | 2017.10.24 |
[android studio] 한글 깨짐에 따른 폰트 설정 (0) | 2017.10.17 |
[android studio] 오류 : The SDK platform-tools version(25.0.6) is too old to check APIs compiled with API 26 (0) | 2017.10.17 |
[android] 디컴파일 하기 (0) | 2015.03.18 |