When I try to build a signed Android Package (".apk") in Android Studio, it says:
Error:(14, 25) No resource found that matches the given name (at 'label' with value '@string/Midgar-Flower-Girl').
I also get this error message:
Error:Execution failed for task ':app:processReleaseResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/gregoryopera/Android/Sdk/build-tools/23.0.1/aapt'' finished with non-zero exit value 1
Here is my manifest (release/AndroidManifest.xml), as shown in Android Studio:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="gregoryopera.wmwatch.midgarflowergirl"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/Midgar-Flower-Girl" >
<meta-data
android:name="watchmaker.watch"
android:value="1" />
</application>
</manifest>
What is the issue, and how can I correct this issue?
Any help would be appreciated...