summaryrefslogtreecommitdiff
path: root/build-app.gradle
diff options
context:
space:
mode:
authorTa-wei Yen <twyen@google.com>2016-03-07 15:29:13 -0800
committerTa-wei Yen <twyen@google.com>2016-03-07 15:29:13 -0800
commitbcb15f99dff4e01343bb7470135f5392a65a01f4 (patch)
tree9b082d6cc0cd3e6f60e1270331d5a65fc4f03982 /build-app.gradle
parent40026e882fa3e5bdc897606e4cb96ed6ac1bfbb9 (diff)
Add contact photo for missed call notifications
+ ContactPhotoLoader to create the appropriate icon from a ContactInfo - NameLookupQuery in CallLogNotificationsHelper#getContactInfo To show a photo the name is not enough. Full query need to be made to retrieve the photoUri. + class Assert in util + Gradle directory setup for dialer tests (Note: this is just for project setup in Android Studio, tests are still not runnable in gradle) Bug:27276108 Change-Id: I0ed2147f2bb60454fe5a5ad6c25fe99727441880
Diffstat (limited to 'build-app.gradle')
-rw-r--r--build-app.gradle5
1 files changed, 5 insertions, 0 deletions
diff --git a/build-app.gradle b/build-app.gradle
index 9e24136ae..2ea437619 100644
--- a/build-app.gradle
+++ b/build-app.gradle
@@ -12,6 +12,11 @@ android {
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res']
}
+
+ sourceSets.androidTest {
+ java.srcDirs = ['tests/src']
+ res.srcDirs = ['test/res']
+ }
}
dependencies {