테스트 사이트 - 개발 중인 베타 버전입니다

안드로이드 웹뷰 만드는데 잘되던게 갑자기 안됩니다... 채택완료

돌돔79 7년 전 조회 2,638

안드로이드 스튜디오를 지우고 재설치후 sir에 올려있는 웹뷰 소스를 불러오는데 에러가 납니다.

 

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.hybrid.sample"> <uses-permission android:name="android.permission.INTERNET" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/Theme.AppCompat.NoActionBar" > <activity android:name=".SplashActivity" android:configChanges="orientation|keyboardHidden" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /> <activity android:name=".MainActivity" android:screenOrientation="portrait" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>

 

android들어가있는모든부분이 빨간색으로 되는데 왜 그런걸까요 ㅜㅜ

앞전에는 잘됬습니다.

이것땜에 수십번지웠다 설치했다 하는데 안됩니다 ㅜㅜ

도와주세요~

댓글을 작성하려면 로그인이 필요합니다.

답변 1개

<manifestxmlns

를 아래같이 띄워보세요

<manifest xmlns

로그인 후 평가할 수 있습니다

답변에 대한 댓글 3개

돌돔79
7년 전
그건 띄워있습니다 ㅜㅜ
돌돔79
7년 전
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hybrid.sample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar" >

<activity
android:name="com.hybrid.yongajae.SplashActivity"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar" />

<activity
android:name="com.hybrid.yongajae.MainActivity"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
돌돔79
7년 전
Could not open settings remapped class cache for 9khs0qj4gyiyra4guh5oezmza
이런메세지가 뜨는데 ㅜㅜ 무슨말일까요??

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인