Android Studio Update: Some conflicts found in installation area (studio.exe | uninstall.exe)

I know this is an older question but I encountered the same error while updating SDK components in Android Studio 2.3.3. I was able to fix the problem by starting the SDK manager and un-checking the components that showed the error and clicked “Apply”. That un-installed just that component. When it was finished, I re-checked … Read more

How to set gradle home while importing existing project in Android studio

The gradle plugin (which contains a bundled version of gradle) should be already installed in where/you/installed/android-studio/plugins/gradle so you shouldn’t need to manually download it. Depending on the version of Android Studio, that last directory may be where/you/installed/android-studio/gradle/gradle-x.y.z (x.y.z is the version, so check your filesystem for the exact path). If you intend on doing gradle … Read more

embed crosswalk in android studio

Following: https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/ Open AndroidStudio to project view in app folder edit build.gradle: repositories { maven { url ‘https://download.01.org/crosswalk/releases/crosswalk/android/maven2’}} dependencies { compile fileTree(dir: ‘libs’, include: [‘*.jar’]) compile ‘com.android.support:appcompat-v7:21.0.3’ compile ‘org.xwalk:xwalk_core_library:10.39.235.15’} sync project. add this view in layout xml. <org.xwalk.core.XWalkView android:id=”@+id/xwalkWebView” android:orientation=”vertical” android:layout_width=”fill_parent” android:layout_height=”fill_parent” android:background=”#000000″ /> In activity or fragment: import org.xwalk.core.XWalkPreferences; import org.xwalk.core.XWalkView; in onCreate: XWalkView … Read more

How to use Android Emulator on AMD Ryzen (Android Studio)?

For Ryzen on Windows 10, use the latest stable instead of canary. Enable virtualization in BIOS. Remove HAXM. Turn off Hyper-V, Windows Hypervisor platform, Windows Sandbox(depends on your windows version, old versions may not have all). REBOOT Launch SDK Manager via Android Studio and you should see “Android Emulator Hypervisor Driver for AMD Processors”. Check … Read more