My debug AndroidManifest.xml is giving me “cannot resolve symbol errors”

后端 未结 4 1196
滥情空心
滥情空心 2021-02-02 06:28


        
相关标签:
4条回答
  • 2021-02-02 06:41

    There is no issue with your Manifest code this will work fine

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              package="ac.tec.oop.ahorcado.android"
              android:versionCode="1" 
              android:versionName="1.0">
    
        <uses-sdk android:minSdkVersion="7" 
                  android:targetSdkVersion="16"/>
    
        <application android:allowBackup="true" 
                        android:icon="@drawable/ic_launcher" 
                        android:label="@string/app_name" 
                        android:theme="@style/AppTheme">
            <activity android:label="@string/app_name"
                      android:name="ac.tec.oop.ahorcado.android.MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN"/>
    
                    <category android:name="android.intent.category.LAUNCHER"/>
                </intent-filter>
            </activity>
        </application>
    
    </manifest>
    

    Some times Eclipse shows unexpected behavior you can cut and paste again the code to Manifest or just restart the IDE it will recompile and remove the error

    0 讨论(0)
  • 2021-02-02 06:42

    try to add debuggable to true in application tag in manifest

    <application android:allowBackup="true" 
                    android:debuggable="true"
                    android:icon="@drawable/ic_launcher" 
                    android:label="@string/app_name" 
                    android:theme="@style/AppTheme">
    

    I hope it,s work for you.

    0 讨论(0)
  • 2021-02-02 06:50

    I tried all mentioned Answer but non of above worked for me
    The only Solution worked for me was
    Go to Gradle(App)> in the repositories {}> make sure that mavenCentral() is on top>and now remove compile 'which you recently added>sync > Now add again compile "again add the dependencies" > and final sync again
    This worked for me

    0 讨论(0)
  • 2021-02-02 06:53

    Go to File > Invalidate Caches / Restart and Invalidate and Restart.

    This cleared the errors for me.

    0 讨论(0)
提交回复
热议问题