728x90
반응형
웹 연결 안될때
manifest 에 추가
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/AppTheme"
android:usesCleartextTraffic="true">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
728x90
반응형
'Android' 카테고리의 다른 글
Android 리스트뷰 키보드 올라올때 화면 (0) | 2019.10.15 |
---|---|
Android 그라데이션 (2) | 2019.10.02 |
Android 현재 시간 구하기 (0) | 2019.09.25 |
Android 클릭 효과 넣기 (0) | 2019.09.04 |
Android 이미지 다운로드 (0) | 2019.09.04 |