2016-12-23 4 views
0

アンドロイドスタジオ2.2.3に問題があります 試してみると私のsimpleプロジェクト、hello world appを実行するには、このエラーを無視してください。 the first probleminstallPackageLI:/data/app/vmdl357092003.tmp/base.apk(バイナリXMLファイルライン#18):<activity>は有効なandroid:nameを持っていません

私はokをクリックしました。

私は解決策

+0

何という新たな問題

the second problem

を取得するには、ここにあなたのXMLコードを追加します –

+0

あなたのマニフェスト –

+0

あなたのAndroidManifest.xmlを投稿することができますのエラーを持っているように見えますか? AndroidManifest xmlであるの –

答えて

0
that's the code of AndroidManifest xml :  








<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.user.myapplication"> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <activity android:name=".MainActivity"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 
関連する問題