안드로이드 OS 9 Pie부터는 HTTP://로 된 주소가 보안때문에 막혔습니다.
AndroidManifest.xml 에서
android:usesCleartextTraffic="true"
추가
AndroidManifest.xml 전체소스
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/Theme.WebView">
<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>
'Android' 카테고리의 다른 글
안드로이드 웹뷰와 웹간 스크립트 호출(Bridge) (0) | 2021.12.16 |
---|---|
안드로이드 화면 이동/전환 (0) | 2021.12.15 |
안드로이드 인텐트(Intent) (0) | 2021.12.15 |
안드로이드 웹뷰 (webView) (0) | 2021.12.15 |
License for package Android SDK Tools not accepted. (0) | 2021.12.07 |