duplicate registration for activity “androidstutio”

后端 未结 1 2116
耶瑟儿~
耶瑟儿~ 2021-01-29 10:10





        
相关标签:
1条回答
  • 2021-01-29 10:41

    As the error says, you have two activities with the same name.
    Remove one of them:

    <activity android:name=".confirmActivity" />  
    
    <activity
        android:name=".confirmActivity"
    
        android:label="@string/title_activity_confrim"
        android:theme="@style/AppTheme.NoActionBar"></activity>
    
    0 讨论(0)
提交回复
热议问题