This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.IllegalArgumentException: Optimized data directory /data/data/com.levelup.touiteur/cache is not owned by the current user. Shared storage cannot protect your application from code injection attacks. | |
at dalvik.system.DexFile.(DexFile.java:102) | |
at dalvik.system.DexFile.loadDex(DexFile.java:151) | |
at dalvik.system.DexPathList.loadDexFile(DexPathList.java:266) | |
at dalvik.system.DexPathList.makeDexElements(DexPathList.java:230) | |
at dalvik.system.DexPathList.(DexPathList.java:112) | |
at dalvik.system.BaseDexClassLoader.(BaseDexClassLoader.java:48) | |
at dalvik.system.DexClassLoader.(DexClassLoader.java:57) | |
at vi.a(SourceFile:91) | |
at vk.a(SourceFile:68) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Non-floating windows on high end devices must put up decor beneath the system bars and | |
// therefore must know about visibility changes of those. | |
if (!mIsFloating && ActivityManager.isHighEndGfx()) { | |
if (!targetPreL && a.getBoolean( | |
R.styleable.Window_windowDrawsSystemBarBackgrounds, | |
false)) { | |
setFlags(FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS, | |
FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS & ~getForcedWindowFlags()); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.levelup.touiteur; | |
import android.graphics.Typeface; | |
import android.util.SparseArray; | |
import android.widget.TextView; | |
import com.levelup.touiteur.log.TouiteurLog; | |
public class FontManager { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# try to avoid this issue on Samsung 4.2.2 https://code.google.com/p/android/issues/detail?id=78377 | |
-keep class !android.support.v7.internal.view.menu.MenuBuilder | |
-keep class !android.support.v7.internal.view.menu.SubMenuBuilder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.NullPointerException | |
at com.qihoo.sandbox.monitor.SystemMonitor$SendBroadcastThread.SendRegisterBroadcast(SystemMonitor.java:40) | |
at com.qihoo.sandbox.monitor.SystemMonitor$SendBroadcastThread.run(SystemMonitor.java:77) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// enable proguard on all version of the android gradle plugin | |
release { | |
if (!properties.findAll{it.key == 'runProguard'}.isEmpty()) { | |
runProguard true | |
} else if (!properties.findAll{it.key == 'minifyEnabled'}.isEmpty()) { | |
minifyEnabled true | |
} | |
} | |
// detect proguard in a variant |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.NullPointerException | |
at com.android.internal.policy.impl.PhoneWindow.onKeyUpPanel(PhoneWindow.java:892) | |
at com.android.internal.policy.impl.PhoneWindow.onKeyUp(PhoneWindow.java:1580) | |
at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1960) | |
at android.view.ViewRootImpl.deliverKeyEventPostIme(ViewRootImpl.java:3370) | |
at android.view.ViewRootImpl.handleFinishedEvent(ViewRootImpl.java:3343) | |
at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2503) | |
at android.os.Handler.dispatchMessage(Handler.java:99) | |
at android.os.Looper.loop(Looper.java:137) | |
at android.app.ActivityThread.main(ActivityThread.java:4573) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error:Execution failed for task ':Plume:dexDebug'. | |
> com.android.ide.common.internal.LoggedErrorException: Failed to run command: | |
C:\android-sdk\build-tools\21.1.1\dx.bat --dex --no-optimize --multi-dex --main-dex-list C:\Users\Dell990MT\Documents\Program\LevelUp\Plume\work\Plume\build\intermediates\multi-dex\debug\maindexlist.txt --output C:\Users\Dell990MT\Documents\Program\LevelUp\Plume\work\Plume\build\intermediates\dex\debug --input-list=C:\Users\Dell990MT\Documents\Program\LevelUp\Plume\work\Plume\build\intermediates\tmp\dex\debug\inputList.txt | |
Error Code: | |
3 | |
Output: | |
UNEXPECTED TOP-LEVEL ERROR: | |
java.lang.OutOfMemoryError: GC overhead limit exceeded | |
at com.android.dx.cf.code.Ropper.processBlock(Ropper.java:1048) | |
at com.android.dx.cf.code.Ropper.doit(Ropper.java:742) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error:java.lang.NullPointerException | |
at com.android.dx.cf.code.ConcreteMethod.<init>(ConcreteMethod.java:87) | |
at com.android.dx.cf.code.ConcreteMethod.<init>(ConcreteMethod.java:75) | |
at com.android.dx.dex.cf.CfTranslator.processMethods(CfTranslator.java:271) | |
... 24 more | |
...while processing <init> (Lcom/levelup/touiteur/pictures/AvatarCache;Landroid/content/Context;Ljava/lang/String;D)V | |
...while processing com/levelup/touiteur/pictures/AvatarCache$1.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import android.widget.ImageView; | |
public interface PictureCache<L, R extends RunningLoad, AUTH_COOKIE, AUTH_LOADER, VIEW_TYPE extends ImageView> { | |
R load(VIEW_TYPE view, String imageUrl, PictureLoader loader, SizeConstraint sizeConstraint, AUTH_LOADER networkLoader, AUTH_COOKIE cookie, long freshness); | |
void loadFromAnyThread(String imageUrl, PictureLoader loader, SizeConstraint sizeConstraint, AUTH_LOADER withAuth, AUTH_COOKIE cookie); |