"ERROR No resource identifier found for attribute 'onClick' in package 'android'" - Android Software Development

"ERROR No resource identifier found for attribute 'onClick' in package 'android'"
I am following this guide: vogella.de/articles/AndroidNetworking/article.htmlbut I can't get it to work. I get an error saying:
"ERROR No resource identifier found for attribute 'onClick' in package 'android'" in the main.xml file. I guess that it doesn't recognize the attribute onClick. Can anyone help me?

i usually use onclicklistener to activate this feature in java code instead of onclick handle in main.xml...

onClick attribute is not defined for API 3 and less. (Android <= 1.5)
It works since API 4 (Android 1.6)

Proguard will rename the onClick method and break it unless you specifically tell it not to, or you can just turn off proguard which is easier.

Related

Problems with NDK... zlib

Hello XDA-people again (specifically the developers this time)
i have been recently trying to compile a game (www.teeworlds.com) for android.
it is sdl-based, so i used the NDK and this port of SDL for android:
http://github.com/pelya/commandergenius/archives/sdl_android
things have been going relatively good so far, i think with GLES 2.0 i will be able to compile it so it will finally be working however, i am having issues with zlib when compiling:
Code:
[email protected]:/home/reverse/and/android-ndk-r3# make APP=teeworlds
Android NDK: Building for application 'teeworlds'
Compile thumb : teeworlds <= apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c: In function 'datafile_get_data_impl':
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:244: error: 'Bytef' undeclared (first use in this function)
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:244: error: (Each undeclared identifier is reported only once
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:244: error: for each function it appears in.)
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:244: error: expected expression before ')' token
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c: In function 'datafile_add_data':
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:462: error: 'Bytef' undeclared (first use in this function)
apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:462: error: expected expression before ')' token
i have been modifying the headers a little, which got some "undefined method" errors removed. here are the original error messages:
Code:
SharedLibrary : libteeworlds.so
out/apps/teeworlds/armeabi/objs/teeworlds/engine/e_datafile.o: In function `datafile_crc':
/home/reverse/and/android-ndk-r3/apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:671: undefined reference to `crc32'
out/apps/teeworlds/armeabi/objs/teeworlds/engine/e_datafile.o: In function `datafile_add_data':
/home/reverse/and/android-ndk-r3/apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:458: undefined reference to `compressBound'
/home/reverse/and/android-ndk-r3/apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:461: undefined reference to `compress'
out/apps/teeworlds/armeabi/objs/teeworlds/engine/e_datafile.o: In function `datafile_get_data_impl':
/home/reverse/and/android-ndk-r3/apps/teeworlds/project/jni/teeworlds/engine/e_datafile.c:243: undefined reference to `uncompress'
collect2: ld returned 1 exit status
any ideas on how to get this fixed?
Hi,
Try to replace in engine/e_datafile.c :
#include <zlib.h>
by
#include "external/zlib/zlib.h"
It looks like that you are using an other zlib while one is included in the Teeworlds sources. If you can say to NDK that he shouldn't use an external zlib.
I've made a barely playable version, just do "git pull" on the libSDL repo, change symlink project/jni/application/src to "teeworlds", run "ChangeAppSettings.sh -a" and compile it.
(Posting links is disabled for new users? This forum is useless).
Hey there Pelya, glad to see y on xda.
To op, listen to Pelya, he knows what he's talking about.

[Q] No Resource Identifier Found errors during CM7 build

Hello, I'm trying to build CM7 from source, and I managed to get through most of it until it starts to compile the Apps in "packages/apps."
The errors I'm getting are:
Code:
target R.java/Manifest.java: ADWLauncher (out/target/common/obj/APPS/ADWLauncher_intermediates/src/R.stamp)
Install: out/host/linux-x86/bin/dx
target R.java/Manifest.java: AccountAndSyncSettings (out/target/common/obj/APPS/AccountAndSyncSettings_intermediates/src/R.stamp)
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'minHeight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'gravity' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'paddingLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: No resource identifier found for attribute 'paddingRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:25: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:25: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:25: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:25: error: No resource identifier found for attribute 'layout_marginRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:25: error: No resource identifier found for attribute 'layout_gravity' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_marginRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_marginTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_marginBottom' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:32: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: No resource identifier found for attribute 'singleLine' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: No resource identifier found for attribute 'textAppearance' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'layout_below' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'layout_alignLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'textAppearance' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: No resource identifier found for attribute 'maxLines' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'layout_marginLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'layout_marginRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:56: error: No resource identifier found for attribute 'layout_gravity' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: Error: No resource found that matches the given name (at 'minHeight' with value '?android:attr/listPreferredItemHeight').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:17: error: Error: No resource found that matches the given name (at 'paddingRight' with value '?android:attr/scrollbarSize').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: Error: No resource found that matches the given name (at 'id' with value '@+android:id/title').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:40: error: Error: No resource found that matches the given name (at 'textAppearance' with value '?android:attr/textAppearanceMedium').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: Error: No resource found that matches the given name (at 'id' with value '@+android:id/summary').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: Error: No resource found that matches the given name (at 'layout_below' with value '@android:id/title').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: Error: No resource found that matches the given name (at 'layout_alignLeft' with value '@android:id/title').
packages/apps/AccountsAndSyncSettings/res/layout/account_preference.xml:46: error: Error: No resource found that matches the given name (at 'textAppearance' with value '?android:attr/textAppearanceSmall').
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:20: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:20: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:20: error: No resource identifier found for attribute 'orientation' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:25: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:25: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'drawSelectorOnTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: No resource identifier found for attribute 'scrollbarAlwaysDrawVerticalTrack' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:37: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:37: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:37: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:37: error: No resource identifier found for attribute 'text' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: No resource identifier found for attribute 'orientation' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: No resource identifier found for attribute 'background' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:48: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:48: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:48: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'layout_marginTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:53: error: No resource identifier found for attribute 'text' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:60: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:60: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:60: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: No resource identifier found for attribute 'background' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: No resource identifier found for attribute 'visibility' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'layout_margin' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'layout_alignParentRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'drawableRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'drawablePadding' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:72: error: No resource identifier found for attribute 'text' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:29: error: Error: No resource found that matches the given name (at 'id' with value '@android:id/list').
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:42: error: Error: No resource found that matches the given name (at 'background' with value '@android:drawable/bottom_bar').
packages/apps/AccountsAndSyncSettings/res/layout/account_sync_screen.xml:66: error: Error: No resource found that matches the given name (at 'background' with value '@android:drawable/bottom_bar').
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:20: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:20: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:20: error: No resource identifier found for attribute 'orientation' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'drawSelectorOnTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: No resource identifier found for attribute 'scrollbarAlwaysDrawVerticalTrack' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/add_account_screen.xml:25: error: Error: No resource found that matches the given name (at 'id' with value '@android:id/list').
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:20: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:20: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:20: error: No resource identifier found for attribute 'orientation' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'drawSelectorOnTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: No resource identifier found for attribute 'scrollbarAlwaysDrawVerticalTrack' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:33: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:33: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:33: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:33: error: No resource identifier found for attribute 'text' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:38: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:38: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:38: error: No resource identifier found for attribute 'orientation' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:38: error: No resource identifier found for attribute 'background' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:44: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:44: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:44: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'layout_marginTop' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:49: error: No resource identifier found for attribute 'text' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:56: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:56: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:56: error: No resource identifier found for attribute 'layout_weight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:25: error: Error: No resource found that matches the given name (at 'id' with value '@android:id/list').
packages/apps/AccountsAndSyncSettings/res/layout/manage_accounts_screen.xml:38: error: Error: No resource found that matches the given name (at 'background' with value '@android:drawable/bottom_bar').
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:19: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:19: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:19: error: No resource identifier found for attribute 'gravity' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'src' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'layout_marginLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'layout_marginBottom' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:24: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'src' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'layout_marginLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'layout_marginBottom' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:32: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'src' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'layout_marginLeft' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'layout_marginBottom' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:40: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:48: error: No resource identifier found for attribute 'id' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:48: error: No resource identifier found for attribute 'layout_width' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:48: error: No resource identifier found for attribute 'layout_height' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:48: error: No resource identifier found for attribute 'layout_marginRight' in package 'android'
packages/apps/AccountsAndSyncSettings/res/layout/preference_widget_sync_toggle.xml:48: error: No resource identifier found for attribute 'layout_gravity' in package 'android'
...........
Sorry about the long log, just to get my point across. So where am I going wrong? Everything went perfectly fine until this step. I don't even understand what the first error means:
Code:
Adding multiple application package resources; only one is allowed.
Use -x to create extended resources.
Is this causing the rest of the errors? I've tried Googling the hell out of it, but I'm still stuck.
What is going on?

[Windows][UTILITY][TOOL] APK Multi-Tool

I am currently working on a major update to the apk manager application as well and changing the name to APK Multi-Tool with some new added features and also to fix some issues with some code errors.
I am also changing a lot of the features as well since a lot of the code has been outdated for a while.
I have updated all the files and modified Apk manager's Scripts to fix many user reported bugs from Daneshm90 apk manager which he had written a simple script to ease the process of editing apks. Got a lot of downloads so thought its in demand
Whether you're doing basic image editing or editing the smali or xml files, on average u have to use (Brut.all or JF's smali/baksmali) awesome tool to extract the apk, edit it, then sign the apk and then adb push/install it. This process is quite tiresome if you are testing a method that needs fine tweaking.
This script should make the process a LOT smoother.
Theres an option of compiling/signing/installing all in one step
Thanks:
Goes to Daneshm90 the Original Writer of APK Manager
Goes to Brut.all for his awesome tool.
Goes to JF for ofcourse, smali/baksmali
Features:
- Added framework dependent decompiling (For non propietary rom apks). (Option 10). Checks whether the dependee apk u selected is correct.
- Allows multiple projects to be modified, switch to and from.
- Allows to modify system apk's using apktool but ensures maximum compatibility in terms of signature / manifest.xml
- Batch optimize apk (Zipalign,optipng,or both)
- Batch Ogg optimization
- Batch install apk from script (option 19)
- Batch Theme Image Transfer TOOL
- Batch Theme optipng TOOL
- Batch Theme Zipalign APK TOOL
- Compression level selector (monitor status above menu)
- Error detection. Checks if error occurred anytime u perform a task, and reports it
- Extract, Zip apk's.
- Incorporates brut.all's apktool
- Improved syntax of questions/answers
- Logging on/off has been removed. Instead a log.txt is created which logs the activities of the script organized using time/date headers
- Optimize pngs (ignores .9.pngs)
- Pull apk from phone into modding environment.
- Push to specific location on phone
- Quick sign an apk (Batch mode supported)
- Read log (Option 24)
- Sign apks
- Supports batch installation, so if u drag multiple apks into the script (not while its running) it will install them all for u. U can ofcourse drag a single apk as well
- User can change the max java heap size (only use if certain large apks get stuck when decompiling/compiling apks) (Option 19)
- U can now set this script as ur default application for apks. When u do, if u double click any apk it will install it for u.
- Zipalign apks
- Much Much More
Instructions:
- Place apk in appropriate folder (Any filename will work, if running for first time folders will not be there, you must run and then the folders will be created)
- Run script
- Minimize the script
- Edit files inside the project folder
- Maximize the script
Requirements:
Java 1.6
Android SDK
FAQ
Resulting apk file is much smaller than original! Is there something missing?
First: compression of resources.arsc file. Sometimes this file is compressed in original apk, sometimes not and apktool always compress it. Second: lack of META-INF dir. Apktool builds unsigned apks, so they lack signatures stored in this dir. Third: apktool uses newest Android SDK, so it could optimize files better, especially if original app is old. So: unpack both original and resulting apk, remove META-INF from original and then compare sizes. If they're still much different, then you could report on XDA or somewhere.
There is no META-INF dir in resulting apk. Is this ok?
Yes. META-INF contains apk signatures mostly and after modifying apk in no longer signed, so there are no signatures in it. You have to sign resulting apk and then META-INF dir will be created.
What do you call "magic apks"?
Sometimes there are some apks which (for my current knowledge) are invalid, broken, theoretically they shouldn't exist. There may be many reasons of their existence: my lack of understanding of Android resources; some non-public, maybe future SDK tools or custom modifications of these; manual hacking of binaries, etc. Usually I can't do anything about it, but you could at least try to replace broken parts by something valid. Actually it's quite likely that they aren't even used, because if they would, then application would crash.
Got problems ?
1. Make sure your path has no spaces
2. Your filename has no wierd characters
3. Java/adb are in your path
4. It's not a proprietary rom's apk (aka Sense,Motorola,Samsung) (If u are, then use option 11 and drag the required framework, eg com.htc.resources, twframework-res...etc)
5. It's not a themed apk (if it is, expect .9 png errors, use as close to stock as possible)
6. Look at the log to know whats happening
7. If all else fails, post as much info as possible and we will try to assist you.
TO DO LIST
Add new feature to Randomly Generate a new Key File for signing the apk files after modifying and recompiling of the apk files this will also allow of uploading to the android market as this added feature will allow you to sign apk files that you may of compiled without signing beforehand.
Modify the Signapk script to be compatible with the Randomly Generation feature in the works
and a few other added features are in the works as I am redesigning the application and rewriting a lot of the code to fix issues as well as some of the new features have broken parts as some features have been moved and broken some command line prompts.
Installing APK Multi-Tool Itself
Run the installer and make sure it is pointed to the root of hard drive
Example
C:\APKMultiTools\
Downloads:
http://apk-multi-tool.github.io/APK-Multi-Tool/ for all downloads and updates
Please check back daily or weekly as this project is under active Development and I am releasing Alpha releases on the website for Testing and bug reports.
Latest test build http://hugefiles.net/79bvb14x2f8p
Mailing List:
Google Group Email mailing List
If you like this and wish to wish to send cash my way Donations Are Welcome
Optipng'ing is not working for me. After extraction, Optipng will be run and will do nothing because it says it cannot find the folder.
CUBENSIS said:
Optipng'ing is not working for me. After extraction, Optipng will be run and will do nothing because it says it cannot find the folder.
Click to expand...
Click to collapse
Which optiping are you using the batch theme opt or the original method
Sent from my DROID using xda premium
Option 18, batch optimize.
Sent from my Droid Incredible HD using XDA App
Have you tried using it on the apk itself instead of extracting
Sent from my DROID using xda premium
That's what I did. What i meant to say is I choose option 18, the apk gets extracted, optipng says it can't find the files/directory that was fed to it, and the apk is re-zipped w/o any .png changes. See attached screen grab.
Try placing the file in the transfered folder and running opt 16
Sent from my DROID using xda premium
Seems to be a very helpfull tool.
But GO**AMN, on the website, change the color of the titles from red to something else. Hurts my eyes reading haha.
raziel23x said:
Try placing the file in the transfered folder and running opt 16
Click to expand...
Click to collapse
i had to edit the script because it was calling for roptipng.exe. after chaging it oo optipng.exe, here's the result
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) Client VM (build 20.1-b02, mixed mode, sharing)
A subdirectory or file C:\Apk_Multi-Tool\optimized already exists.
A subdirectory or file C:\Apk_Multi-Tool\untouched already exists.
Could Not Find C:\Apk_Multi-Tool\0
Click to expand...
Click to collapse
Regarding option 18, after learning a bit about batch programming and looking through the file...it seems the problem is quite simple. Optipng does not support ** for recursion, and as far as I can tell ** means nothing @ Windows command line. Therefore it will fail since the command in the batch file is
Code:
optipng -o99 "apkopt_temp_%~n1\**\*.png"
Thank you
thank you for continuing updates of this application
Lol thank I completly forgotten to update the script
Sent from my DROID using xda premium
Code:
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutExce
ption: could not exec command: [aapt, p, -F, C:\Users\JOSHDE~1\AppData\Local\Tem
p\APKTOOL8354808961139312827.tmp, -I, C:\Users\Josh Desktop\apktool\framework\1.
apk, -I, C:\Users\Josh Desktop\apktool\framework\2.apk, -S, C:\Apk_Multi-Tool\ot
her\..\projects\Mms.apk\res, -M, C:\Apk_Multi-Tool\other\..\projects\Mms.apk\And
roidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:174)
at brut.apktool.Main.main(Main.java:59)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\JOSHDE~1\AppData\Local\Temp\APKTOOL8354808961139312827.tmp, -I, C:\Users\Jo
sh Desktop\apktool\framework\1.apk, -I, C:\Users\Josh Desktop\apktool\framework\
2.apk, -S, C:\Apk_Multi-Tool\other\..\projects\Mms.apk\res, -M, C:\Apk_Multi-Too
l\other\..\projects\Mms.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
The system cannot find the file specified.
Press any key to continue . . .
This is the error i get when trying to recompile Mms.apk from a sense rom, yes i am using the com.htc.resources.apk with it. Can anyone help?
Why does the Batch Theme Image Transfer TOOL option not do anything?
I enter 15, hit enter and some text blinks on the screen and thats it...?
MarylandCookie said:
Why does the Batch Theme Image Transfer TOOL option not do anything?
I enter 15, hit enter and some text blinks on the screen and thats it...?
Click to expand...
Click to collapse
Did you read the Docs included?
Thanks for the new version, it's pure awesome !!!
If anyone is interested in giving a feature request feel free to post them asi want this tool to be a all in one needed application as well as if you want. To see some features have a stand alone veriarent(sp)
Sent from my DROID using xda premium
I went to Java 1.6 and now I am getting a log file this is the current error. Anyone have any ideas?
Code:
--------------------------------------------------------------------------
|Mon 10/31/2011 -- 13:03:26.95|
--------------------------------------------------------------------------
java version "1.6.0_29"
Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
Java HotSpot(TM) 64-Bit Server VM (build 20.4-b02, mixed mode)
Could Not Find C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\place-apk-here-for-modding\../place-apk-here-for-modding/signedfoursquare.apk
Could Not Find C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\place-apk-here-for-modding\../place-apk-here-for-modding/unsignedfoursquare.apk
I: Baksmaling...
I: Loading resource table...
I: Loaded.
I: Loading resource table from file: C:\Users\Will\apktool\framework\1.apk
I: Loaded.
I: Decoding file-resources...
I: Decoding values*/* XMLs...
I: Done.
I: Copying assets and libs...
I: Checking whether sources has changed...
I: Smaling...
I: Checking whether resources has changed...
I: Building resources...
ERROR: 9-patch image C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\drawable\venues_widget_background.9.png malformed.
Frame pixels must be either solid or transparent (not intermediate alphas).
Found at pixel #128 along top edge.
ERROR: Failure processing PNG image C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\drawable\venues_widget_background.9.png
ERROR: 9-patch image C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\drawable\venues_widget_cell.9.png malformed.
Frame pixels must be either solid or transparent (not intermediate alphas).
Found at pixel #57 along top edge.
ERROR: Failure processing PNG image C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\drawable\venues_widget_cell.9.png
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_activity.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_activity.xml:8: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/dark_grey_toolbar').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_header.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_invite.xml:8: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_button_invite').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:5: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:5: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/blank_boy').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:10: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_source_phone').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:11: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_source_facebook').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:12: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_source_twitter').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_list_item_request.xml:16: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_button_request').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_option.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_option_addressbook_on').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_option.xml:5: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_option_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_option.xml:11: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_option_bg_top_on').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_option.xml:12: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_option_bg_arrow_noside').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_option.xml:13: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_option_search_right_border').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_search_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_search_activity.xml:6: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_share_facebook_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_share_facebook_activity.xml:6: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_share_option_facebook').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_share_facebook_activity.xml:7: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/add_friends_option_search_right_border').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_share_facebook_activity.xml:8: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/add_friends_option_bg_bottom').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_friends_share_facebook_activity.xml:18: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/dark_grey_toolbar').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_tip_activity.xml:14: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/addphoto_checkin').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity.xml:14: error: Error: No resource found that matches the given name (at 'drawableRight' with value '@drawable/arrow_light_grey').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity.xml:16: error: Error: No resource found that matches the given name (at 'drawableRight' with value '@drawable/arrow_light_grey').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity.xml:18: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity.xml:23: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/login_button_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity_address.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_activity_address.xml:22: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/login_button_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_map_activity.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/header_blue').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_map_activity.xml:6: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/explore_header_button_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_map_activity.xml:7: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/explore_icon_mixer').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\add_venue_map_overlay_title.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/map_callout_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_details_activity.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_details_activity.xml:7: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/badge_detail_loading').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_details_activity.xml:9: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/badge_details_activity_divider').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_grid_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/default_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/default_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_set_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/default_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_sets_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_sets_activity.xml:7: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\badge_sets_list_dialog.xml:7: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/dlg_transparent_black_rounded').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\category_picker_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/category_none').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\category_picker_list_item.xml:6: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/arrow_grey').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\category_picker_page.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/border_round_rect_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\category_picker_page.xml:5: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/category_none').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_activity.xml:9: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/new_places_found_btn_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_activity.xml:10: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/new_places_found_refresh').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:8: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/call_empty_comment').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:13: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_detail_toolbar_btn_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:14: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/btn_add_photo').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:17: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_detail_toolbar_btn_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_activity.xml:18: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/btn_add_comment').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_list_item.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/blank_boy').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_details_list_item.xml:10: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_list_item.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/blank_boy').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_list_item.xml:10: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photocomment_checkin_button_single_selector').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_list_item.xml:11: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photos_inactive').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_list_item.xml:13: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/comments_inactive').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:11: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/addphoto_checkin').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:14: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_section_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:16: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/yes_toggle_on').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:17: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/no_toggle_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:19: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_section_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:21: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/yes_toggle_on').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:22: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/no_toggle_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:24: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_section_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:26: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/modal_fb_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_or_shout_gather_info_activity.xml:27: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/modal_twitter_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:7: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_message_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:9: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_blue').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:13: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_yellow').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:18: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/curve_arrow_green').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:20: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/calendar').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:24: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_blue').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:30: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/checkin_score_bg').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:33: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_blue').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:42: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_orange').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:46: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/arrow_banner_blue').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:50: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/tip_icon_user_orange').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity.xml:58: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/dark_grey_toolbar').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity_badge_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/checkin_result_badge').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity_badge_item.xml:5: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/default_off').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity_score_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/default_points_icon').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity_special_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/special_lock_locked').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_results_activity_special_item.xml:5: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/arrow_light_grey').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_simple_list_item.xml:4: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/photo_background').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\checkin_simple_list_item.xml:4: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/blank_boy').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\edu_new_checkin_button_dialog.xml:5: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/new_checkin_button_edu_dialog').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\empty_loading.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_activity.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_item_manual').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_header_search.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_header_background').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_header_search.xml:4: error: Error: No resource found that matches the given name (at 'drawableLeft' with value '@drawable/explore_search_icon').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_keyword_item.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/explore_keyword_button').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_keywords_scroller.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_header_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_list_divider.xml:2: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/listview_background_flat').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_list_divider.xml:5: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/explore_header_blue_left').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_list_divider.xml:6: error: Error: No resource found that matches the given name (at 'background' with value '@drawable/explore_header_blue_right').
C:\Users\Will\Downloads\Apk_Multi-Tool_Alpha_02\Apk_Multi-Tool\other\..\projects\foursquare.apk\res\layout\explore_list_divider.xml:9: error: Error: No resource found that matches the given name (at 'src' with value '@drawable/tip_list_item_corner_todo').
and it goes on and on and on like this
From that log there seems to be a issue with the 9.png files.
From what I see there is perhaps a error accuring with the basalmi blocks when decompiling I will look into what may be causing this and perhaps I may have a fix once I finish patching up my custom version of apktool.jar
Sent from my DROID using xda premium
raziel23x said:
From that log there seems to be a issue with the 9.png files.
From what I see there is perhaps a error accuring with the basalmi blocks when decompiling I will look into what may be causing this and perhaps I may have a fix once I finish patching up my custom version of apktool.jar
Sent from my DROID using xda premium
Click to expand...
Click to collapse
Maybe thisll help. It is step by step of what I did and/or didnt do. Maybe I am missing a step or doing something that I am not supposed to be doing. Thanks again for your help.
Error Messages

get error while compile OTA Updater from github

i want modified OTA Updater, when i compile, i get error
Code:
D:\file\APKmanager\other\..\projects\OTAUpdater-1.0.5.apk\AndroidManifest.xml:16: error: No resource identifier found for attribute 'hardwareAccelerated' in package 'android'
where is wrong? I did not change the android manifest. pplease answer

[Q] Error on compiling from source

Hi guys,
I'm trying to compile android 4.3 from AOSP. I've successfully compiled the roms like Rasbeanjelly or Martin_ro.
However when I'm trying to compile from source, it gives me the following errors:
packages/apps/Settings/res/values/strings.xml:4537: error: Error parsing XML: not well-formed (invalid token)
packages/apps/Settings/res/layout/intent_sender.xml:48: error: Error: No resource found that matches the given name (at 'text' with value '@string/intent_sender_data_label').
...... long list .....
packages/apps/Settings/res/xml/testing_wifi_settings.xml:29: error: Error: No resource found that matches the given name (at 'title' with value '@string/wifi_config_info').
packages/apps/Settings/res/xml/testing_wifi_settings.xml:37: error: Error: No resource found that matches the given name (at 'title' with value '@string/wifi_status_test').
make: *** [out/target/common/obj/APPS/Settings_intermediates/src/R.stamp] Error 1
make: *** Waiting for unfinished jobs....
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.​
What am I missing here? I've added the proprietary drivers from google, walked through all the steps from the devs website. Any help would be highly appreciated.
I'm on Ubuntu 13.04 btw

Categories

Resources