skip to Main Content

I deleted two activities in android studio and got this error, is there a solution?

Android resource linking failed
com.example.myapplication.app-mergeDebugResources-29:/layout-w936dp-v13/content_scrolling.xml:22: error: resource string/large_text (aka com.example.myapplication:string/large_text) not found.
com.example.myapplication.app-mergeDebugResources-29:/layout-w936dp-v13/viewholder2.xml:24: error: resource drawable/m__1_ (aka com.example.myapplication:drawable/m__1_) not found.
com.example.myapplication.app-mergeDebugResources-29:/layout-w1240dp-v13/content_scrolling.xml:17: error: resource string/large_text (aka com.example.myapplication:string/large_text) not found.
error: failed linking file resources.

I tried to return them but I couldn’t.

2

Answers


  1. Try with Invalidate Caches/Restart

    Login or Signup to reply.
    1. layout-w936dp-v13/content_scrolling.xml string/large_text is not
      present in string.xml file.

    2. layout-w936dp-v13/viewholder2.xml
      drawable/m__1_ image or icon not present in drawable folder.

    3. layout-w1240dp-v13/content_scrolling.xml string/large_text is not
      present in string.xml file.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search