2016-12-23 9 views
0

У меня проблема с android Studio 2.2.3 , когда я пытаюсь для запуска моего простого проекта, привет мир приложение, iget эта ошибка the first probleminstallPackageLI: /data/app/vmdl357092003.tmp/base.apk (в двоичной строке XML-файла # 18): <activity> не имеет действительного андроида: имя]

затем я нажал ОК.

я получаю новую проблему,

the second problem

что решение

+0

Добавьте свой XML-код здесь –

+0

выглядит как у вас есть ошибки в манифесте –

+0

Вы можете оставить 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>