Reputation: 1
I'm working on an Android app and am encountering a series of resource linking errors. Specifically, I'm getting the following error:
AAPT:
error: resource mipmap/ic_launcher (aka com.example.sparshows:mipmap/ic_launcher) not found.
I’ve checked my AndroidManifest.xml, and it's referencing @mipmap/ic_launcher. However, the build is failing because it can't locate the ic_launcher icon and other resources, such as ic_launcher_round, app_name, activity_name, style/Theme.App.SplashScreen, and cdv_core_file_provider_paths.
Here are the errors I’m seeing:
AAPT: error: resource string/app_name (aka com.example.sparshows:string/app_name) not found. AAPT: error: resource style/Theme.App.SplashScreen (aka com.example.sparshows:style/Theme.App.SplashScreen) not found. AAPT: error: resource xml/cdv_core_file_provider_paths (aka com.example.sparshows:xml/cdv_core_file_provider_paths) not found.
What I've Tried So Far: Checked res/mipmap folders for ic_launcher and ic_launcher_round icons, but they seem to be missing. Added the missing icons manually in the mipmap directories. Checked my strings.xml and styles.xml files for app_name, activity_name, and Theme.App.SplashScreen, but they are still giving errors. Tried cleaning and rebuilding the project in Android Studio. Used Image Asset Studio to generate icons and checked the configuration. What I Need Help With: How do I resolve these missing resource issues? What steps am I missing in linking the resources correctly? Should I be using any specific formats for the icons or strings?
Upvotes: 0
Views: 57