Add debuggable option in build.gradle...

... as recommended at https://developer.android.com/tools/device.html
This commit is contained in:
Luca Favatella 2015-06-20 13:41:28 +01:00
parent 515ca01d38
commit a965ab755a

View File

@ -156,6 +156,11 @@ android {
release {
minifyEnabled false
}
buildTypes {
debug {
debuggable true
}
}
}
compileOptions {