Android Studio does not reflect changes

I am developing an Android application using Android Studio. The problem is that after I changed my code and started the studio, for some time the changed version does not affect my device.

Here is what I tried and solved my problem ...

1. Build > Clean Project > Run 2. Build > Rebuild Project > Run 3. Restart device 

Did I try this procedure all the time to reflect the last code change? This is very boring ... I read the following:

Android Studio installs old apk on device

+7
android android-studio
source share
1 answer

Android studio has the option "Instant Run", which reduces the time of the build process. If you use it, it can cause a problem. Try disabling it.

I am using Android Studio 2.0 Beta 5 and gradle 2.10, and I recommend using this version or higher.

+2
source share

All Articles