ROMs y desarrollo Nexus 4 ROMs y desarrollo Nexus 4

Respuesta
 
Herramientas
  #441  
Viejo 15/12/13, 19:54:49
Array

[xs_avatar]
danyh danyh no está en línea
Baneado
· Votos compra/venta: (12)
 
Fecha de registro: jul 2010
Localización: bcn [terrassa]
Mensajes: 3,198
Modelo de smartphone: EX Galaxy SIII - Nexus 7- EX Nexus 4 - Nexus 5
Tu operador: Pepephone
Lo que ha dado de si este tema xdd
Responder Con Cita


  #442  
Viejo 15/12/13, 20:02:05
Array

[xs_avatar]
mbc596 mbc596 no está en línea
Usuario muy activo
 
Fecha de registro: dic 2012
Mensajes: 562
Modelo de smartphone: Nexus 4 16GB
Tu operador: Movistar
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Perdón por la ignorancia, pero no se donde ponerlo, ¿En vez de override pongo abstract? ¿O como?
La línea 446 es solo @override, seguido de
public void onTargetChange(View v, int whichHandle) {
}
Como pone en la página que te pasé: public abstract void onTargetChange(View v, int whichHandle) {
}
Responder Con Cita
  #443  
Viejo 15/12/13, 20:16:19
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por mbc596 Ver Mensaje
Como pone en la página que te pasé: public abstract void onTargetChange(View v, int whichHandle) {
}
Vale, ahora me dice esto:
Código:
6 warnings
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:63: com.android.settings.slim.LockscreenTargets is not abstract and does not override abstract method onTargetChange(android.view.View,int) in com.android.settings.slim.LockscreenTargets
public class LockscreenTargets extends Fragment implements
       ^
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:447: abstract methods cannot have a body
    public abstract void onTargetChange(View v, int whichHandle) {
                         ^
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:446: method does not override or implement a method from a supertype
    @Override
    ^
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.
3 errors
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates/classes-full-debug.jar] Error 41
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
__________________
Responder Con Cita
  #444  
Viejo 15/12/13, 20:29:01
Array

[xs_avatar]
mbc596 mbc596 no está en línea
Usuario muy activo
 
Fecha de registro: dic 2012
Mensajes: 562
Modelo de smartphone: Nexus 4 16GB
Tu operador: Movistar
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, ahora me dice esto:
Código:
6 warnings
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:63: com.android.settings.slim.LockscreenTargets is not abstract and does not override abstract method onTargetChange(android.view.View,int) in com.android.settings.slim.LockscreenTargets
public class LockscreenTargets extends Fragment implements
       ^
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:447: abstract methods cannot have a body
    public abstract void onTargetChange(View v, int whichHandle) {
                         ^
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:446: method does not override or implement a method from a supertype
    @Override
    ^
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.
3 errors
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates/classes-full-debug.jar] Error 41
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
Esto no ha solucionado el error, es más, ha causado más problemas. Borra el abstract que has puesto. Serà otra cosa.
Busca en google a ver que encuentras.


Prueba a borrar el @Override, pero no se
Responder Con Cita
  #445  
Viejo 15/12/13, 20:41:55
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
Vale, He probado borrando el @Override y también borrando las tres lineas esas, pero nada, ¿Alguien sabe que mas podría hacer?
__________________
Responder Con Cita
  #446  
Viejo 15/12/13, 21:58:20
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, He probado borrando el @Override y también borrando las tres lineas esas, pero nada, ¿Alguien sabe que mas podría hacer?
Viendo el error y tu git, lo mas facil es que lo dejes tal cual estaba en tu post :http://www.htcmania.com/showpost.php...&postcount=440 y le quites el @Override en la lina 446 a onTargetChange.
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #447  
Viejo 15/12/13, 22:00:12
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Viendo el error y tu git, lo mas facil es que lo dejes tal cual estaba en tu post :http://www.htcmania.com/showpost.php...&postcount=440 y le quites el @Override en la lina 446 a onTargetChange.
Como?? Quitando el @Override da mas errores aún, no se si te refieres a eso..
__________________
Responder Con Cita
  #448  
Viejo 15/12/13, 22:03:36
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Como?? Quitando el @Override da mas errores aún, no se si te refieres a eso..
Lo que te ha puesto mbc es una burrada. Te he dicho que lo dejes tal cual lo tenias y quites el @Override, el mismo error te lo esta diciendo:

Código:
method does not override or implement a method from a supertype
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #449  
Viejo 15/12/13, 22:10:26
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Lo que te ha puesto mbc es una burrada. Te he dicho que lo dejes tal cual lo tenias y quites el @Override, el mismo error te lo esta diciendo:

Código:
method does not override or implement a method from a supertype
Vale, tal cual lo tenía, le quito el @Override, y me dice esto:

Código:
target Package: TeleService (/home/javierd/android/rom/out/target/product/mako/obj/APPS/TeleService_intermediates/package.apk)
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: com.android.common.SharedPreferencesCompat accesses a method 'apply()' dynamically
      Maybe this is library method 'android.content.SharedPreferences$Editor { void apply(); }'
      Maybe this is library method 'android.media.MediaMetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteControlClient$MetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteController$MetadataEditor { void apply(); }'
Note: the configuration refers to the unknown class 'com.android.internal.widget.DialogTitle'
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java:317: mRecreating is already defined in com.android.systemui.statusbar.phone.PhoneStatusBar
    private boolean mRecreating = false;
                    ^
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.makedict.BinaryDictDecoderUtils { com.android.inputmethod.latin.makedict.FusionDictionary readDictionaryBinary(com.android.inputmethod.latin.makedict.DictDecoder,com.android.inputmethod.latin.makedict.FusionDictionary); }', but not the descriptor class 'com.android.inputmethod.latin.makedict.DictDecoder'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.DictionaryFactory { com.android.inputmethod.latin.Dictionary createDictionaryForTest(com.android.inputmethod.latin.AssetFileAddress[],boolean,java.util.Locale); }', but not the descriptor class 'com.android.inputmethod.latin.AssetFileAddress'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.Suggest { Suggest(com.android.inputmethod.latin.AssetFileAddress[],java.util.Locale); }', but not the descriptor class 'com.android.inputmethod.latin.AssetFileAddress'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.makedict.BinaryDictIOUtils { int getTerminalPosition(com.android.inputmethod.latin.makedict.DictDecoder,java.lang.String); }', but not the descriptor class 'com.android.inputmethod.latin.makedict.DictDecoder'
Note: there were 1 references to unknown classes.
      You should check your configuration for typos.
Note: there were 4 unkept descriptor classes in kept class members.
      You should consider explicitly keeping the mentioned classes
      (using '-keep').
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: com.android.common.SharedPreferencesCompat accesses a method 'apply()' dynamically
      Maybe this is library method 'android.content.SharedPreferences$Editor { void apply(); }'
      Maybe this is library method 'android.media.MediaMetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteControlClient$MetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteController$MetadataEditor { void apply(); }'
Note: the configuration refers to the unknown class 'com.android.launcher2.AllApps3D$Defines'
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/LatinIME_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/LatinIME_intermediates/classes.jar]
Note: the configuration refers to the unknown class 'com.android.launcher2.ClippedImageView'
Note: there were 2 references to unknown classes.
      You should check your configuration for typos.
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
target Package: WallpaperCropper (/home/javierd/android/rom/out/target/product/mako/obj/APPS/WallpaperCropper_intermediates/package.apk)
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/SystemUI_intermediates/classes-full-debug.jar] Error 41
make: *** Se espera a que terminen otras tareas....
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Launcher2_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Launcher2_intermediates/classes.jar]
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: packages/apps/Contacts/../ContactsCommon/src/com/android/contacts/common/extensions/ExtensionsFactory.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
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.
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:445: method does not override or implement a method from a supertype
    @Override
    ^
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates/classes-full-debug.jar] Error 41
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
__________________
Responder Con Cita
  #450  
Viejo 15/12/13, 22:13:28
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, tal cual lo tenía, le quito el @Override, y me dice esto:

Código:
target Package: TeleService (/home/javierd/android/rom/out/target/product/mako/obj/APPS/TeleService_intermediates/package.apk)
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: com.android.common.SharedPreferencesCompat accesses a method 'apply()' dynamically
      Maybe this is library method 'android.content.SharedPreferences$Editor { void apply(); }'
      Maybe this is library method 'android.media.MediaMetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteControlClient$MetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteController$MetadataEditor { void apply(); }'
Note: the configuration refers to the unknown class 'com.android.internal.widget.DialogTitle'
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java:317: mRecreating is already defined in com.android.systemui.statusbar.phone.PhoneStatusBar
    private boolean mRecreating = false;
                    ^
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.makedict.BinaryDictDecoderUtils { com.android.inputmethod.latin.makedict.FusionDictionary readDictionaryBinary(com.android.inputmethod.latin.makedict.DictDecoder,com.android.inputmethod.latin.makedict.FusionDictionary); }', but not the descriptor class 'com.android.inputmethod.latin.makedict.DictDecoder'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.DictionaryFactory { com.android.inputmethod.latin.Dictionary createDictionaryForTest(com.android.inputmethod.latin.AssetFileAddress[],boolean,java.util.Locale); }', but not the descriptor class 'com.android.inputmethod.latin.AssetFileAddress'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.Suggest { Suggest(com.android.inputmethod.latin.AssetFileAddress[],java.util.Locale); }', but not the descriptor class 'com.android.inputmethod.latin.AssetFileAddress'
Note: the configuration keeps the entry point 'com.android.inputmethod.latin.makedict.BinaryDictIOUtils { int getTerminalPosition(com.android.inputmethod.latin.makedict.DictDecoder,java.lang.String); }', but not the descriptor class 'com.android.inputmethod.latin.makedict.DictDecoder'
Note: there were 1 references to unknown classes.
      You should check your configuration for typos.
Note: there were 4 unkept descriptor classes in kept class members.
      You should consider explicitly keeping the mentioned classes
      (using '-keep').
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: com.android.common.SharedPreferencesCompat accesses a method 'apply()' dynamically
      Maybe this is library method 'android.content.SharedPreferences$Editor { void apply(); }'
      Maybe this is library method 'android.media.MediaMetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteControlClient$MetadataEditor { void apply(); }'
      Maybe this is library method 'android.media.RemoteController$MetadataEditor { void apply(); }'
Note: the configuration refers to the unknown class 'com.android.launcher2.AllApps3D$Defines'
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/LatinIME_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/LatinIME_intermediates/classes.jar]
Note: the configuration refers to the unknown class 'com.android.launcher2.ClippedImageView'
Note: there were 2 references to unknown classes.
      You should check your configuration for typos.
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
target Package: WallpaperCropper (/home/javierd/android/rom/out/target/product/mako/obj/APPS/WallpaperCropper_intermediates/package.apk)
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/SystemUI_intermediates/classes-full-debug.jar] Error 41
make: *** Se espera a que terminen otras tareas....
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Launcher2_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Launcher2_intermediates/classes.jar]
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: packages/apps/Contacts/../ContactsCommon/src/com/android/contacts/common/extensions/ExtensionsFactory.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
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.
packages/apps/Settings/src/com/android/settings/slim/LockscreenTargets.java:445: method does not override or implement a method from a supertype
    @Override
    ^
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates/classes-full-debug.jar] Error 41
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
Ahora te dice que te sobra una variable llamada mRecreating en el archivo:
Código:
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
Y el mismo error que antes. Te marca el @Override. ¿Lo has quitado?
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #451  
Viejo 15/12/13, 22:15:08
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Ahora te dice que te sobra una variable llamada mRecreating en el archivo:
Código:
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
Y el mismo error que antes. Te marca el @Override. ¿Lo has quitado?
Si, el @Override ese lo He quitado, lo de la variable no se porque puede ser, porque lo único que He hecho ha sido añadir el commit ese, no He quitado nada...
__________________
Responder Con Cita
  #452  
Viejo 15/12/13, 22:21:26
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Si, el @Override ese lo He quitado, lo de la variable no se porque puede ser, porque lo único que He hecho ha sido añadir el commit ese, no He quitado nada...
Ese commit añade un: private boolean mRecreating = false, el cual ya existe en ese archivo, borra una de ellas.

En cuanto al @Override, seguro que lo has quitado?? Pq te lo esta diciendo claro.

De todas formas haz un: rm -r /home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates

Y vuelve a poner a compilar.
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #453  
Viejo 15/12/13, 22:34:11
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Ese commit añade un: private boolean mRecreating = false, el cual ya existe en ese archivo, borra una de ellas.

En cuanto al @Override, seguro que lo has quitado?? Pq te lo esta diciendo claro.

De todas formas haz un: rm -r /home/javierd/android/rom/out/target/common/obj/APPS/Settings_intermediates

Y vuelve a poner a compilar.
Vale, si, lo he quitado. De las variables, he borrado la segunda, la que dice false, y me dice esto:
Código:
target Package: DeskClock (/home/javierd/android/rom/out/target/product/mako/obj/APPS/DeskClock_intermediates/package.apk)
warning: no entries written for dimen/search_view_text_min_width
warning: no entries written for dimen/dialog_min_width_major
warning: no entries written for dimen/dialog_min_width_minor
warning: no entries written for dimen/preference_widget_width
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/SystemUI_intermediates/classes-full-debug.jar] Error 41
make: *** Se espera a que terminen otras tareas....
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Note: android.support.v8.renderscript.RenderScript: can't find dynamically referenced class dalvik.system.VMRuntime
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: android.support.v8.renderscript.RenderScript accesses a declared method 'getRuntime()' dynamically
      Maybe this is library method 'java.lang.Runtime { java.lang.Runtime getRuntime(); }'
Note: the configuration refers to the unknown class 'com.android.camera.MediaSaveService'
Note: the configuration refers to the unknown class 'com.android.camera.ShutterButton'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraControls'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraRootView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraSwitcher'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CheckedLinearLayout'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CountDownView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CountdownTimerPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.EffectSettingPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.ExpandedGridView'
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: the configuration refers to the unknown class 'com.android.camera.ui.FaceView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.FilmStripView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.InLineSettingCheckBox'
Note: the configuration refers to the unknown class 'com.android.camera.ui.InLineSettingMenu'
Note: the configuration refers to the unknown class 'com.android.camera.ui.ListPrefSettingPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.MoreSettingPopup'Note: com.google.common.base.FinalizableReferenceQueue accesses a method 'startFinalizer(java.lang.Class,java.lang.Object)' dynamically

Note: the configuration refers to the unknown class 'com.android.camera.ui.PieMenuButton'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RenderOverlay'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RotatableLayout'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RotateLayout'
Note: com.google.common.base.internal.Finalizer accesses a method 'finalizeReferent()' dynamically
Note: the configuration refers to the unknown class 'com.android.camera.ui.TimeIntervalPopup'
Note: the configuration refers to the unknown class 'com.android.camera.CameraPreference'      Maybe this is program method 'com.google.common.base.FinalizableReference { void finalizeReferent(); }'

Note: the configuration refers to the unknown class 'com.android.camera.VideoModule'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: the configuration refers to the unknown class 'com.android.camera.CameraHolder'
Note: the configuration refers to the unknown class 'com.android.gallery3d.exif.Util'
Note: the configuration refers to the unknown class 'com.android.gallery3d.ui.GLPaint'
      Maybe you meant the fully qualified name 'com.android.gallery3d.glrenderer.GLPaint'?
Note: the configuration refers to the unknown class 'com.android.gallery3d.ui.GLCanvas'
      Maybe you meant the fully qualified name 'com.android.gallery3d.glrenderer.GLCanvas'?
Note: the configuration refers to the unknown class 'com.android.mail.ui.ConversationViewFragment$MessageJsBridge'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManagerImpl$LoaderInfo { void onLoadComplete(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManagerImpl$LoaderInfo { void callOnLoadFinished(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: the configuration keeps the entry point 'com.android.gallery3d.exif.ExifTag { com.android.gallery3d.exif.Rational getValueAsRational(com.android.gallery3d.exif.Rational); }', but not the descriptor class 'com.android.gallery3d.exif.Rational'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void drawTexture(com.android.gallery3d.glrenderer.BasicTexture,android.graphics.RectF,android.graphics.RectF); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void drawMixed(com.android.gallery3d.glrenderer.BasicTexture,int,float,android.graphics.RectF,android.graphics.RectF); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void initializeTexture(com.android.gallery3d.glrenderer.BasicTexture,android.graphics.Bitmap); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void texSubImage2D(com.android.gallery3d.glrenderer.BasicTexture,int,int,android.graphics.Bitmap,int,int); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.exif.ExifInterface { double convertLatOrLongToDouble(com.android.gallery3d.exif.Rational[],java.lang.String); }', but not the descriptor class 'com.android.gallery3d.exif.Rational'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManager$LoaderCallbacks { void onLoadFinished(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: there were 27 references to unknown classes.
      You should check your configuration for typos.
Note: there were 9 unkept descriptor classes in kept class members.
      You should consider explicitly keeping the mentioned classes
      (using '-keep').
Note: there were 2 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
aapt: warning: string 'auto_brightness_brightness_format' in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res marked untranslatable but exists in locale 'es'
Note: there were 1 references to unknown classes.
      You should check your configuration for typos.
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 4 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Gallery2_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Gallery2_intermediates/classes.jar]
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
warning: no entries written for bool/only_use_portrait
warning: no entries written for bool/picker_is_dialog
warning: no entries written for dimen/category_panel_height
warning: no entries written for dimen/category_panel_icon_size
warning: no entries written for dimen/category_panel_text_size
warning: no entries written for dimen/category_panel_margin
warning: no entries written for style/DialogPickerTheme
Warning: AndroidManifest.xml already defines versionCode (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines versionName (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
warning: no entries written for drawable/background_protector
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Email_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Email_intermediates/classes.jar]
aapt: warning: string 'auto_brightness_help_dialog_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'privacy_guard_help_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'privacy_guard_reset_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'quiet_hours_note_summary' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'quiet_hours_note_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'shortcut_action_help' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
__________________
Responder Con Cita
  #454  
Viejo 15/12/13, 22:47:56
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, si, lo he quitado. De las variables, he borrado la segunda, la que dice false, y me dice esto:
Código:
target Package: DeskClock (/home/javierd/android/rom/out/target/product/mako/obj/APPS/DeskClock_intermediates/package.apk)
warning: no entries written for dimen/search_view_text_min_width
warning: no entries written for dimen/dialog_min_width_major
warning: no entries written for dimen/dialog_min_width_minor
warning: no entries written for dimen/preference_widget_width
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.
1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS/SystemUI_intermediates/classes-full-debug.jar] Error 41
make: *** Se espera a que terminen otras tareas....
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Note: android.support.v8.renderscript.RenderScript: can't find dynamically referenced class dalvik.system.VMRuntime
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: android.support.v8.renderscript.RenderScript accesses a declared method 'getRuntime()' dynamically
      Maybe this is library method 'java.lang.Runtime { java.lang.Runtime getRuntime(); }'
Note: the configuration refers to the unknown class 'com.android.camera.MediaSaveService'
Note: the configuration refers to the unknown class 'com.android.camera.ShutterButton'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraControls'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraRootView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CameraSwitcher'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CheckedLinearLayout'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CountDownView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.CountdownTimerPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.EffectSettingPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.ExpandedGridView'
Note: android.support.v4.text.ICUCompatIcs: can't find dynamically referenced class libcore.icu.ICU
Note: the configuration refers to the unknown class 'com.android.camera.ui.FaceView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.FilmStripView'
Note: the configuration refers to the unknown class 'com.android.camera.ui.InLineSettingCheckBox'
Note: the configuration refers to the unknown class 'com.android.camera.ui.InLineSettingMenu'
Note: the configuration refers to the unknown class 'com.android.camera.ui.ListPrefSettingPopup'
Note: the configuration refers to the unknown class 'com.android.camera.ui.MoreSettingPopup'Note: com.google.common.base.FinalizableReferenceQueue accesses a method 'startFinalizer(java.lang.Class,java.lang.Object)' dynamically

Note: the configuration refers to the unknown class 'com.android.camera.ui.PieMenuButton'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RenderOverlay'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RotatableLayout'
Note: the configuration refers to the unknown class 'com.android.camera.ui.RotateLayout'
Note: com.google.common.base.internal.Finalizer accesses a method 'finalizeReferent()' dynamically
Note: the configuration refers to the unknown class 'com.android.camera.ui.TimeIntervalPopup'
Note: the configuration refers to the unknown class 'com.android.camera.CameraPreference'      Maybe this is program method 'com.google.common.base.FinalizableReference { void finalizeReferent(); }'

Note: the configuration refers to the unknown class 'com.android.camera.VideoModule'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'getScript(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String getScript(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String getScript(java.lang.String); }'
Note: android.support.v4.text.ICUCompatIcs accesses a method 'addLikelySubtags(java.lang.String)' dynamically
      Maybe this is program method 'android.support.v4.text.ICUCompat { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImpl { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplBase { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompat$ICUCompatImplIcs { java.lang.String addLikelySubtags(java.lang.String); }'
      Maybe this is program method 'android.support.v4.text.ICUCompatIcs { java.lang.String addLikelySubtags(java.lang.String); }'
Note: the configuration refers to the unknown class 'com.android.camera.CameraHolder'
Note: the configuration refers to the unknown class 'com.android.gallery3d.exif.Util'
Note: the configuration refers to the unknown class 'com.android.gallery3d.ui.GLPaint'
      Maybe you meant the fully qualified name 'com.android.gallery3d.glrenderer.GLPaint'?
Note: the configuration refers to the unknown class 'com.android.gallery3d.ui.GLCanvas'
      Maybe you meant the fully qualified name 'com.android.gallery3d.glrenderer.GLCanvas'?
Note: the configuration refers to the unknown class 'com.android.mail.ui.ConversationViewFragment$MessageJsBridge'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManagerImpl$LoaderInfo { void onLoadComplete(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManagerImpl$LoaderInfo { void callOnLoadFinished(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: the configuration keeps the entry point 'com.android.gallery3d.exif.ExifTag { com.android.gallery3d.exif.Rational getValueAsRational(com.android.gallery3d.exif.Rational); }', but not the descriptor class 'com.android.gallery3d.exif.Rational'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void drawTexture(com.android.gallery3d.glrenderer.BasicTexture,android.graphics.RectF,android.graphics.RectF); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void drawMixed(com.android.gallery3d.glrenderer.BasicTexture,int,float,android.graphics.RectF,android.graphics.RectF); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void initializeTexture(com.android.gallery3d.glrenderer.BasicTexture,android.graphics.Bitmap); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.glrenderer.GLCanvas { void texSubImage2D(com.android.gallery3d.glrenderer.BasicTexture,int,int,android.graphics.Bitmap,int,int); }', but not the descriptor class 'com.android.gallery3d.glrenderer.BasicTexture'
Note: the configuration keeps the entry point 'com.android.gallery3d.exif.ExifInterface { double convertLatOrLongToDouble(com.android.gallery3d.exif.Rational[],java.lang.String); }', but not the descriptor class 'com.android.gallery3d.exif.Rational'
Note: the configuration keeps the entry point 'android.support.v4.app.LoaderManager$LoaderCallbacks { void onLoadFinished(android.support.v4.content.Loader,java.lang.Object); }', but not the descriptor class 'android.support.v4.content.Loader'
Note: there were 27 references to unknown classes.
      You should check your configuration for typos.
Note: there were 9 unkept descriptor classes in kept class members.
      You should consider explicitly keeping the mentioned classes
      (using '-keep').
Note: there were 2 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 3 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
aapt: warning: string 'auto_brightness_brightness_format' in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res marked untranslatable but exists in locale 'es'
Note: there were 1 references to unknown classes.
      You should check your configuration for typos.
Note: there were 1 unresolved dynamic references to classes or interfaces.
      You should check if you need to specify additional program jars.
Note: there were 4 accesses to class members by means of introspection.
      You should consider explicitly keeping the mentioned class members
      (using '-keep' or '-keepclassmembers').
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Gallery2_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Gallery2_intermediates/classes.jar]
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
warning: no entries written for bool/only_use_portrait
warning: no entries written for bool/picker_is_dialog
warning: no entries written for dimen/category_panel_height
warning: no entries written for dimen/category_panel_icon_size
warning: no entries written for dimen/category_panel_text_size
warning: no entries written for dimen/category_panel_margin
warning: no entries written for style/DialogPickerTheme
Warning: AndroidManifest.xml already defines versionCode (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines versionName (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines minSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
Warning: AndroidManifest.xml already defines targetSdkVersion (in http://schemas.android.com/apk/res/android); using existing value in manifest.
warning: no entries written for drawable/background_protector
Preparing output jar [/home/javierd/android/rom/out/target/common/obj/APPS/Email_intermediates/proguard.classes.jar]
  Copying resources from program jar [/home/javierd/android/rom/out/target/common/obj/APPS/Email_intermediates/classes.jar]
aapt: warning: string 'auto_brightness_help_dialog_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'privacy_guard_help_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'privacy_guard_reset_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'quiet_hours_note_summary' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'quiet_hours_note_title' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
aapt: warning: string 'shortcut_action_help' has no default translation in packages/apps/Settings/../../../external/koush/Superuser/Superuser/res; found: es
javierd@javierd-GE70-2OC-2OD-2OE ~/android/rom $
El error te lo has dejado atrás y no se ve . Pega antes y hasta:

1 error
make: *** [/home/javierd/android/rom/out/target/common/obj/APPS
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #455  
Viejo 15/12/13, 23:00:39
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
Vale, no me lo creo ni yo, pero he encontrado dos fallos mas que había, los he solucionado, y ha compilado!!! DD

Edit: vale, no aparece en los ajustes alguna ayuda???
__________________

Última edición por Javier.d Día 15/12/13 a las 23:20:39.
Responder Con Cita
  #456  
Viejo 15/12/13, 23:37:25
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, no me lo creo ni yo, pero he encontrado dos fallos mas que había, los he solucionado, y ha compilado!!! DD

Edit: vale, no aparece en los ajustes alguna ayuda???
Si no lo has cambiado desde el commit, lo añade en settings -> seguridad.
__________________
El conocimiento humano pertenece al mundo.
Responder Con Cita
  #457  
Viejo 16/12/13, 00:12:39
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Si no lo has cambiado desde el commit, lo añade en settings -> seguridad.
Vale, tiene que haber algo mal, porque nada mas activarlo se me hacia quedado en un FC continuo el SystemUI, y no podía hacer nada..
__________________
Responder Con Cita
  #458  
Viejo 16/12/13, 16:38:41
Array

[xs_avatar]
equlog equlog no está en línea
Usuario muy activo
 
Fecha de registro: may 2011
Localización: Málaga
Mensajes: 683
Modelo de smartphone: Nexus 4/7FHD/6/5X/Pixel 2
Tu operador: Lowi
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, tiene que haber algo mal, porque nada mas activarlo se me hacia quedado en un FC continuo el SystemUI, y no podía hacer nada..
Haz un logcat y después activa el Active Display, mira que error te tira, si no en poco se puede ayudar.
__________________
El conocimiento humano pertenece al mundo.

Última edición por equlog Día 16/12/13 a las 16:58:40.
Responder Con Cita
Gracias de parte de:
  #459  
Viejo 16/12/13, 17:47:30
Array

[xs_avatar]
Javier.d Javier.d no está en línea
Nuevo cocinero
 
Fecha de registro: may 2012
Localización: Madrid
Mensajes: 722
Modelo de smartphone: OnePlus One/ Nexus 4
Tu operador: Tuenti Movil
 Cita: Originalmente Escrito por equlog Ver Mensaje
Haz un logcat y después activa el Active Display, mira que error te tira, si no en poco se puede ayudar.
Vale, ¿¿como hago un logcat?? , el problema es que después de activar eso, hasta que no reinstalo la versión anterior de la rom no me funciona...
__________________

Última edición por Javier.d Día 16/12/13 a las 17:57:09.
Responder Con Cita


  #460  
Viejo 16/12/13, 21:31:57
Array

[xs_avatar]
David_Vaz David_Vaz no está en línea
Cocinero veterano
· Votos compra/venta: (4)
 
Fecha de registro: jul 2013
Localización: Badalona, Barcelona, España
Mensajes: 13,798
Modelo de smartphone: iPhone 14 Pro Max 512GB
Tu operador: Orange
 Cita: Originalmente Escrito por Javier.d Ver Mensaje
Vale, ¿¿como hago un logcat?? , el problema es que después de activar eso, hasta que no reinstalo la versión anterior de la rom no me funciona...
Desde el PC: adb logcat
Responder Con Cita
Respuesta

Estás aquí
Regresar   Portal | Indice > Otras marcas y modelos de smartphones de venta en España > LG > Otros smartphones antiguos de LG > Nexus 4 > ROMs y desarrollo Nexus 4



Hora actual: 21:45:31 (GMT +1)



User Alert System provided by Advanced User Tagging (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.

Contactar por correo / Contact by mail / 邮件联系 /