Alright I used this same AndroidManifest.xml code several times to create 
my app and it worked just fine now I'm getting 5 different errors and I 
can't figure out why.

Here's the xml code:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
 package="technologx.technologx"
 android:installLocation="preferExternal"
 android:versionCode="1"
 android:versionName="1.0" >

 <uses-sdk
 android:minSdkVersion="16"
 android:targetSdkVersion="23" />

 <uses-permission android:name="android.permission.INTERNET" />
 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
 <uses-permission android:name="android.permission.CAMERA" />
 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

 <meta-data
 android:name="com.google.android.backup.api_key"
 android:value="AEdPqrEAAAAILe2cCZXNBhacXv2fkMpNM5F7FWTdWRUw-r1dFg" />

 <application
 android:allowBackup="true"
 android:icon="@mipmap/ic_launcher"
 android:label="@string/app_name"
 android:theme="@style/AppTheme" >
 <activity
 android:name="technologx.technologx.SplashScreen"
 android:label="@string/app_name" >
 <intent-filter>
 <action android:name="android.intent.action.MAIN" />

 <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>
 </activity>
 <activity
 android:name="technologx.technologx.MainActivity"
 android:label="@string/app_name" >
 <intent-filter>
 <action android:name="technologx.technologx.MAINACTIVITY" />

 <category android:name="android.intent.category.DEFAULT" />
 </intent-filter>
 </activity>
 </application>

</manifest>


Here's the errors I"m getting every time I try to create the apk:


Error:(27, 24) No resource found that matches the given name (at 'label' 
with value '@string/app_name').
Error:(28, 24) No resource found that matches the given name (at 'theme' 
with value '@style/AppTheme').

Error:(31, 28) No resource found that matches the given name (at 'label' 
with value '@string/app_name').

Error:(40, 28) No resource found that matches the given name (at 'label' 
with value '@string/app_name').

Error:Execution failed for task ':app:processReleaseResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.
internal.ExecException: Process 'command '/Users/knye1991/Library/Android/
sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1


Could someone possibly help me fix my issue please?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/c3c5012e-e7a8-4c5d-b178-102f006d5301%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to