Android Error

Android Studio Rebuild DexArchiveMergerException Unable To Merge Dex

When you build an android project in android studio, you may encounter DexArchiveMergerException unable to merge dex exception. The detailed error message is as below. Error:Execution failed for task ‘:app:transformDexArchiveWithExternalLibsDexMergerForDebug’. > java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex If you still can not fix this error after struggle for taking some actions such as clean the […]

Android Studio Rebuild DexArchiveMergerException Unable To Merge Dex Read More »

Fix Conflict With Dependency Error When Creating Android Project

When you create a new android project in android studio, you may encounter an error message like below. Error:Execution failed for task ‘:app:preDebugAndroidTestBuild’. > Conflict with dependency ‘com.android.support:support-annotations’ in project ‘:app’. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.

Fix Conflict With Dependency Error When Creating Android Project Read More »

How To Fix Qemu-System-X86_64.Exe Has Stopped Working Error When Starting AVD

When I start an android virtual device ( AVD ) in my new machine ( which I just bought these days.), I meet an error message like this Qemu-System-X86_64.Exe Has Stopped Working. This error stopped my android virtual machine to start. After investigate for almost half a day, I finally find the reason why this

How To Fix Qemu-System-X86_64.Exe Has Stopped Working Error When Starting AVD Read More »

How To Resolve Android Studio SDK Platform-Tools Version Is Too Old Error

When you update your android SDK version to a higher version, you may encounter the below errors when you edit exist java files in android studio. The SDK platform-tools version (26.0.1) is too old to check APIs compiled with API 27; please update To resolve this error, you just need to follow the below steps.

How To Resolve Android Studio SDK Platform-Tools Version Is Too Old Error Read More »

How To Resolve Package R Dose Not Exist Error In Android Studio

R.java is very important in android application development. It is used to identify all resource data such as id, layout, image, drawable resource, etc. R.java is generated by android studio automatically. But it is sometimes confused for developers to use it. This article will help you to resolve these problems about R.java you may encounter.

How To Resolve Package R Dose Not Exist Error In Android Studio Read More »