android add image node

This commit is contained in:
pengfei.zhou
2019-08-06 19:37:08 +08:00
parent bb86c3c332
commit 471e87badc
6 changed files with 57 additions and 4 deletions

View File

@@ -29,4 +29,8 @@ dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation project(':doric')
implementation 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'com.github.bumptech.glide:annotations:4.8.0'
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.0.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
}

View File

@@ -0,0 +1,13 @@
package com.github.penfeizhou.doricdemo;
import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.module.AppGlideModule;
/**
* @Description: com.github.penfeizhou.doricdemo
* @Author: pengfei.zhou
* @CreateDate: 2019-08-06
*/
@GlideModule
public class MyGlideModule extends AppGlideModule {
}