Fixed
Status Update
Comments
an...@gmail.com <an...@gmail.com> #2
Confirm the issue.
OS: Windows 8.1, Ubuntu
OS: Windows 8.1, Ubuntu
an...@gmail.com <an...@gmail.com> #3
Confirmed.
Version of Android Studio (available in the about box): 0.5.0
OS version: OpenSuse 13.1 x64
Java JRE/JDK version: 1.7.0_51
OpenJDK Runtime Environment (IcedTea 2.4.4) (suse-24.13.5-x86_64)
OpenJDK 64-Bit Server VM (build 24.45-b08, mixed mode)
Version of Android Studio (available in the about box): 0.5.0
OS version: OpenSuse 13.1 x64
Java JRE/JDK version: 1.7.0_51
OpenJDK Runtime Environment (IcedTea 2.4.4) (suse-24.13.5-x86_64)
OpenJDK 64-Bit Server VM (build 24.45-b08, mixed mode)
tn...@google.com <tn...@google.com> #4
I'm looking into this issue today.
re...@gmail.com <re...@gmail.com> #5
Just delete line resources.srcDirs = ['src']
It solved the problem for me
It solved the problem for me
Description
PowerManager powerManager =(PowerManager)context.getSystemService(Context.POWER_SERVICE);
WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, getClass().getName());
try
{
wakeLock.acquire();
:
:
}
finally
{
wakeLock.release();
}
I get a diagnostic:
"The release() call is not always reached (via exceptional flow)"
Unless I am missing something, this is not true.